diff --git a/The team.png b/The team.png new file mode 100644 index 00000000..849f5c6a Binary files /dev/null and b/The team.png differ diff --git a/Twitter.png b/Twitter.png new file mode 100644 index 00000000..e4ce04b2 Binary files /dev/null and b/Twitter.png differ diff --git a/base_app.py b/base_app.py index ad0f724a..fc0c75a8 100644 --- a/base_app.py +++ b/base_app.py @@ -22,61 +22,152 @@ """ # Streamlit dependencies + import streamlit as st -import joblib,os +import joblib +import os +import pickle as pkl +import numpy as np +from PIL import Image +from sklearn.metrics import mean_absolute_error + # Data dependencies import pandas as pd +# Load your raw data +raw = pd.read_csv("resources/train.csv") + + # Vectorizer -news_vectorizer = open("resources/tfidfvect.pkl","rb") -tweet_cv = joblib.load(news_vectorizer) # loading your vectorizer from the pkl file +news_vectorizer = open("resources/vectorizer.pkl", "rb") +# loading your vectorizer from the pkl file +tweet_cv = joblib.load(news_vectorizer) # Load your raw data raw = pd.read_csv("resources/train.csv") # The main function where we will build the actual app + + def main(): """Tweet Classifier App with Streamlit """ # Creates a main title and subheader on your page - # these are static across all pages - st.title("Tweet Classifer") - st.subheader("Climate change tweet classification") + # get random tweet sample # Creating sidebar with selection box - # you can create multiple pages this way - options = ["Prediction", "Information"] + options = ["Prediction", "Data Insights", + 'About the project', "Information", 'The team'] selection = st.sidebar.selectbox("Choose Option", options) + # Information on the project + if selection == "About the project": + st.title("Climate change tweet classification") + st.write("Climate action, is the goal 13 of the sustainable development goals. It calls for urgent actions to combact climate change and its impact. To address climate change, countries adopt the paris agreement to limit global temperature rise to well below 2 degree celsius. People are experiencing the significant impacts of climate change, which include changing weather patterns, rising sea level, and more extreme weather events. The greenhouse gas emissions from human activities are driving climate change and continue to rise. ") + image = Image.open('climate action.jpeg') + st.image(image, caption='SDG Goal 13: Climate action') + st.write("South Africa’s National Climate Change Response Policy (NCCRP) (DEA 2011) commits the Department of Environmental Affairs (DEA) in Section 12 to publish annual progress reports on monitoring climate change responses.The South African government has also pledged to continue contributing positively to adresssing the climate emergency and is planning on long term efforts to change the attitude of people towards climate change. But in order to do that, there is a need to know what people's opinion are regarding climate change") + st.write("In this project, various machine learning models were utilised to predict people's sentiment regarding climate change. The machines were trained using messages and known sentiments from twitter. Through that, we can predict, what sentiment an individaul has, based on their tweet. This would enable the govermnent ascertain people's current opionion regarding climate change and how much effort is required to positively influence that") + + # Exploratory data analysis + if selection == "Data Insights": + st.title("Exploratory Data Analysis") + st.write('In this section, we will be discussing insights from the Tweet classification dataset') + st.subheader('Tweet distribution') + st.write('From the chart below, It is obvious that pro-climate change tweets, account for more than half of the overall number of tweets. This is more than the combine tweets from news,neutral and anti- climate change.') + image = Image.open('tweet.png') + st.image(image, caption='Tweet distribution') + st.subheader('Climate change buzzwords') + st.write("The word cloud below displays the 25 most popular words found in the tweets for each classes.The top buzzwords accross all classes are climate, change, global and retweet. The frequency of retweet means that many opinions are being shared and viewed by large audiences. This is true for all four classes.'Trump' is a also a frequently occuring word in all four classes. This is unsurprising given his controversial view on the topic. Words like denier, believe, think, fight, etc. occur frequently in pro climate change tweets. In contrast, anti climate change tweets contain words such as 'hoax', 'scam', 'tax' and 'liberal'. There is a stark difference in tone and use of emotive language in these two classes of tweets. From this data we could deduce that people who are anti climate change believe that global warming is a 'hoax' and feel negatively towards a tax–based approach to slowing global climate change. Words like 'science' and 'scientist' occur frequently as well which could imply that people are tweeting about scientific studies that support their views on climate change.") + image = Image.open('word_cloud.png') + st.image(image, caption='Word cloud showing most popular buzz words') + + st.subheader('Hashtag analysis') + st.write('People use the hashtag symbol (#) before a relevant keyword or phrase in their Tweet to categorize those Tweets and help them show more easily in Twitter search. Clicking or tapping on a hashtagged word in any message shows you other Tweets that include that hashtag. Hashtags can be included anywhere in a Tweet. Hashtagged words that become very popular are often trending topics.') + image = Image.open('hashtag analysis.png') + st.image(image, caption='Hashtag analysis of Tweets') + + + if selection == "The team": + st.title("About Dynamic Data Developers ") + + st.write("* Data Dynamic Developers is a company founded in 2020.") + st.write("* Our team is made up of highly qualified and reputable individuals in the field of data science. ") + + + st.subheader("Meet the team") + image = Image.open('The team.png') + st.image(image, caption='Data Dynamic Developers') + # Building out the "Information" page if selection == "Information": st.info("General Information") # You can read a markdown file from supporting resources folder - st.markdown("Some information here") - + st.markdown("") + + st.subheader("Raw Twitter data and label") - if st.checkbox('Show raw data'): # data is hidden if box is unchecked - st.write(raw[['sentiment', 'message']]) # will write the df to the page + if st.checkbox('Show raw data'): # data is hidden if box is unchecked + st.write(raw[['sentiment', 'message']]) # will write the df to the page # Building out the predication page if selection == "Prediction": + st.title("Dynamic Data Developers Inc") + st.subheader("Climate change tweet classification") + image = Image.open('Twitter.png') + st.image(image) st.info("Prediction with ML Models") + + + # Creating a text box for user input tweet_text = st.text_area("Enter Text","Type Here") + option = st.selectbox( + 'Select a model to use', + #['Logistic Regression']) + ['Linear SVC','Naive Bayes', 'Decision Tree', 'Logistic Regression', 'Random Forest']) if st.button("Classify"): - # Transforming user input with vectorizer + + vect_text = tweet_cv.transform([tweet_text]).toarray() # Load your .pkl file with the model of your choice + make predictions + # # Try loading in multiple models to give the user a choice - predictor = joblib.load(open(os.path.join("resources/Logistic_regression.pkl"),"rb")) + + predictor = joblib.load(open(os.path.join("resources/model.pkl"),"rb")) prediction = predictor.predict(vect_text) + + #elif(option == "Naive Bayes"): + #predictor = joblib.load(open(os.path.join("resources/NaiveB.pkl"),"rb")) + #prediction = predictor.predict(vect_text) + + #elif(option == "Decision Tree"): + #predictor = joblib.load(open(os.path.join("resources/dt.pkl"),"rb")) + #prediction = predictor.predict(vect_text) + + #elif(option == "Linear SVC"): + #predictor = joblib.load(open(os.path.join("resources/lsvc.pkl"),"rb")) + #prediction = predictor.predict(vect_text) + + #elif(option == "Random Forest"): + #predictor = joblib.load(open(os.path.join("resources/rf.pkl"),"rb")) + #prediction = predictor.predict(vect_text) # When model has successfully run, will print prediction # You can use a dictionary or similar structure to make this output + # select option to choose + output_text = { + '0': 'Neutral', + '-1': 'Anti climate change', + '1': 'Pro Climate change', + '2': 'News' + } # more human interpretable. - st.success("Text Categorized as: {}".format(prediction)) + st.success("Tweet categorised by {} model as : {}".format(option, output_text[str(prediction[0])])) # Required to let Streamlit instantiate our web app. if __name__ == '__main__': diff --git a/climate action.jpeg b/climate action.jpeg new file mode 100644 index 00000000..5211c38c Binary files /dev/null and b/climate action.jpeg differ diff --git a/hashtag analysis.png b/hashtag analysis.png new file mode 100644 index 00000000..324a0d2c Binary files /dev/null and b/hashtag analysis.png differ diff --git a/resources/NaiveB.pkl b/resources/NaiveB.pkl new file mode 100644 index 00000000..cf41781e Binary files /dev/null and b/resources/NaiveB.pkl differ diff --git a/resources/tfidfvect.pkl b/resources/Vectorizer.pkl similarity index 100% rename from resources/tfidfvect.pkl rename to resources/Vectorizer.pkl diff --git a/resources/dt.pkl b/resources/dt.pkl new file mode 100644 index 00000000..95e258a6 Binary files /dev/null and b/resources/dt.pkl differ diff --git a/resources/lsvc.pkl b/resources/lsvc.pkl new file mode 100644 index 00000000..67a93ec8 Binary files /dev/null and b/resources/lsvc.pkl differ diff --git a/resources/Logistic_regression.pkl b/resources/model.pkl similarity index 100% rename from resources/Logistic_regression.pkl rename to resources/model.pkl diff --git a/resources/submission.csv b/resources/submission.csv new file mode 100644 index 00000000..a3ceadaa --- /dev/null +++ b/resources/submission.csv @@ -0,0 +1,10547 @@ +tweetid,sentiment +169760,1 +35326,1 +224985,1 +476263,1 +872928,0 +75639,1 +211536,0 +569434,2 +315368,2 +591733,1 +91983,-1 +67249,1 +143459,2 +663535,2 +20476,0 +815297,0 +274098,1 +30045,1 +681487,1 +708966,2 +393689,2 +186705,2 +233977,2 +525794,1 +863649,1 +315964,0 +588985,1 +669979,0 +137059,2 +556915,0 +951973,1 +72939,0 +205796,1 +478581,-1 +453375,2 +555551,1 +219030,0 +546209,2 +416919,1 +433824,2 +621526,2 +616108,1 +70943,2 +153248,1 +854719,1 +616444,1 +118418,2 +846132,-1 +443106,-1 +758958,1 +376412,2 +667731,1 +222107,1 +349545,2 +284026,2 +564727,1 +522979,2 +460970,1 +371750,1 +251299,2 +485211,1 +502976,1 +623282,0 +217605,1 +225330,2 +58854,-1 +723671,2 +366409,1 +704565,1 +655925,1 +717618,1 +922449,2 +729885,2 +599133,2 +89885,1 +249039,1 +440750,1 +18663,1 +314549,2 +643414,1 +61835,2 +659073,1 +178597,1 +152298,0 +581943,-1 +781913,1 +336886,1 +624852,1 +655116,1 +5591,1 +731620,0 +872882,2 +320393,0 +353463,1 +816508,2 +636325,-1 +53058,2 +725589,1 +693559,1 +66255,2 +218797,0 +307092,-1 +188557,0 +137392,-1 +597086,1 +96006,1 +330509,1 +78639,2 +536231,1 +304814,1 +553696,1 +455898,-1 +745466,2 +846719,2 +722710,0 +989172,2 +492079,1 +315869,1 +32675,1 +959684,-1 +641938,2 +933443,1 +458401,-1 +554994,0 +461467,1 +902353,2 +178794,1 +387356,-1 +380276,1 +824355,1 +685606,1 +85488,0 +50608,1 +447977,1 +943930,2 +183083,1 +359626,2 +810128,1 +380913,0 +516209,1 +993538,0 +594772,2 +22428,2 +991876,0 +504172,2 +283272,1 +914599,0 +752129,1 +701957,0 +858489,0 +221704,1 +409406,1 +468372,1 +818509,1 +204729,1 +394896,1 +397593,1 +465474,2 +450344,2 +502719,0 +816499,1 +291002,1 +301225,2 +402773,1 +81233,1 +642569,1 +900041,1 +67900,-1 +237131,1 +311030,0 +975455,1 +69232,1 +156024,0 +268543,2 +586693,1 +709157,1 +582003,2 +689136,1 +953619,1 +971710,1 +809619,1 +595597,1 +274499,2 +771063,2 +597739,2 +110053,0 +723442,1 +881554,0 +704923,2 +822018,1 +505322,2 +120776,1 +404757,1 +811053,2 +317696,-1 +734766,1 +841196,1 +400682,0 +649511,2 +740566,1 +798359,1 +861578,1 +5417,2 +609894,0 +174874,2 +227482,2 +316886,2 +112798,2 +44507,1 +444423,1 +878768,1 +951095,1 +970445,1 +208227,1 +545402,1 +498559,1 +454769,1 +490905,1 +343981,1 +891649,1 +794296,2 +669149,2 +104997,1 +54711,1 +756770,1 +632633,2 +882503,1 +604089,2 +37591,-1 +304290,-1 +167356,0 +398680,1 +268980,2 +485450,0 +246743,1 +83632,1 +804653,1 +614272,1 +699619,1 +128361,2 +617614,1 +756863,2 +550624,2 +971913,1 +597102,2 +468901,1 +512603,2 +869,1 +135515,0 +471002,1 +76054,1 +835455,0 +593722,1 +209903,2 +311687,2 +38624,1 +140169,2 +50739,1 +134179,0 +368885,1 +955073,1 +642519,0 +849811,1 +377434,0 +61946,0 +128149,1 +545779,2 +145812,1 +839220,1 +23630,2 +631635,2 +659284,0 +636800,-1 +246233,1 +224961,2 +227170,1 +24500,1 +444613,1 +173797,1 +183700,1 +305251,2 +487336,1 +521403,2 +741971,1 +171732,1 +354162,2 +572875,1 +337961,1 +39327,1 +666488,1 +686787,1 +248289,1 +644357,2 +106812,1 +492300,1 +929522,2 +827492,0 +92888,0 +748860,1 +544547,1 +970736,1 +805808,1 +320551,1 +210944,1 +109631,2 +251292,1 +170364,0 +948426,0 +780776,1 +693604,1 +799998,2 +373943,1 +593149,1 +264289,1 +479344,0 +820909,1 +492817,1 +831733,1 +405413,0 +685176,2 +982870,0 +92655,0 +929710,1 +365298,1 +597644,2 +908494,1 +532450,1 +431470,1 +261786,1 +126953,1 +157454,2 +911863,2 +968491,1 +341684,-1 +868000,1 +937870,2 +196243,1 +749947,1 +10201,1 +861465,2 +418775,1 +561942,1 +61831,2 +224428,2 +470738,1 +694377,0 +557591,0 +504856,1 +988980,2 +811937,2 +78955,1 +166783,1 +2520,1 +268418,1 +911873,1 +380946,0 +841067,-1 +760341,1 +872864,1 +833511,1 +795400,2 +947288,1 +97754,0 +848402,0 +77036,2 +280663,1 +654324,1 +105628,1 +227665,1 +169839,2 +334216,1 +502105,0 +174279,2 +193681,1 +457324,1 +562231,1 +254480,1 +432635,0 +916814,1 +217862,1 +454694,1 +512554,2 +249736,1 +979904,1 +841942,1 +141852,2 +279014,2 +511552,1 +502057,2 +822243,0 +586976,2 +870627,1 +809260,1 +258979,1 +342572,1 +833715,1 +63205,2 +327,1 +286773,2 +831328,2 +265516,1 +988076,1 +92963,1 +813089,1 +372840,2 +460869,2 +700900,2 +54421,-1 +83811,1 +932229,1 +14731,2 +416245,0 +91717,1 +37782,0 +168950,1 +791767,1 +612474,1 +863569,1 +833620,0 +831050,0 +327186,2 +70954,2 +744906,1 +410805,1 +321290,1 +560166,0 +199999,1 +520958,0 +486093,-1 +433768,1 +170942,1 +97769,1 +574580,-1 +427983,0 +536786,2 +64572,1 +932658,1 +875904,1 +388184,1 +448406,0 +280094,1 +196585,1 +297123,2 +583405,1 +749358,2 +8540,1 +92130,1 +682459,0 +493774,1 +81514,2 +937131,2 +683822,2 +181932,1 +185061,1 +718905,0 +467768,1 +50360,1 +37282,-1 +324725,1 +587613,0 +759085,2 +995304,0 +62430,1 +959472,2 +134816,1 +443799,1 +84144,2 +626595,0 +382192,1 +249680,1 +209100,2 +505060,1 +510212,0 +454150,1 +900706,2 +355447,0 +415557,1 +431394,1 +796461,2 +551013,0 +71926,2 +260753,1 +883406,1 +973790,2 +673020,1 +573493,1 +850799,0 +596499,0 +430720,1 +970612,1 +645141,1 +122672,1 +572212,1 +590281,2 +185082,-1 +643999,2 +276142,1 +522428,2 +242869,1 +859835,1 +179238,2 +830861,1 +659715,1 +742214,1 +44768,1 +156753,1 +689726,1 +659825,0 +805236,1 +484743,2 +843791,1 +401342,1 +268165,1 +450971,-1 +969588,2 +493909,1 +775367,1 +102955,2 +356595,0 +860992,1 +478186,2 +235851,1 +859554,1 +383555,0 +568803,0 +522415,1 +493050,1 +568528,1 +371027,2 +554560,1 +969599,1 +70097,1 +898167,1 +483103,1 +773089,1 +436540,2 +214657,1 +824653,2 +132616,1 +962166,2 +357327,1 +183595,1 +338190,0 +821753,1 +782634,2 +355771,2 +102889,-1 +335544,2 +417438,2 +99418,1 +774033,1 +151834,2 +573075,2 +675187,2 +488287,1 +317596,1 +848773,0 +177318,0 +743728,1 +166017,1 +668192,1 +242646,2 +572824,1 +516374,1 +569974,2 +368987,2 +35989,0 +439267,1 +425036,1 +978741,2 +161511,2 +158819,-1 +225262,-1 +398562,0 +940439,-1 +657384,1 +348631,1 +950221,1 +390207,1 +633050,0 +45603,1 +892219,2 +763551,1 +219247,-1 +78219,2 +106376,2 +664990,1 +61204,1 +444521,2 +162744,1 +10394,1 +107336,0 +400960,1 +157258,1 +762553,1 +398197,1 +513701,2 +450710,2 +192494,0 +376697,2 +466375,1 +600809,1 +337306,1 +597597,1 +282282,1 +619747,0 +848426,0 +468720,1 +954154,0 +544640,2 +192358,2 +768797,1 +817583,0 +864589,1 +104220,1 +725297,2 +973859,1 +942269,1 +145192,1 +965827,2 +861437,0 +296887,1 +817495,1 +273994,1 +799474,0 +177872,1 +532392,2 +770417,1 +706812,1 +193396,1 +863034,2 +967152,-1 +948038,1 +608126,2 +412897,2 +970466,0 +604868,2 +94532,1 +820173,-1 +833762,2 +604371,1 +961064,1 +419528,1 +79982,1 +564369,1 +489017,1 +887262,1 +402712,-1 +963864,2 +854765,0 +331759,1 +26332,0 +238943,-1 +431614,2 +329434,1 +680680,1 +39578,1 +670432,2 +371166,1 +686203,2 +118985,1 +263823,1 +275604,2 +390449,0 +553573,2 +159171,2 +172630,2 +867879,2 +555667,1 +107607,2 +671813,1 +29467,2 +424298,2 +247885,1 +66440,0 +794065,1 +383354,1 +73974,-1 +597362,1 +873587,1 +755011,1 +736998,1 +117248,1 +692018,1 +813376,1 +834684,2 +546314,2 +876985,1 +207998,1 +110340,0 +715656,1 +88611,2 +716533,1 +269830,1 +661339,1 +96822,-1 +101833,2 +548873,1 +432375,2 +963943,1 +105738,1 +814952,1 +933283,1 +476266,2 +713154,2 +729178,2 +739461,1 +46459,0 +564711,1 +9295,1 +89381,2 +997108,2 +434160,1 +632113,1 +349480,1 +981685,1 +891296,2 +795819,-1 +22856,2 +176472,1 +760306,1 +364909,2 +593804,1 +307467,-1 +610642,0 +129662,0 +569359,2 +561862,1 +423167,1 +840583,1 +683275,0 +190548,1 +958471,1 +740052,0 +631040,1 +976028,1 +990527,1 +58802,2 +406698,0 +166458,1 +758638,0 +864544,1 +937863,1 +839640,1 +43118,1 +554437,0 +24114,1 +594987,1 +2994,1 +983985,1 +738824,1 +578675,1 +246789,0 +459925,2 +723464,2 +939557,0 +962770,1 +432283,1 +295172,1 +354011,2 +917171,1 +368282,1 +799357,2 +218943,2 +354686,2 +180377,1 +979574,1 +457365,2 +855074,1 +527673,1 +785117,0 +973760,1 +928581,0 +56229,2 +489025,0 +43190,-1 +563462,2 +972585,1 +593576,1 +327139,1 +615819,1 +538945,2 +967095,1 +993681,2 +568295,2 +969003,1 +644408,1 +956047,2 +525657,0 +56665,1 +617655,2 +838447,1 +931195,1 +577981,2 +870874,2 +480174,1 +695290,1 +645362,2 +475332,1 +78586,1 +792010,2 +600177,0 +579760,1 +733217,1 +130633,1 +246139,0 +83570,2 +233932,1 +65704,1 +720328,1 +182815,2 +992508,1 +582996,1 +712952,2 +217793,2 +960416,1 +387077,1 +62147,-1 +158157,-1 +16196,0 +211659,1 +368185,1 +681044,2 +368951,1 +200078,1 +947641,1 +591630,1 +60500,1 +257401,2 +478713,2 +735450,1 +633125,1 +610055,1 +632978,1 +365076,2 +875539,0 +758419,0 +709088,1 +768261,2 +209509,1 +127305,-1 +121053,1 +19558,1 +801712,2 +837454,1 +541857,1 +11629,2 +10359,2 +66175,1 +23284,2 +211731,1 +32828,1 +300306,1 +798465,1 +429350,1 +96211,1 +287991,0 +580986,1 +782530,1 +446353,1 +404665,1 +971456,1 +503290,1 +675704,2 +225076,2 +593471,0 +481167,1 +161297,1 +270003,-1 +411180,2 +271499,1 +672109,1 +602150,1 +575468,0 +181408,2 +161726,1 +977902,1 +788232,0 +725006,1 +722658,2 +600224,1 +793349,-1 +451620,2 +424135,2 +88627,1 +806009,0 +192064,1 +685562,2 +284646,1 +715307,1 +883501,2 +842439,1 +33587,-1 +730304,1 +87268,2 +494947,-1 +557924,1 +351002,1 +361958,1 +624214,-1 +513910,2 +506543,1 +778056,1 +357156,1 +370081,1 +880261,1 +509403,1 +580774,2 +837095,2 +560337,1 +132783,1 +304998,2 +819879,1 +849455,0 +346200,0 +625746,1 +677462,1 +107732,1 +277516,0 +119700,1 +219147,0 +773453,1 +813113,1 +121431,1 +258442,1 +15784,2 +491379,2 +767093,1 +508244,2 +711697,2 +78517,1 +592053,1 +723025,0 +310230,2 +751878,2 +617843,1 +265859,1 +410288,2 +708448,2 +254072,2 +791956,0 +515974,2 +972791,1 +330960,0 +126876,1 +316154,1 +179087,1 +586916,-1 +70846,0 +752225,0 +404604,1 +836527,0 +678059,0 +333311,1 +74980,1 +477908,2 +506657,1 +980875,1 +805679,0 +193548,1 +818493,-1 +625918,1 +215713,1 +126166,1 +709380,1 +570628,1 +898663,1 +103967,2 +934788,2 +327499,1 +953095,1 +592527,2 +488806,0 +531595,1 +899135,2 +661210,2 +311285,-1 +956537,1 +536614,1 +518252,0 +101697,2 +136250,0 +571656,1 +614530,0 +506382,2 +990558,1 +414640,1 +757228,1 +741160,1 +80801,1 +14077,1 +44115,1 +782491,1 +141116,2 +758470,1 +111565,2 +108937,0 +333960,1 +495632,1 +855633,1 +387274,1 +944823,2 +676644,0 +674904,1 +706197,2 +751823,2 +534701,2 +776680,2 +856934,2 +838992,0 +73072,1 +592976,0 +120301,1 +477557,1 +331101,0 +587789,1 +106773,2 +714124,1 +772086,1 +656418,1 +372287,1 +481477,2 +938734,1 +922926,1 +339447,1 +325978,2 +42066,1 +382638,2 +16052,1 +450371,-1 +450653,-1 +299753,1 +643564,1 +975417,1 +890333,2 +759258,1 +82004,2 +187640,0 +790339,1 +760264,1 +34404,1 +387284,2 +111495,-1 +263613,0 +811478,1 +615025,1 +709431,-1 +815398,2 +429819,-1 +55201,1 +918786,2 +505250,1 +811168,1 +616510,1 +810332,1 +778191,0 +644140,1 +614087,0 +350693,1 +224411,1 +187760,1 +673695,1 +624957,2 +682615,1 +674916,1 +404402,1 +53072,2 +48112,1 +785837,0 +184816,0 +230210,1 +915999,0 +376465,2 +194186,2 +106745,1 +992715,0 +274295,-1 +841614,2 +855159,1 +369248,1 +400854,2 +232119,1 +770087,2 +61801,1 +582837,2 +696188,1 +710747,1 +943396,0 +943553,1 +957958,1 +170910,2 +680524,1 +565587,1 +749902,2 +748072,0 +937512,1 +130999,0 +342929,1 +406526,1 +281624,0 +111021,1 +898463,1 +920547,1 +300268,2 +6377,1 +150851,2 +836682,1 +975094,0 +303263,0 +469044,2 +826563,0 +879918,1 +803773,2 +535044,1 +129239,-1 +123544,2 +955118,1 +763466,2 +302824,1 +970253,1 +536636,1 +225644,1 +901410,2 +976357,2 +276425,2 +698782,1 +476182,1 +560795,1 +734099,0 +874279,1 +528799,1 +844516,0 +42001,1 +729333,1 +910929,2 +436637,0 +539943,1 +158515,2 +913083,1 +196246,2 +312900,2 +247152,1 +621919,1 +72893,1 +989727,1 +828411,1 +231642,0 +294532,1 +322655,2 +238643,1 +226893,1 +22945,-1 +667052,0 +330901,1 +893735,1 +844155,2 +598545,1 +792602,0 +81394,1 +79720,1 +450891,1 +689110,1 +603282,1 +151774,1 +427833,1 +514030,1 +450842,1 +663940,0 +289537,1 +93580,1 +999485,1 +16012,0 +602434,2 +128526,1 +567878,2 +311040,0 +397558,2 +659249,2 +732039,-1 +257083,1 +653366,2 +764741,1 +240417,2 +941193,1 +249928,1 +355194,2 +466127,1 +986184,1 +194736,2 +193995,1 +630191,0 +467505,0 +385475,-1 +537515,2 +689188,2 +629787,2 +125791,2 +873126,0 +634159,1 +5824,-1 +626130,0 +710596,2 +739055,1 +584269,1 +930286,2 +803604,2 +902313,-1 +365571,1 +418391,1 +260874,2 +53754,1 +406691,2 +958946,-1 +135258,1 +349414,1 +988959,1 +954431,1 +985836,1 +698510,2 +509363,2 +625498,1 +896827,1 +393734,1 +326465,1 +856169,2 +404748,1 +330862,2 +455496,1 +571982,1 +298506,1 +98423,1 +660483,1 +219919,2 +967026,1 +640859,0 +574291,0 +673739,1 +490703,1 +811513,2 +357267,1 +366205,1 +47116,2 +41555,1 +666135,1 +997640,2 +381416,2 +168327,1 +492253,2 +422735,1 +667117,-1 +202823,1 +10908,-1 +366599,1 +394665,1 +734589,1 +210821,2 +191243,1 +435686,1 +7931,2 +331666,1 +998608,1 +598170,2 +981822,1 +349039,-1 +131708,1 +440962,1 +719287,1 +866736,2 +793383,1 +486705,1 +206701,2 +812095,2 +813429,1 +300273,1 +246003,1 +357693,1 +127689,2 +554542,1 +713892,1 +855661,2 +413022,1 +204680,1 +865502,1 +70808,1 +542694,2 +521642,0 +90760,2 +599952,1 +116224,1 +781730,1 +222272,2 +520111,1 +470642,1 +241795,1 +585620,0 +969978,2 +800466,2 +665096,1 +59084,-1 +813349,1 +312981,1 +965523,1 +921337,1 +791417,1 +472174,1 +514550,1 +418510,1 +344814,2 +555242,1 +603943,1 +996818,1 +518736,1 +194144,1 +548422,0 +781735,1 +90786,1 +3051,1 +402995,0 +224269,1 +891634,1 +661409,-1 +776823,1 +773037,1 +716592,2 +709740,-1 +230435,2 +105775,2 +277235,1 +323839,1 +485009,1 +991522,2 +421384,0 +407930,1 +499185,-1 +634042,2 +281534,1 +29564,1 +777475,1 +73475,1 +924278,2 +945887,0 +133825,1 +750622,1 +340947,1 +477970,0 +841038,1 +331429,2 +861934,2 +117689,2 +231985,2 +452498,-1 +147151,0 +402278,1 +515529,1 +816064,1 +320416,1 +674363,1 +45153,1 +294203,2 +69149,2 +892557,1 +714218,1 +374533,2 +799765,0 +406896,0 +493645,2 +77622,2 +351139,2 +598383,2 +437099,-1 +811260,1 +289021,1 +411748,2 +834122,1 +531633,1 +138830,2 +855031,2 +621398,2 +591179,-1 +665535,-1 +625048,2 +395927,-1 +819363,-1 +226513,1 +230277,2 +217668,1 +646356,-1 +585846,-1 +320140,-1 +7769,2 +128883,-1 +930716,1 +52091,1 +865029,1 +678269,1 +646896,1 +151820,1 +126071,-1 +390635,0 +846830,2 +903429,1 +552575,1 +51238,1 +398685,1 +442076,1 +245264,1 +1847,1 +800950,1 +236737,1 +371083,1 +288557,1 +645411,0 +582358,-1 +105065,1 +105707,-1 +487304,-1 +966654,0 +367823,1 +649275,1 +29185,2 +172119,0 +685650,2 +173254,1 +287735,1 +97811,1 +838235,2 +254835,-1 +318905,0 +259043,2 +381017,1 +649757,0 +529954,1 +663529,1 +423720,-1 +22777,1 +766694,0 +166583,1 +282634,0 +353764,1 +461317,2 +31680,1 +998009,1 +491318,1 +970330,1 +476860,2 +415960,1 +937064,1 +935085,1 +863837,0 +166987,2 +65621,1 +486600,1 +389265,1 +151202,1 +906908,1 +98725,2 +741135,1 +184479,1 +364623,2 +289083,2 +101465,2 +877671,1 +414975,1 +819137,0 +162715,1 +889367,1 +682050,1 +468148,1 +276721,1 +809015,0 +82904,1 +629958,1 +282539,-1 +576641,1 +721032,1 +985863,2 +351847,0 +102182,1 +432256,1 +810959,-1 +339263,-1 +426325,1 +634147,2 +43694,0 +693219,1 +840612,0 +292313,1 +459823,-1 +458700,1 +886294,1 +72399,2 +838493,1 +239467,1 +966716,2 +88590,1 +270660,2 +612857,1 +481502,0 +953534,1 +399293,2 +325715,1 +412226,1 +817566,1 +610516,1 +921902,1 +279576,2 +164195,2 +233989,2 +650411,1 +531313,2 +4333,1 +643985,2 +556079,1 +362728,1 +619584,1 +498930,2 +711047,2 +280183,1 +710884,1 +669728,2 +873903,1 +133051,1 +580652,1 +122184,1 +297918,1 +443350,1 +942345,0 +487311,2 +624290,2 +462841,1 +682584,1 +86801,1 +614098,0 +71036,-1 +603798,1 +539219,0 +571734,1 +891254,0 +16967,1 +366465,2 +468888,1 +755956,1 +854237,0 +929586,2 +972465,-1 +47414,1 +237511,1 +473045,1 +719760,2 +3380,1 +915945,1 +746072,2 +793658,1 +718346,1 +991582,1 +186975,0 +544544,1 +598757,1 +352182,2 +799769,0 +285144,1 +406272,2 +92988,1 +36673,1 +558989,1 +261633,2 +239960,1 +938879,1 +638143,1 +162574,1 +78388,1 +966667,1 +865944,1 +972181,2 +946851,1 +214800,1 +728032,2 +600651,1 +728584,1 +706681,0 +589739,1 +450581,1 +47561,1 +401905,1 +800981,1 +589183,1 +222534,1 +357670,1 +923142,1 +497636,2 +443455,2 +730705,2 +830855,1 +255556,2 +961712,1 +589379,1 +956735,1 +216207,1 +650019,-1 +606200,2 +753836,1 +847322,0 +273226,1 +83629,1 +226734,2 +788872,0 +870974,2 +591870,1 +568912,2 +789519,1 +731488,-1 +244090,1 +735125,2 +764484,1 +646717,1 +31157,-1 +152232,0 +414280,1 +587546,1 +821756,2 +373215,1 +826764,1 +733307,1 +596788,2 +57392,1 +761256,1 +586312,1 +93389,-1 +93917,2 +73551,2 +165581,1 +156791,-1 +823794,1 +63392,2 +182207,1 +829750,1 +101290,2 +639078,1 +960964,2 +884242,2 +333194,0 +180605,1 +724302,1 +464585,0 +857134,1 +289751,1 +746574,-1 +5343,1 +477522,2 +446879,1 +546541,1 +732463,2 +380608,1 +336640,-1 +52477,1 +194507,1 +538733,1 +622382,1 +758067,2 +969245,0 +6204,1 +360927,1 +733862,1 +254831,1 +312789,1 +683632,2 +698155,0 +581241,1 +685887,2 +495618,1 +98564,0 +422534,1 +378882,1 +175872,0 +135908,1 +840249,-1 +37433,0 +231996,1 +573211,1 +703385,2 +11101,1 +819890,1 +572492,1 +120502,0 +146930,1 +913546,1 +808868,1 +383788,1 +629338,1 +429250,0 +327253,-1 +233323,2 +754966,1 +5107,0 +285700,1 +997597,1 +605325,1 +181468,0 +921776,1 +131890,1 +727491,1 +407368,1 +720318,1 +521215,2 +699505,0 +260605,1 +4496,1 +162556,1 +283270,0 +631070,1 +343853,2 +195609,2 +729294,1 +342029,1 +31305,2 +974349,-1 +827385,1 +110637,1 +330981,1 +716213,0 +673772,1 +533976,1 +467243,-1 +671317,2 +232183,1 +489015,2 +356158,2 +988748,1 +240002,1 +873392,1 +345670,1 +356761,2 +530584,1 +177001,1 +525148,2 +347083,1 +784269,2 +420686,2 +918830,2 +550616,0 +696228,0 +861731,2 +677852,1 +591361,1 +962050,1 +76649,1 +832328,1 +239449,1 +467995,2 +467450,1 +127162,1 +477381,1 +58715,0 +701473,1 +893061,2 +335217,1 +909071,1 +471885,2 +164325,1 +875446,2 +366749,-1 +625267,1 +805316,1 +779520,1 +967449,1 +39093,-1 +306078,0 +983065,2 +106475,1 +380508,1 +236562,1 +589848,1 +741895,1 +204042,1 +238985,0 +468940,2 +467571,1 +86934,1 +650045,1 +334396,2 +308397,2 +435631,2 +206312,2 +565453,1 +250852,2 +511144,1 +985030,1 +5045,1 +962371,1 +179695,1 +571674,1 +708517,1 +949891,1 +451267,2 +463572,2 +527910,1 +446310,0 +105414,1 +18138,1 +653784,0 +331838,1 +650762,1 +826394,0 +164947,1 +871573,2 +737732,1 +78892,2 +950200,1 +484870,2 +382863,1 +155451,1 +361880,1 +625561,1 +675442,2 +113514,1 +19397,2 +718093,1 +428411,1 +908602,1 +595852,1 +866548,1 +516734,1 +203690,2 +457889,0 +42699,1 +564817,1 +519244,1 +634222,1 +851947,1 +925224,1 +776585,1 +603969,1 +848121,1 +745737,1 +706675,1 +891427,0 +311901,1 +190297,1 +782363,1 +44291,2 +370428,1 +899174,1 +144125,1 +422237,1 +554582,2 +242199,-1 +232219,1 +224076,1 +945898,1 +564911,2 +343688,-1 +371908,0 +627574,2 +180485,1 +249763,1 +651375,1 +660951,1 +657758,0 +237867,1 +782819,1 +791928,2 +294609,1 +850390,2 +396547,1 +142830,0 +250983,2 +443938,1 +831490,1 +418267,0 +860398,-1 +763872,0 +574726,1 +142336,2 +213055,-1 +455829,1 +656699,1 +171902,1 +350128,2 +714025,1 +17420,1 +44772,0 +643168,0 +704610,1 +820523,1 +37607,1 +680087,2 +509948,1 +938423,1 +476346,2 +617648,2 +659939,2 +510346,-1 +106516,2 +187412,1 +530662,1 +969059,-1 +233113,2 +881485,1 +396578,1 +722776,1 +69263,-1 +783056,1 +29053,1 +45878,1 +845042,2 +78628,2 +899274,1 +485857,2 +914284,0 +590949,1 +286808,2 +449133,1 +145375,1 +769261,1 +769524,2 +968896,0 +313839,2 +775822,0 +293312,-1 +495182,-1 +896063,1 +2325,1 +795486,2 +135329,2 +885345,1 +703319,0 +595781,1 +243128,1 +589175,1 +473007,0 +145261,1 +942956,1 +524966,2 +713766,2 +440834,2 +94839,1 +730063,1 +120270,0 +73612,1 +432813,1 +317254,0 +149855,0 +588233,2 +860852,1 +762132,1 +694699,1 +357323,2 +617071,2 +909332,1 +460019,1 +175290,1 +845224,1 +77234,1 +337929,-1 +846396,1 +515567,1 +365305,0 +410068,-1 +123198,1 +287376,1 +799250,0 +744900,1 +505135,2 +380314,0 +272452,0 +164506,1 +825234,1 +959388,2 +502275,-1 +663775,1 +515364,1 +29777,1 +857998,-1 +930993,1 +225367,1 +299046,1 +54060,1 +153537,1 +77959,2 +238755,1 +913486,1 +14443,1 +604691,1 +56693,1 +397430,0 +292158,1 +263045,1 +686702,2 +111969,1 +575864,1 +592714,1 +788130,1 +283215,2 +463455,1 +84395,1 +111750,1 +930512,1 +582792,1 +172215,0 +856082,1 +788739,2 +509947,0 +407486,1 +93916,1 +49777,-1 +794018,0 +448173,1 +461282,1 +44346,1 +505510,2 +782839,2 +104045,1 +568580,1 +758553,1 +53400,2 +441214,-1 +953386,1 +143711,1 +120075,-1 +215972,0 +439116,2 +186431,-1 +593449,1 +607278,1 +582945,2 +922510,1 +767792,-1 +795952,2 +944860,1 +444063,1 +865922,0 +752668,0 +977914,1 +252208,2 +772954,1 +254837,1 +237616,-1 +371131,2 +343754,2 +449316,-1 +185570,1 +47008,2 +19133,1 +375376,2 +578099,1 +763558,2 +162367,1 +690491,2 +698617,1 +620254,1 +217118,1 +232363,1 +816170,1 +449825,-1 +672636,0 +179091,1 +231038,1 +291804,-1 +710495,1 +553086,1 +323962,2 +581600,0 +704427,1 +438734,2 +209379,2 +415615,-1 +284806,1 +310499,1 +346116,0 +771257,1 +129670,1 +532461,1 +847765,1 +541807,0 +151102,1 +301061,0 +920481,1 +223008,1 +804457,1 +577544,0 +724299,1 +615253,-1 +414925,1 +905949,1 +633508,1 +270235,0 +560973,1 +337725,1 +307063,1 +248899,1 +693471,1 +32083,2 +581827,2 +447640,1 +862171,1 +263238,1 +177423,2 +556777,1 +814230,2 +34166,0 +355856,1 +961882,1 +762704,2 +602494,1 +34702,1 +715552,1 +355679,-1 +854686,2 +171389,-1 +820375,2 +752605,1 +923279,1 +150302,1 +444048,1 +772347,1 +707363,1 +43036,1 +31741,1 +902354,0 +732442,1 +691266,2 +115042,-1 +522188,1 +815935,1 +621337,1 +933944,2 +545889,1 +639168,1 +655821,2 +217577,2 +988338,1 +310934,0 +384173,1 +850427,1 +614699,2 +146362,1 +58112,1 +466658,1 +798525,2 +569963,1 +434900,1 +51794,1 +373733,2 +78426,1 +591624,2 +376278,1 +881145,2 +423932,2 +154517,1 +809256,2 +592760,1 +326267,1 +557614,1 +657699,2 +792471,1 +687325,2 +184414,1 +160393,2 +846792,1 +615738,1 +988164,0 +487047,2 +469101,0 +804088,1 +981726,1 +661325,2 +395935,1 +404054,1 +336290,1 +458596,2 +721106,1 +837210,2 +370613,1 +123115,2 +306643,2 +666144,1 +108718,2 +319332,1 +579193,1 +358166,1 +141738,1 +260609,2 +581967,1 +132595,1 +488092,1 +392202,2 +315476,1 +205530,0 +659291,1 +436218,0 +90685,1 +142415,1 +24934,1 +409382,1 +920431,2 +796763,2 +845251,1 +388243,1 +604797,1 +152641,1 +248936,1 +938144,2 +424611,1 +329124,0 +665784,0 +640825,1 +163428,1 +556966,2 +462236,2 +940585,1 +836959,1 +203375,1 +254557,1 +980954,0 +24797,2 +281199,1 +574766,1 +887404,1 +291525,2 +649648,1 +753473,2 +305074,1 +328063,1 +567452,1 +195871,1 +540520,0 +875626,1 +672918,2 +17142,1 +644643,0 +558196,1 +718420,1 +941514,2 +142228,2 +114046,2 +201727,0 +432369,0 +387738,1 +199691,1 +180304,1 +673181,1 +146042,1 +558321,-1 +486158,1 +656852,1 +746973,0 +443873,2 +946854,1 +206666,-1 +329798,0 +494754,0 +964787,-1 +992585,2 +626550,1 +338140,1 +86710,1 +880166,1 +461185,2 +840127,1 +909823,1 +347835,1 +41851,1 +429019,1 +822696,1 +398282,0 +939362,1 +44160,2 +193712,1 +628281,1 +489292,2 +616565,1 +347410,2 +17963,1 +76228,1 +601837,0 +569634,0 +57381,-1 +120440,1 +34596,2 +28256,2 +499154,1 +352917,2 +642374,1 +597069,1 +830957,2 +317312,2 +827075,1 +588394,1 +706639,1 +182537,1 +16854,1 +443398,1 +434602,1 +554528,2 +30214,1 +171137,-1 +875060,1 +961114,1 +246680,2 +244205,1 +552594,1 +726305,0 +354750,1 +71830,2 +345645,1 +212044,1 +200267,1 +942846,2 +174493,2 +333002,2 +146187,1 +793908,2 +496143,1 +966647,1 +323,2 +803875,2 +402047,1 +534219,1 +703000,1 +671584,2 +559320,1 +188050,2 +887516,1 +645866,1 +466328,1 +415728,1 +503003,0 +298164,1 +633000,-1 +512067,1 +235641,0 +343381,-1 +733240,1 +136832,1 +389026,1 +852347,1 +25002,1 +294027,1 +648266,1 +810469,0 +224435,1 +952397,1 +12004,1 +185013,1 +486832,1 +86045,1 +133514,1 +799864,1 +781356,1 +866735,1 +788791,2 +907298,1 +930620,0 +580848,1 +438124,1 +400009,1 +956741,1 +748695,1 +831576,1 +683218,2 +531715,1 +555874,2 +672398,1 +293081,1 +506419,1 +776853,2 +857439,1 +860763,1 +169809,2 +410150,0 +776743,0 +830459,1 +612043,1 +247011,1 +404518,1 +997644,0 +111741,0 +921727,2 +921922,1 +349946,1 +632649,2 +10315,1 +448017,1 +561814,0 +88851,1 +317861,1 +419424,1 +185650,1 +931895,1 +893553,2 +159886,1 +48509,1 +697646,1 +260134,1 +958366,1 +497671,1 +890683,-1 +219061,1 +50736,2 +742031,0 +431195,1 +159717,1 +641424,1 +423512,2 +229137,1 +798844,1 +693406,2 +371036,2 +211835,1 +757133,1 +937342,2 +977747,2 +333823,2 +669775,1 +260295,2 +677043,0 +477036,1 +194820,1 +833593,0 +737103,2 +838487,0 +14362,1 +433532,1 +375715,2 +274541,2 +115978,1 +905000,1 +343053,1 +168437,1 +794305,1 +149132,0 +255482,1 +786652,1 +18795,1 +261144,0 +2575,1 +477704,2 +645226,1 +613988,2 +141972,1 +863542,1 +922667,2 +419431,1 +960388,1 +853322,2 +622813,1 +785330,1 +810188,1 +53815,1 +818404,0 +747464,2 +754308,1 +128943,0 +996229,1 +964585,1 +959469,1 +354761,1 +102989,2 +67926,0 +122021,1 +549342,2 +446441,2 +196355,2 +589487,1 +70611,2 +683684,0 +978725,2 +13287,1 +809747,-1 +838185,0 +647188,-1 +616174,0 +754798,1 +620739,1 +644772,-1 +96841,2 +818549,1 +24845,1 +397713,2 +924727,1 +164077,1 +442722,2 +583077,1 +840571,2 +415337,1 +148578,2 +239214,0 +521908,2 +947679,1 +227844,1 +701507,1 +617736,1 +509196,1 +585430,-1 +839425,1 +414230,2 +916592,1 +705572,1 +282147,2 +201741,0 +464689,2 +506099,1 +315331,1 +258435,2 +910541,1 +394712,1 +424092,-1 +204080,1 +744870,1 +644004,2 +107636,1 +661174,1 +19909,1 +927163,1 +358829,2 +186937,2 +98072,1 +43449,1 +996972,1 +365705,1 +27742,1 +165638,0 +419439,2 +254018,2 +980316,2 +849752,1 +601238,-1 +763081,0 +767129,1 +292040,1 +800470,1 +408830,1 +902403,2 +495974,1 +97966,2 +612358,1 +601862,1 +484009,-1 +24147,-1 +545781,2 +404273,2 +459068,0 +706804,1 +570687,1 +611072,1 +985616,1 +164701,1 +599031,1 +291016,2 +871590,1 +375923,2 +625713,1 +544267,2 +597520,1 +201908,-1 +779450,1 +41388,1 +324210,1 +527518,1 +995095,2 +68508,1 +645526,1 +803925,0 +310865,2 +243590,-1 +739831,1 +838039,0 +93918,2 +115526,1 +164262,1 +727311,1 +735220,1 +468210,-1 +689122,1 +53596,2 +799186,2 +101084,1 +30439,1 +810252,1 +821303,2 +292964,1 +302407,0 +271892,2 +732321,1 +447410,1 +803265,-1 +196513,1 +365268,-1 +202213,1 +325954,2 +969878,0 +626863,-1 +549662,2 +583897,2 +81079,1 +74615,1 +390771,1 +921683,1 +260545,2 +746062,-1 +523766,-1 +369387,1 +387902,0 +407975,1 +843647,2 +668518,2 +259924,1 +823007,2 +133194,2 +999383,1 +844853,1 +811166,0 +700248,1 +312802,2 +703577,-1 +842529,1 +133240,0 +637996,1 +242561,2 +970006,2 +651603,0 +339673,1 +675644,1 +793976,0 +162961,2 +469570,1 +681176,1 +887401,2 +891406,0 +751950,2 +965377,1 +773946,1 +84122,1 +845066,1 +389748,2 +837821,1 +967629,2 +864765,0 +266087,1 +41710,1 +112134,-1 +513080,1 +452254,1 +564272,2 +876098,0 +273845,2 +343129,2 +622330,2 +296515,2 +199651,1 +265010,1 +124863,1 +619557,2 +500287,1 +366450,1 +626887,1 +426254,2 +535685,1 +617761,2 +616786,2 +863271,2 +516407,2 +148449,1 +849472,1 +665945,1 +479060,1 +736724,1 +288008,1 +638394,1 +779022,-1 +951766,2 +535506,2 +202738,1 +863224,1 +870370,1 +721194,1 +981141,2 +252336,1 +77169,1 +68528,1 +38903,1 +256464,2 +11425,-1 +898966,1 +860813,1 +873715,1 +81184,1 +106630,2 +203802,1 +904553,1 +793878,1 +727291,1 +659013,1 +170414,1 +545030,2 +935399,0 +720843,1 +24407,2 +368110,1 +503818,1 +556178,1 +905326,2 +337724,2 +69700,1 +114542,2 +160079,1 +903579,1 +646349,2 +161942,-1 +598614,0 +663644,0 +329622,1 +263883,1 +296398,0 +566777,2 +158516,1 +764934,2 +404621,2 +803119,2 +610999,1 +737690,0 +312628,1 +712615,1 +188749,2 +814343,1 +988637,0 +880191,0 +280042,1 +630479,0 +46849,2 +667139,2 +445425,0 +136052,-1 +811010,2 +170283,1 +900662,1 +493441,1 +94212,2 +753640,2 +312169,2 +202533,1 +102614,1 +619990,1 +86350,2 +63121,1 +121852,1 +600352,1 +124929,1 +75897,1 +574497,2 +24804,1 +596222,1 +906004,0 +539619,1 +110125,1 +448051,2 +790726,1 +822650,2 +381243,2 +730979,0 +936649,2 +587095,0 +612202,2 +429050,0 +700694,1 +851416,1 +547091,1 +51713,1 +125090,1 +81094,1 +46987,2 +10385,0 +660879,1 +815867,1 +182651,2 +13152,1 +612985,2 +668026,2 +286216,1 +872878,1 +346203,1 +717045,0 +118481,1 +67795,1 +965112,1 +942456,1 +49607,1 +336321,2 +220175,1 +218973,1 +458027,0 +932536,0 +239165,2 +473283,1 +10468,1 +965411,1 +733655,2 +383468,1 +796762,1 +184596,-1 +327092,1 +158124,1 +998269,2 +332356,1 +495084,2 +610404,1 +478417,1 +599073,0 +476278,1 +433925,1 +184487,1 +899620,0 +237593,2 +637818,1 +487541,0 +323186,0 +767342,0 +897943,0 +893076,1 +227111,1 +484479,1 +142536,1 +511856,1 +486621,1 +793118,1 +350625,1 +875997,2 +520873,1 +980231,0 +486454,1 +790783,1 +119066,1 +795590,2 +703949,1 +226753,1 +497219,1 +133965,1 +108181,1 +574156,1 +510374,0 +547861,2 +154116,2 +445954,1 +997533,1 +624946,1 +463357,2 +912071,1 +789575,0 +733504,-1 +921494,1 +182771,2 +577188,1 +77565,1 +13576,0 +850213,0 +233403,0 +158376,2 +42715,2 +125277,2 +794752,1 +738883,1 +646317,0 +908688,1 +767328,1 +771691,1 +259880,2 +825122,2 +884467,2 +787682,2 +609778,2 +737682,1 +908388,0 +424425,1 +323128,1 +628679,2 +678862,1 +838507,-1 +205713,1 +681150,2 +7572,1 +941573,1 +274509,1 +684872,1 +370024,2 +291351,1 +155280,2 +493518,2 +955736,1 +475150,1 +814784,2 +934550,2 +236229,2 +868776,1 +724046,-1 +948949,2 +383876,1 +131974,2 +986064,0 +428108,1 +926841,1 +494582,0 +781163,1 +92910,2 +486,0 +491939,-1 +53227,1 +800250,1 +253165,1 +31100,1 +457211,1 +164443,0 +646128,2 +26297,1 +641969,1 +593800,1 +256579,2 +805014,1 +418189,1 +640885,2 +497723,2 +627483,-1 +654700,0 +237079,1 +432087,2 +572031,1 +962862,1 +73015,2 +308754,1 +686614,0 +620529,1 +342626,1 +875135,0 +135651,1 +566883,2 +708737,1 +771565,2 +146085,0 +713094,2 +540959,1 +824998,1 +387636,1 +6977,1 +581176,1 +272574,1 +312899,1 +405772,0 +423226,1 +15617,-1 +73801,-1 +581076,-1 +763519,2 +916909,1 +646077,0 +551261,2 +182472,2 +180047,1 +986479,2 +238659,1 +76266,2 +98479,1 +177204,1 +298152,2 +328729,1 +297260,1 +567264,0 +329437,1 +985621,2 +789426,1 +246326,2 +933736,2 +378617,-1 +254499,1 +174922,-1 +312720,2 +568863,1 +903966,1 +730989,0 +191303,2 +261053,1 +179969,1 +411209,1 +293338,2 +224041,2 +627912,2 +763334,1 +769155,1 +93337,1 +802385,1 +42183,2 +407596,2 +368054,2 +618952,1 +648741,1 +877147,0 +996306,1 +154289,1 +333682,0 +746454,1 +504683,1 +455348,1 +744762,0 +153848,2 +429721,1 +460217,1 +622753,1 +925836,2 +140313,1 +498154,0 +848278,0 +694120,1 +614569,1 +511015,1 +56117,1 +97915,0 +684968,1 +290122,1 +896238,1 +105501,1 +155182,1 +243396,1 +425069,-1 +3804,2 +92161,1 +360732,1 +850932,1 +20149,2 +695895,1 +972635,2 +986282,0 +568549,0 +434652,1 +507521,0 +263473,1 +267646,2 +149939,1 +274077,1 +776304,-1 +370879,0 +404861,0 +204227,2 +819486,1 +142966,0 +818701,1 +274044,2 +665722,1 +421305,1 +704236,2 +349774,1 +635513,1 +652424,1 +146233,1 +676332,-1 +696485,-1 +474898,1 +939207,0 +135234,2 +4494,1 +678001,2 +505970,1 +656254,0 +552023,1 +561933,0 +885448,1 +284977,1 +455946,1 +891808,1 +349787,-1 +598581,1 +327527,2 +631112,1 +780626,2 +617439,1 +778454,-1 +411141,1 +694508,1 +451340,0 +200823,1 +252827,1 +997245,1 +593241,0 +150780,2 +701541,2 +342006,-1 +182752,2 +597528,1 +979212,1 +730965,1 +705732,2 +852885,1 +567968,1 +58159,1 +485485,1 +270505,1 +221568,2 +261639,1 +493242,1 +988625,2 +127890,-1 +582873,1 +596848,2 +653100,1 +681574,2 +228139,1 +121922,2 +941781,2 +169175,2 +253167,2 +715413,1 +15656,1 +825086,1 +207315,0 +823519,2 +369940,1 +359076,2 +802295,1 +44252,2 +230042,1 +663144,1 +235342,1 +948529,1 +649033,1 +622688,1 +500735,2 +295382,1 +982200,1 +349178,0 +395381,2 +544107,1 +538241,2 +591984,1 +45181,2 +708342,1 +950412,2 +118586,1 +833509,1 +694880,1 +501069,1 +537327,0 +736909,1 +777838,2 +14607,1 +198247,1 +532727,1 +971954,1 +506983,0 +740265,2 +628974,1 +273978,1 +890446,2 +555626,1 +266376,1 +555259,2 +605751,-1 +642647,1 +8695,2 +288654,0 +420856,2 +822637,1 +495623,2 +444782,1 +598329,2 +581704,2 +274996,2 +185975,1 +6500,0 +4922,2 +314724,2 +864689,1 +890303,1 +298217,1 +58759,2 +665061,2 +711365,1 +53886,0 +639109,1 +955199,0 +56403,2 +986454,2 +725929,1 +308560,1 +63259,2 +893580,2 +910594,-1 +635622,1 +332270,2 +230361,1 +970928,1 +987005,0 +599243,2 +415291,1 +353090,2 +571695,1 +442038,1 +766968,1 +572932,1 +770249,2 +380515,2 +308454,2 +870967,1 +35630,1 +809561,2 +51932,1 +937854,2 +845936,2 +48136,0 +337375,1 +129260,2 +651061,1 +949433,1 +38474,1 +780400,-1 +900148,1 +717361,1 +315768,1 +1094,2 +371575,0 +334703,1 +347301,1 +333023,0 +760539,1 +986393,1 +113410,2 +533841,1 +646375,1 +208765,1 +874552,2 +581056,-1 +564133,1 +238576,1 +771517,1 +569298,1 +362439,1 +313524,2 +453646,0 +267618,2 +552103,0 +922833,1 +161548,1 +547728,2 +882173,1 +196745,2 +329376,1 +561279,0 +152362,1 +577289,-1 +569331,2 +797033,-1 +697697,-1 +705751,1 +780961,0 +607260,0 +56078,1 +233570,0 +900516,0 +526766,1 +950781,1 +445119,0 +299523,0 +700364,1 +638191,1 +746929,-1 +585971,2 +568079,2 +102283,1 +154483,-1 +870534,2 +367520,1 +483579,1 +846473,1 +863386,2 +448491,2 +879144,1 +661533,2 +778544,0 +26334,1 +568606,2 +694622,1 +176767,1 +787826,1 +765977,1 +79002,1 +628012,1 +468570,1 +989146,1 +458415,2 +677605,1 +896052,1 +689114,2 +743964,1 +562549,1 +609521,2 +769546,0 +936010,0 +28321,2 +907350,1 +15176,0 +619727,1 +755696,1 +659339,-1 +868242,2 +878577,1 +27645,1 +94375,2 +96253,1 +106662,1 +927688,1 +174681,1 +5808,0 +562069,1 +697588,1 +323681,1 +767676,1 +23872,1 +901914,1 +940000,2 +152867,1 +174045,1 +952247,1 +420045,1 +219993,-1 +384450,1 +284022,2 +281768,0 +969999,2 +692396,1 +566712,1 +397080,1 +400965,1 +553873,1 +314655,1 +210043,2 +66392,1 +888438,1 +42015,1 +155936,-1 +456964,1 +100619,1 +165244,1 +918091,1 +225368,1 +809620,2 +543287,1 +858075,1 +342041,1 +501333,1 +688842,1 +259862,2 +844239,1 +939482,1 +851282,1 +782419,1 +156502,-1 +411451,-1 +778098,2 +748621,1 +991104,1 +429100,2 +242868,0 +383918,1 +665976,2 +464303,0 +136987,2 +210063,1 +931052,2 +726315,1 +430258,1 +366927,1 +303238,1 +485960,0 +300485,1 +486143,1 +487258,0 +86791,1 +483979,2 +557002,1 +651130,1 +240130,1 +854919,1 +126330,1 +959514,1 +669369,1 +906463,1 +251017,1 +17936,1 +275097,2 +973737,2 +398175,1 +549419,1 +830932,-1 +62153,1 +836743,0 +688979,2 +467710,1 +786829,1 +475922,1 +756330,1 +129546,1 +283112,1 +177141,1 +27227,1 +991302,1 +769041,2 +982553,1 +882621,0 +953530,2 +834944,-1 +561470,0 +384297,1 +521834,-1 +878776,0 +800561,2 +332192,0 +626665,1 +720978,1 +471603,1 +840316,2 +270413,2 +666499,1 +934904,1 +750005,1 +370595,1 +93511,1 +389325,1 +285464,0 +537960,1 +523402,1 +453346,2 +286755,1 +735544,0 +737829,1 +866869,1 +887135,2 +539693,1 +912791,1 +32937,1 +607228,1 +678005,1 +547998,1 +111384,1 +135862,1 +585961,1 +851295,0 +876430,1 +161949,1 +265741,1 +469560,-1 +625147,1 +843557,1 +246532,2 +397532,1 +363915,2 +535584,1 +195696,-1 +432742,1 +45471,1 +147931,1 +351920,1 +728240,0 +15379,2 +138964,2 +406562,1 +673979,1 +6599,2 +3316,2 +963207,1 +292792,2 +715826,2 +901330,1 +658591,2 +700745,2 +684686,2 +585044,0 +72912,1 +292080,1 +775106,1 +429183,1 +79809,1 +710041,1 +359322,1 +558178,1 +883974,1 +796425,1 +792125,1 +603149,1 +412743,1 +899120,1 +77176,-1 +48054,2 +744133,2 +792380,1 +450463,0 +923478,0 +825217,1 +92054,-1 +455204,1 +166549,0 +864815,-1 +736961,2 +495799,-1 +988766,1 +440864,1 +7273,0 +114016,1 +713565,1 +713129,1 +681654,0 +633587,1 +489731,1 +71236,1 +954902,1 +608676,2 +841621,1 +938387,0 +96791,2 +336255,2 +654234,1 +568095,2 +297199,0 +63520,1 +146672,1 +156613,1 +209688,1 +233240,1 +635250,1 +818370,1 +250804,0 +472432,-1 +526619,1 +932140,2 +678223,1 +499800,1 +94093,2 +975989,1 +546488,2 +823328,1 +83230,1 +613657,1 +465639,2 +37735,2 +508126,2 +338723,1 +216769,1 +924616,-1 +128444,1 +781378,0 +161766,-1 +629937,1 +448114,1 +337455,1 +928110,0 +348665,1 +925085,2 +350345,-1 +255901,1 +798119,1 +649555,1 +678457,0 +127945,2 +306053,1 +429997,1 +84686,1 +178031,-1 +433817,1 +727081,1 +92555,0 +736073,2 +684291,1 +208436,1 +631966,0 +632170,2 +552169,1 +700411,0 +398682,1 +864408,2 +791122,1 +311939,1 +212992,2 +439770,2 +888670,0 +246648,0 +52909,1 +185340,1 +954861,2 +312141,1 +779676,1 +501230,1 +655913,2 +869690,1 +692291,1 +7733,2 +323305,1 +522534,1 +255257,2 +342294,1 +336712,0 +847143,0 +958883,2 +32011,0 +645444,1 +591370,-1 +921487,1 +213184,1 +191035,2 +486019,1 +967576,2 +485397,1 +274091,2 +971373,1 +80530,1 +441388,2 +219687,2 +589095,1 +717337,1 +309919,2 +624761,1 +538959,1 +933506,1 +255735,1 +960885,1 +547227,1 +955114,1 +490235,-1 +30625,2 +344466,2 +352351,1 +91361,1 +644448,2 +321910,1 +294122,1 +502744,2 +450547,1 +952430,1 +917415,2 +546639,2 +498408,1 +19737,2 +89008,2 +401448,1 +117558,0 +713838,1 +52888,2 +692934,1 +211232,0 +738012,-1 +430717,1 +429013,1 +622733,0 +175296,1 +208540,2 +341637,1 +980407,2 +747972,1 +10675,1 +413483,0 +492601,2 +440868,1 +179308,-1 +850302,1 +994884,2 +280069,1 +225213,1 +383465,1 +495245,2 +457142,2 +918082,1 +850665,1 +119798,1 +197624,0 +419286,1 +66539,1 +937594,1 +458056,1 +391586,-1 +537905,-1 +940773,-1 +63636,1 +350290,2 +399262,1 +879570,1 +242644,0 +360419,2 +702569,1 +195816,-1 +757711,1 +927763,1 +709644,2 +713965,1 +645834,1 +917740,1 +102859,2 +302987,1 +533731,1 +989796,-1 +998974,2 +238041,2 +849413,2 +277751,2 +42975,1 +243718,1 +993297,1 +162328,1 +341635,1 +650311,1 +244956,1 +203918,1 +474921,0 +111066,1 +706768,1 +701078,1 +469942,0 +396077,1 +930734,1 +769160,1 +324,1 +685392,-1 +195255,1 +132265,1 +232617,1 +671491,0 +24200,2 +670870,0 +187081,0 +740680,1 +183014,1 +1002,1 +437581,1 +13562,1 +525771,1 +484704,1 +435190,2 +563240,1 +980945,2 +71688,0 +43993,1 +674237,1 +609692,2 +994995,2 +17950,1 +660705,1 +488065,1 +718541,1 +789782,1 +774504,1 +942387,1 +913856,0 +68822,1 +498872,0 +282396,1 +607114,1 +293524,1 +67727,0 +926215,1 +237135,2 +13937,1 +105223,-1 +989572,2 +548324,2 +565886,1 +319852,1 +958100,1 +343719,2 +731863,1 +603466,1 +119608,1 +692785,0 +764412,2 +853757,1 +822612,1 +400706,1 +506377,1 +676465,2 +528708,1 +426419,0 +540054,2 +912100,1 +274630,1 +554174,1 +905680,1 +418450,1 +418141,1 +307012,0 +890324,0 +682705,2 +379783,2 +843593,1 +22034,2 +616085,-1 +672236,2 +440264,1 +162520,2 +571452,1 +178299,2 +187726,0 +162956,2 +650239,1 +285695,2 +62508,1 +601101,1 +888833,0 +452911,1 +532091,1 +647934,1 +205997,0 +376530,1 +491158,1 +670340,1 +63710,1 +373166,2 +123762,2 +949504,2 +282697,1 +796241,1 +968995,1 +114369,1 +505454,2 +804838,1 +254338,1 +357839,2 +356216,2 +27874,1 +985071,1 +718353,0 +10863,-1 +519963,2 +398011,-1 +858431,0 +781976,1 +647740,1 +509315,1 +180805,2 +153440,1 +721700,2 +665905,2 +425155,1 +592618,1 +604000,1 +706419,1 +626332,1 +675525,2 +35335,2 +879999,1 +695422,1 +282559,-1 +347486,0 +237897,1 +83693,0 +434463,2 +936349,1 +467990,1 +339981,-1 +998342,2 +769234,2 +812406,1 +325242,1 +274653,1 +141806,-1 +239144,2 +537273,2 +147807,0 +207974,2 +357314,1 +789590,0 +752831,2 +719483,1 +717031,0 +744804,1 +912022,1 +541124,0 +999263,1 +986822,1 +397991,1 +819649,1 +917021,1 +742017,0 +68689,1 +233448,1 +391815,1 +625916,1 +602874,1 +384242,1 +248317,2 +597775,1 +505736,1 +830762,1 +268977,1 +169209,2 +674056,1 +303834,1 +893012,1 +950264,1 +155098,-1 +643801,1 +37382,1 +239109,0 +811745,2 +307324,2 +651589,2 +728961,1 +995965,0 +32617,1 +345264,0 +670510,2 +187322,1 +643839,-1 +656403,1 +407063,1 +456801,1 +279241,2 +173656,0 +140144,1 +695410,1 +342379,1 +904821,1 +102149,-1 +315058,0 +443380,1 +328359,0 +822742,1 +363827,0 +369444,1 +15004,1 +425757,-1 +795670,2 +994106,1 +521233,1 +629606,-1 +428345,1 +376182,1 +557421,1 +351678,1 +566520,1 +951080,1 +431383,2 +164681,1 +711690,1 +487536,1 +12892,1 +93856,-1 +616594,2 +55340,2 +977890,0 +767055,1 +449932,1 +916728,1 +116029,2 +385866,2 +560183,1 +264529,1 +410097,1 +759381,1 +846166,0 +975978,-1 +73908,1 +564366,0 +218212,2 +774290,1 +468930,1 +692526,-1 +425303,1 +907670,1 +345212,1 +686682,2 +130895,1 +78847,0 +813529,1 +512340,2 +643621,1 +492385,1 +105981,1 +106267,1 +395551,1 +133092,1 +62304,1 +773877,1 +261474,0 +2066,1 +880642,1 +168822,1 +291414,-1 +518500,1 +474278,2 +250041,2 +369792,2 +549105,1 +735919,1 +415660,1 +390548,-1 +586365,0 +801663,1 +21444,2 +429715,1 +485778,0 +353052,1 +39102,1 +874377,1 +582519,2 +714029,2 +562887,1 +161206,1 +242518,1 +333341,0 +526794,2 +862925,1 +964831,1 +141282,1 +642970,2 +437390,1 +251594,2 +3947,1 +782071,0 +876155,1 +518691,1 +571034,0 +57352,-1 +444558,1 +44613,2 +583126,1 +516278,1 +599097,2 +144626,-1 +362282,1 +465505,2 +781993,2 +840724,1 +385584,1 +332709,0 +913766,1 +49767,2 +416908,2 +607640,1 +642312,1 +66809,1 +55451,1 +776252,2 +146193,2 +839366,1 +579210,1 +597687,0 +619476,0 +414013,2 +380700,1 +896367,0 +334698,1 +314624,1 +991473,1 +549413,1 +242209,0 +969368,1 +348883,2 +418492,-1 +470540,1 +458378,1 +109266,1 +796016,1 +146189,-1 +908598,-1 +305829,1 +150626,1 +314295,1 +785092,1 +349953,1 +315604,-1 +719053,2 +625475,2 +904281,1 +864899,1 +98191,1 +393935,1 +976682,0 +115902,1 +714477,1 +904871,0 +40002,1 +196167,1 +876677,2 +639041,1 +658238,2 +118538,-1 +585684,1 +212373,2 +439871,1 +372248,1 +808291,1 +740677,0 +286600,2 +39137,2 +242134,-1 +789533,1 +974607,1 +121892,1 +925466,1 +659381,1 +71947,1 +619589,2 +538261,2 +401624,1 +592687,2 +770681,1 +655254,0 +803295,1 +770982,2 +841939,2 +773430,2 +910369,1 +529946,1 +453960,2 +199412,1 +928138,1 +89026,1 +936076,-1 +48194,1 +543968,1 +428811,1 +199176,2 +308647,0 +472164,1 +14347,2 +792863,1 +730475,2 +302030,-1 +729730,0 +355810,2 +520559,1 +116986,0 +242175,1 +214431,0 +627510,1 +372797,2 +821047,2 +859883,2 +184039,1 +575649,1 +406507,1 +208568,1 +371985,2 +440835,1 +647629,1 +897754,0 +802877,2 +254620,2 +306648,-1 +80762,1 +65253,1 +221872,-1 +655251,1 +400521,1 +899111,1 +213627,1 +32882,1 +127013,-1 +296021,1 +246508,2 +881303,0 +877621,1 +913736,1 +28168,0 +616816,1 +337927,1 +60850,2 +382625,1 +306424,2 +125916,1 +887268,2 +646241,0 +833300,1 +640993,2 +185928,1 +723717,1 +161924,0 +653426,1 +326871,1 +23219,2 +694941,1 +511624,1 +713841,1 +757148,2 +233609,1 +481699,2 +788178,2 +258840,2 +180910,2 +143846,1 +397187,1 +735956,1 +697066,0 +398754,1 +159756,1 +583833,1 +347170,2 +840626,2 +976083,1 +936082,1 +707118,1 +230817,1 +647480,1 +886880,-1 +669722,2 +89211,2 +965203,0 +205053,2 +792494,2 +810157,0 +244378,1 +953700,2 +823363,2 +643295,1 +844388,-1 +111866,1 +891158,1 +658186,2 +376161,2 +733882,0 +524949,1 +754796,1 +747068,1 +260344,-1 +341280,0 +833793,0 +456224,1 +942777,2 +813648,1 +703664,1 +454700,2 +774633,1 +713981,2 +439771,1 +877051,1 +557810,1 +999361,2 +541390,1 +843489,1 +864943,-1 +624938,2 +672160,2 +651084,0 +657393,1 +730399,1 +507652,1 +836399,-1 +231,2 +141372,1 +67600,1 +486188,2 +788413,2 +163707,0 +175537,1 +899924,2 +387467,0 +300294,1 +263648,1 +546601,1 +208409,2 +988785,-1 +460408,1 +596290,1 +152927,1 +330596,1 +813049,2 +29924,0 +966487,1 +211780,-1 +934971,2 +396644,1 +389863,2 +151900,1 +529295,-1 +197911,1 +795755,2 +826090,0 +10291,2 +827586,2 +342303,2 +467556,1 +237893,1 +182715,0 +523321,1 +363106,2 +23004,1 +928252,0 +391847,1 +675665,0 +348827,1 +729449,-1 +232059,1 +171354,2 +161420,1 +920419,1 +125728,2 +529144,-1 +38443,1 +923595,2 +281501,1 +755722,1 +34877,1 +948297,2 +655292,-1 +624662,0 +617813,2 +872665,1 +251854,2 +836359,1 +798768,2 +922488,1 +446131,1 +711942,1 +132672,1 +117315,2 +786925,1 +88937,0 +841709,2 +764509,1 +263838,1 +903611,0 +135121,1 +144821,2 +632162,1 +360173,1 +448103,2 +678866,2 +415234,-1 +724647,1 +665309,1 +957065,1 +224939,1 +133760,-1 +402953,1 +647958,2 +973496,1 +211487,-1 +970549,1 +322361,1 +758055,2 +34105,1 +684967,1 +167784,1 +645719,2 +183603,0 +644988,1 +417921,1 +634015,2 +855655,1 +364166,1 +818184,1 +637913,1 +584433,0 +54701,-1 +417381,1 +883513,1 +518360,1 +599938,1 +638621,-1 +961715,1 +697302,0 +167532,1 +65065,1 +872916,1 +199128,-1 +977732,1 +387630,2 +42462,2 +349811,0 +534173,0 +785799,2 +403726,2 +504476,2 +32252,2 +440593,1 +892685,1 +536460,1 +806307,2 +670875,1 +681122,1 +781879,1 +247068,1 +112810,1 +603763,0 +340383,1 +401550,0 +397696,1 +292460,1 +46055,1 +922725,0 +420119,1 +345844,2 +495305,0 +575462,0 +353591,1 +697999,1 +645309,1 +775388,1 +616411,-1 +137885,-1 +451960,1 +789115,1 +477120,2 +471531,1 +643397,1 +981119,2 +905720,0 +527327,2 +214262,1 +764356,1 +285265,1 +109031,1 +889920,1 +918544,2 +345862,0 +626861,1 +407425,1 +112891,2 +892965,0 +500622,2 +359206,-1 +132398,2 +141932,1 +27158,2 +312699,-1 +641045,2 +548793,1 +614023,0 +195809,1 +462314,0 +505590,1 +475827,1 +347787,0 +246778,1 +974119,-1 +585186,2 +76203,2 +637597,2 +999983,0 +465780,1 +735013,1 +290151,0 +347870,2 +446311,1 +408612,1 +196509,2 +129739,1 +624840,1 +806364,1 +616197,0 +376651,2 +568226,1 +51453,2 +646773,0 +462459,1 +932633,1 +420183,-1 +992903,2 +968742,1 +345859,2 +890862,1 +674121,1 +268219,2 +7655,1 +497236,1 +186163,-1 +706987,0 +128531,1 +315675,2 +746780,0 +968654,1 +252133,1 +53344,1 +933095,0 +161392,0 +694317,0 +682757,1 +583969,2 +230320,1 +927233,0 +702609,1 +449579,2 +52493,2 +275488,1 +308521,2 +960368,2 +275530,1 +833217,2 +800449,1 +244138,1 +642606,2 +370237,2 +36966,2 +12748,1 +465047,1 +688977,-1 +843598,1 +790157,1 +242160,1 +628826,1 +446288,1 +322424,0 +803087,1 +634079,2 +825627,1 +961667,1 +33808,1 +198272,2 +990123,2 +469488,1 +463957,2 +880361,1 +584773,1 +374553,1 +183275,-1 +113375,2 +190844,-1 +795230,1 +444102,1 +259635,1 +497056,-1 +205201,2 +830570,2 +177632,2 +874661,2 +204768,1 +426709,1 +666101,0 +728666,0 +622683,2 +539304,2 +490246,0 +862832,1 +91092,0 +629284,1 +581779,1 +767922,1 +207825,1 +488877,2 +290673,1 +587933,0 +12343,2 +991667,2 +366178,0 +990370,1 +345018,2 +900182,-1 +23133,0 +813652,0 +155474,-1 +265814,0 +976781,2 +853893,2 +125784,1 +722067,1 +203641,1 +455687,2 +21780,1 +739736,2 +663336,1 +669160,0 +99220,2 +736519,2 +162533,1 +272392,2 +809568,1 +408446,2 +293618,2 +614427,1 +448949,2 +434123,1 +694186,2 +480120,1 +343589,2 +595575,1 +880717,-1 +302744,1 +631761,1 +706535,1 +121619,1 +177940,2 +94004,1 +300637,1 +324458,0 +336980,1 +3151,0 +390611,2 +336024,1 +811013,1 +920143,0 +824716,1 +453544,1 +368830,2 +556824,0 +744397,2 +647697,1 +539985,1 +399389,1 +715168,1 +784741,1 +117318,2 +568817,2 +377392,1 +111643,2 +8723,0 +262101,1 +551225,1 +377121,2 +388278,1 +387855,1 +396758,1 +821375,1 +307577,1 +11874,2 +152947,1 +373196,2 +681799,0 +195033,1 +470515,1 +542193,1 +786188,1 +952036,2 +782706,1 +232723,2 +443670,-1 +685079,2 +276015,1 +373750,0 +956265,1 +847491,1 +511736,2 +301549,-1 +491260,1 +502197,0 +972927,1 +740869,1 +519113,0 +573875,1 +858962,0 +528969,-1 +570551,1 +883034,1 +169392,1 +269695,2 +47454,1 +391822,1 +628083,2 +644328,2 +436950,1 +26551,2 +647139,2 +179680,2 +363692,0 +483048,1 +540983,1 +788092,1 +205106,2 +785011,1 +33426,1 +338299,0 +240223,2 +514220,2 +767021,1 +458376,2 +871950,1 +648034,2 +302254,2 +638987,1 +543051,1 +518964,2 +205963,1 +895438,2 +838812,2 +396598,1 +9385,0 +53503,-1 +857881,1 +899149,1 +983942,1 +717325,1 +193613,2 +287333,1 +242144,1 +966042,0 +167148,1 +3451,1 +223188,1 +571929,1 +484537,1 +261371,0 +333480,1 +717182,1 +18369,1 +239212,0 +713047,1 +896499,1 +19234,2 +576063,2 +865976,1 +865858,2 +214133,1 +7500,1 +461792,2 +909060,1 +896636,2 +923236,1 +363209,1 +943350,1 +23718,1 +732753,1 +436406,1 +226552,0 +995707,1 +860633,2 +283389,1 +828750,1 +750985,1 +10691,1 +968989,2 +283169,1 +479441,1 +49000,1 +895112,1 +89198,1 +731498,1 +873492,1 +748686,1 +493732,2 +666504,0 +291794,0 +591070,1 +399545,1 +898448,1 +655033,1 +653524,2 +933765,0 +98740,1 +701254,1 +460181,0 +750030,1 +745890,1 +633094,2 +885609,1 +642211,1 +893929,0 +233330,1 +187583,1 +1778,1 +468742,0 +757706,1 +197401,0 +145207,0 +969010,1 +93645,1 +262801,1 +874333,1 +593952,2 +874815,1 +792528,2 +96606,1 +104081,1 +951844,1 +240191,1 +741518,1 +490704,1 +787476,0 +356997,0 +804006,1 +873876,-1 +623346,1 +987897,1 +914419,1 +412157,1 +2028,0 +605102,1 +749238,1 +307392,1 +397422,1 +338237,1 +80541,0 +449512,1 +294833,0 +413620,2 +387693,1 +450373,1 +589886,-1 +516932,1 +581483,1 +346955,0 +734933,1 +288357,1 +303455,0 +224575,1 +576795,2 +15284,1 +573941,2 +919384,1 +719494,1 +24551,1 +183366,2 +336178,2 +634250,1 +609196,0 +974078,1 +839965,2 +232062,1 +924312,1 +575336,1 +124851,2 +806164,1 +732761,1 +500599,1 +412117,2 +906349,1 +913803,2 +393406,1 +189856,1 +310554,2 +919892,2 +569801,1 +817363,2 +440342,1 +720834,1 +406014,1 +142478,1 +759688,2 +371839,1 +628608,2 +488708,1 +498562,2 +43007,0 +466461,2 +103442,1 +685532,1 +488405,1 +681057,2 +353092,0 +284569,1 +395034,2 +366099,2 +577799,1 +854121,1 +264258,1 +349261,0 +122095,2 +910800,2 +638147,2 +101951,2 +309070,0 +570235,1 +59157,1 +669686,1 +558941,1 +51268,1 +991319,1 +514870,0 +52275,1 +44216,1 +326352,2 +930456,1 +837886,1 +425286,1 +354627,2 +590555,2 +540462,1 +981998,2 +135020,-1 +981661,1 +805343,1 +776590,1 +700547,1 +575771,1 +810435,1 +107181,2 +122281,-1 +556956,0 +77126,2 +290670,1 +517369,1 +808687,1 +114203,2 +15842,1 +102935,2 +23002,2 +404865,2 +567081,1 +211891,1 +619002,1 +684757,1 +179146,-1 +935520,-1 +824330,-1 +150637,2 +119377,1 +768227,1 +149919,2 +669199,1 +185722,1 +336736,2 +544432,2 +461608,1 +543004,2 +34682,1 +92880,0 +215890,1 +888835,2 +181401,0 +189154,1 +872090,2 +845259,1 +218304,2 +567409,1 +399514,1 +672209,0 +4403,1 +445740,1 +464276,1 +886163,0 +187666,1 +160670,1 +285723,1 +272753,1 +170877,1 +698764,1 +132467,1 +39110,2 +606934,-1 +17095,1 +13523,1 +462723,1 +389239,1 +587505,2 +690523,2 +253146,2 +167461,1 +716193,1 +754194,1 +937593,2 +795201,-1 +941129,1 +951756,1 +541050,2 +676119,1 +383346,2 +318732,1 +177261,1 +374551,1 +335242,-1 +669156,-1 +147257,1 +631258,2 +577768,1 +556221,1 +172964,1 +767518,2 +905221,1 +937706,0 +676551,0 +411028,1 +968883,1 +65085,1 +974176,0 +281304,2 +860156,1 +885791,1 +174569,1 +674895,1 +70824,1 +604290,-1 +927676,1 +731245,1 +143452,1 +342692,2 +871087,2 +761613,1 +798311,-1 +635795,2 +700014,1 +791049,0 +279700,1 +507646,1 +444407,1 +465916,1 +134834,1 +852541,1 +962364,1 +176463,1 +992510,1 +975849,1 +420299,0 +704863,1 +421447,1 +935240,2 +461836,1 +819440,2 +419330,1 +535890,2 +841407,1 +826224,1 +546860,1 +624360,1 +587419,1 +389504,0 +860824,2 +793887,2 +945522,1 +436399,1 +797196,1 +642292,1 +258901,2 +233757,2 +875599,2 +860413,2 +922066,1 +719718,1 +667210,1 +954662,1 +593300,0 +491493,2 +943128,1 +670317,-1 +550089,2 +152533,0 +725903,2 +685530,1 +679978,1 +247717,-1 +803475,2 +776944,1 +232693,1 +752730,2 +526205,1 +831699,1 +739965,2 +251342,1 +718512,1 +816966,2 +903146,1 +891315,1 +787078,1 +21589,0 +322283,1 +867456,1 +22847,1 +520018,1 +767439,1 +808874,1 +257679,0 +635476,1 +336477,2 +398328,1 +386898,1 +559407,2 +658452,2 +64700,0 +636423,-1 +906223,1 +773709,2 +441850,1 +133043,-1 +553119,-1 +632138,0 +320905,1 +975115,1 +38430,1 +733245,2 +384813,-1 +464528,2 +786000,1 +684182,0 +221073,1 +965970,1 +691400,-1 +691422,1 +63149,1 +94816,-1 +613499,0 +910979,-1 +50617,0 +529874,2 +144763,2 +477049,0 +718864,1 +799336,2 +429124,0 +16399,1 +389891,1 +803662,1 +45923,1 +260020,1 +780749,2 +618441,0 +139969,-1 +723808,1 +188951,0 +609927,2 +98321,1 +513818,1 +943916,2 +847508,1 +425538,1 +231808,-1 +618984,1 +810170,-1 +952783,2 +310439,1 +955627,0 +201714,1 +253507,0 +336728,1 +739980,1 +652034,1 +786046,1 +338331,2 +978337,2 +559940,1 +930566,0 +619635,1 +44405,1 +436944,0 +609023,0 +888451,2 +565182,1 +230971,1 +966471,1 +633801,1 +596337,2 +434014,1 +876617,1 +60545,1 +971322,2 +634921,0 +851954,1 +717758,1 +421679,2 +890281,1 +665551,1 +356135,1 +963332,1 +574829,1 +81371,2 +603906,0 +468076,2 +659606,2 +97195,1 +493580,2 +880721,2 +96026,-1 +252046,1 +856130,1 +472832,-1 +209090,2 +609183,1 +514259,0 +681249,2 +25872,2 +408169,2 +905925,1 +459544,2 +913419,2 +71764,0 +92104,1 +74545,2 +870533,0 +393229,2 +686549,1 +299868,2 +725140,1 +661441,2 +474203,2 +242949,1 +179621,2 +537577,2 +847478,1 +884263,1 +793221,1 +819944,1 +490010,0 +939135,2 +323575,1 +893288,0 +116830,2 +362231,2 +471844,-1 +176547,1 +565202,0 +329502,0 +638907,2 +614055,1 +51534,2 +945333,1 +122940,1 +469138,0 +880749,2 +778694,1 +104364,0 +368719,2 +193727,2 +665192,1 +565739,2 +343223,1 +279885,0 +892105,1 +140680,1 +790521,1 +412336,1 +445997,2 +779795,2 +681616,1 +367686,2 +506370,2 +132168,2 +759108,0 +607329,0 +833214,2 +989639,1 +381419,0 +152267,1 +84283,0 +983881,1 +657049,2 +460356,2 +700177,1 +724623,1 +269340,1 +535460,1 +552058,2 +163554,2 +243130,1 +943320,1 +931056,2 +574005,1 +321998,1 +313038,1 +651974,1 +744160,1 +911544,0 +28314,1 +420118,2 +865942,1 +782992,1 +175154,1 +65902,-1 +787883,2 +791692,1 +207757,1 +976442,1 +758755,1 +867625,1 +607007,0 +938596,2 +994970,1 +528695,1 +534510,1 +661942,1 +715352,2 +786120,2 +840591,1 +649191,1 +229841,1 +783682,0 +218198,1 +446581,1 +936827,2 +152582,1 +728227,2 +11920,2 +622280,1 +735540,-1 +9279,1 +757282,1 +904522,1 +347211,2 +820479,2 +756206,1 +678920,1 +440259,2 +559157,1 +406889,2 +388681,1 +88041,2 +854980,1 +922520,-1 +213898,2 +145369,0 +860687,2 +680519,0 +321220,1 +882331,0 +907463,1 +335976,-1 +622805,1 +349122,2 +324368,1 +581146,1 +455964,2 +160166,2 +580239,2 +18671,1 +716376,2 +979435,0 +252476,1 +838635,2 +846835,1 +981163,1 +236535,2 +927987,1 +710593,1 +610576,1 +758414,1 +18822,1 +424206,0 +154236,0 +729958,1 +407521,1 +824810,2 +554576,2 +996125,1 +508149,1 +280895,1 +110710,1 +583480,1 +667841,0 +949978,1 +396471,-1 +837179,1 +737124,1 +294524,2 +641827,2 +416947,-1 +515505,0 +588319,2 +604614,1 +446458,1 +37360,2 +704078,-1 +544705,1 +63842,0 +901931,1 +269577,1 +138417,0 +426497,1 +674947,1 +247478,0 +209270,1 +992108,2 +255923,1 +972520,-1 +942975,2 +664932,2 +799405,2 +937887,2 +173729,0 +485359,1 +134379,1 +760079,2 +398627,1 +32929,1 +299783,2 +44735,1 +728497,-1 +183312,2 +94753,1 +14623,1 +353731,1 +297818,0 +713609,1 +362414,1 +34025,1 +704233,1 +579173,1 +591696,2 +315835,0 +270023,1 +926733,0 +30642,1 +665957,2 +28337,1 +417278,0 +50742,1 +358351,1 +200711,0 +389793,1 +454424,1 +717217,1 +294907,1 +198716,2 +606121,2 +970000,2 +398295,1 +849951,1 +971806,1 +500923,2 +307702,2 +960324,2 +645317,0 +29213,2 +477346,1 +299162,0 +544515,1 +880298,1 +612332,-1 +766985,1 +361680,0 +302664,2 +200394,1 +447949,1 +99648,1 +928859,1 +83796,1 +925802,1 +294633,2 +303648,2 +314580,2 +572088,1 +200392,2 +641822,2 +385091,0 +556789,1 +203724,1 +296730,1 +916865,1 +435206,1 +797442,0 +586862,1 +544527,1 +342507,-1 +159414,0 +873750,1 +240786,1 +912315,1 +430947,1 +502009,1 +406685,2 +783825,2 +994307,1 +826534,2 +958248,1 +965880,2 +641657,1 +250465,2 +447013,2 +855359,1 +807064,1 +986805,0 +461201,2 +488707,1 +895905,1 +801388,2 +34910,-1 +242159,0 +45534,1 +976055,0 +937872,1 +838818,2 +590122,2 +21289,2 +762446,1 +164145,1 +397452,2 +95291,0 +870694,1 +419126,2 +314286,2 +951661,-1 +187089,1 +375759,-1 +679611,-1 +422353,1 +886918,0 +678095,0 +839278,2 +379592,1 +738080,-1 +336714,2 +1816,0 +657388,-1 +683321,0 +477660,1 +223453,1 +421643,1 +43719,1 +381965,1 +294032,1 +109220,1 +874526,2 +440019,1 +927947,0 +574554,1 +128567,1 +378707,-1 +592854,2 +456458,1 +962041,1 +750953,1 +52542,1 +122796,1 +187289,0 +265431,1 +828671,2 +244357,1 +753421,2 +204521,1 +14384,2 +938581,2 +739493,0 +272480,-1 +293270,1 +407620,2 +221779,1 +700583,1 +491385,1 +648006,2 +271260,2 +68436,1 +7675,2 +820467,2 +957518,2 +192926,1 +970423,2 +960163,2 +458966,1 +644790,2 +85869,1 +775140,1 +802518,1 +110473,1 +640417,1 +280223,-1 +494357,-1 +174044,2 +731471,1 +3723,2 +3202,1 +549109,0 +873234,2 +580874,1 +56879,1 +608787,0 +151713,2 +457952,0 +155514,2 +572568,0 +471996,1 +749681,1 +85658,1 +509974,1 +45633,0 +163316,1 +168820,0 +540509,-1 +203774,2 +589068,1 +930997,1 +327726,1 +673125,1 +470462,2 +275391,1 +723919,0 +446680,2 +141194,2 +583867,1 +302930,2 +757862,1 +649240,1 +551327,1 +162535,-1 +715022,1 +356711,1 +279120,1 +564,0 +121545,1 +242286,1 +625921,1 +216342,1 +534568,-1 +173469,1 +451677,0 +565007,1 +858239,2 +707167,1 +581249,1 +833702,-1 +14926,2 +448775,1 +864201,2 +15881,2 +57888,2 +525539,2 +672859,0 +297051,1 +413953,1 +20613,-1 +783978,1 +44946,2 +739146,1 +242763,0 +427532,2 +482620,0 +338775,2 +963222,1 +853096,0 +178136,2 +507896,2 +872710,-1 +756649,1 +427921,2 +236300,0 +472843,2 +585050,1 +722000,2 +652221,1 +157054,1 +758676,2 +842465,2 +212791,1 +695776,-1 +699957,2 +232164,1 +517116,1 +930064,1 +576283,-1 +265567,2 +17842,1 +798939,1 +168339,1 +106814,1 +825225,1 +360538,1 +612554,1 +853657,-1 +98480,0 +177484,1 +777232,-1 +768047,2 +881405,1 +671404,1 +329427,1 +184153,1 +859092,0 +456205,2 +280330,2 +203075,1 +272683,1 +102279,1 +251364,-1 +691018,2 +171437,2 +584523,1 +352915,1 +938918,1 +118705,2 +362862,0 +162835,1 +684924,1 +192051,2 +302733,1 +338757,2 +964326,1 +84507,1 +785363,1 +504198,0 +232387,1 +169990,1 +191543,2 +746266,1 +389694,1 +202010,1 +693828,2 +234488,-1 +933815,2 +536804,1 +568070,1 +757915,2 +214113,1 +430081,1 +219191,0 +154202,-1 +265504,1 +192317,2 +231203,1 +921692,1 +582394,0 +103419,1 +469177,0 +67327,1 +409807,1 +576187,1 +550239,1 +648313,1 +375610,0 +288718,0 +661607,2 +440008,1 +937627,1 +721289,1 +287145,0 +281673,1 +886513,0 +407091,1 +42518,2 +742525,1 +118175,1 +339939,2 +746758,1 +47529,1 +750212,0 +162028,0 +937194,0 +491132,1 +474018,1 +361042,2 +799826,1 +513377,1 +329632,2 +994041,1 +721268,1 +93850,1 +610899,1 +418447,2 +502706,1 +910420,2 +103571,0 +338728,2 +143979,1 +908115,1 +224771,1 +203179,0 +784900,0 +795672,2 +197824,1 +158701,1 +863844,1 +678273,2 +291587,2 +380473,0 +144028,2 +296369,0 +100221,-1 +353354,0 +74660,-1 +359734,2 +593537,1 +461573,0 +787803,1 +498737,0 +700957,2 +504538,2 +736901,2 +651995,1 +853083,1 +582931,1 +356177,1 +140282,1 +615437,2 +59916,0 +358757,1 +144672,1 +239716,1 +661831,1 +795858,1 +124164,2 +129832,1 +112460,1 +242681,1 +160144,1 +422103,-1 +546746,1 +219843,1 +151006,1 +190868,2 +994821,1 +531825,1 +35242,1 +858151,2 +432143,2 +12320,2 +831941,-1 +584499,0 +524383,1 +795138,1 +152972,1 +703808,0 +620420,2 +465164,2 +384067,1 +231989,1 +946557,0 +154720,0 +948569,2 +435694,1 +300631,1 +702259,2 +881456,1 +870399,1 +997972,1 +662440,2 +733984,1 +578706,1 +232381,1 +20967,1 +277542,1 +191551,1 +11712,1 +729970,1 +937412,2 +515785,1 +27412,1 +626724,1 +718433,1 +467242,1 +127677,1 +515849,2 +962814,1 +73851,-1 +448294,2 +388958,-1 +88600,2 +815016,1 +342255,1 +315500,1 +397781,1 +497256,0 +900685,1 +895026,1 +837882,-1 +857718,0 +645914,0 +429221,1 +733705,1 +644143,2 +168585,1 +823781,2 +732801,1 +484639,2 +144983,1 +558804,-1 +78602,1 +509354,1 +59464,2 +702425,2 +194139,1 +354470,1 +697242,2 +959223,1 +925997,-1 +964409,-1 +552441,0 +704720,2 +637471,1 +392090,2 +429352,1 +418244,1 +212699,1 +433115,1 +596894,1 +744616,1 +700389,-1 +499577,1 +939324,1 +444327,1 +899081,1 +562893,1 +430444,2 +590926,2 +301275,0 +341119,1 +629890,-1 +292105,0 +598093,2 +578681,2 +450187,1 +806371,2 +377791,-1 +552683,1 +310662,2 +493968,1 +213428,1 +323918,1 +659778,1 +931821,2 +466144,1 +485827,1 +576534,1 +880020,1 +983767,1 +307996,1 +901703,2 +787373,0 +488684,1 +138535,2 +116502,1 +418892,1 +695046,1 +601032,1 +260117,1 +84408,2 +438427,1 +260358,0 +564732,1 +727187,2 +126996,1 +166715,0 +941101,2 +963211,1 +206732,1 +754664,1 +991119,0 +573773,1 +733913,2 +324298,1 +286589,-1 +452072,1 +574560,2 +582553,1 +387930,2 +106633,1 +209318,1 +247440,0 +645123,2 +632243,2 +41005,1 +510964,1 +126015,2 +925313,-1 +946901,1 +645629,2 +568781,1 +966168,1 +164600,2 +76245,1 +54719,1 +7509,1 +434728,2 +68985,2 +889229,1 +617853,1 +230037,1 +598028,0 +934017,2 +204685,0 +275992,2 +365621,0 +71091,1 +972408,2 +109470,2 +79549,1 +362284,1 +87027,1 +7240,1 +703452,0 +145197,0 +1945,-1 +712767,1 +511943,1 +228503,2 +675038,0 +850882,1 +157092,1 +993050,2 +190667,1 +56081,0 +320095,1 +124432,1 +929212,1 +770494,2 +759292,0 +726964,1 +355876,1 +932500,2 +251875,1 +147687,2 +124352,1 +567215,1 +47328,1 +384546,2 +714132,1 +744069,2 +904328,1 +174271,1 +946120,0 +340483,1 +280836,-1 +44911,2 +438926,1 +502640,-1 +613771,1 +295236,1 +651182,0 +113815,2 +70411,-1 +770580,1 +425733,2 +952906,1 +859485,2 +567060,1 +533881,0 +470525,2 +848469,1 +568784,2 +877185,1 +168726,1 +587093,1 +987387,2 +342669,2 +725378,1 +487075,1 +344476,1 +332836,1 +767844,1 +262960,1 +71648,1 +529828,0 +980495,1 +389168,1 +981338,1 +795799,0 +976940,2 +96321,1 +41753,-1 +194110,-1 +504128,1 +780124,1 +356023,-1 +398872,1 +345019,2 +776169,2 +359849,1 +311294,0 +618627,0 +155605,1 +397357,1 +880594,1 +282389,1 +8701,1 +646950,2 +701935,1 +867236,2 +169205,1 +677356,-1 +551956,2 +239983,1 +829555,2 +90918,2 +604275,1 +172579,1 +9475,1 +924591,1 +676803,1 +715117,-1 +795553,0 +672587,0 +273880,1 +29004,2 +596291,2 +594134,2 +684013,1 +262766,1 +332492,1 +33218,1 +511329,0 +626443,1 +76165,1 +210055,1 +145456,1 +131138,0 +864046,1 +226831,2 +641620,0 +121792,1 +593310,1 +998283,1 +366049,2 +790955,0 +484959,1 +518884,1 +444593,1 +285948,1 +262411,1 +544648,1 +181962,1 +29667,1 +101815,1 +484679,2 +165310,1 +991755,-1 +753084,1 +645827,1 +797101,1 +652094,1 +415350,1 +988696,1 +254341,0 +619928,-1 +733556,1 +874389,0 +889535,1 +18492,1 +212156,1 +446936,2 +99337,1 +366122,2 +857685,1 +752290,0 +784519,1 +841029,1 +818114,1 +391759,-1 +218217,2 +514458,2 +725621,0 +277280,0 +960351,1 +497022,1 +673763,2 +576817,1 +113307,1 +623916,1 +650738,-1 +647394,1 +764007,-1 +732898,1 +391659,1 +175838,1 +467890,1 +648786,0 +192616,-1 +280107,1 +231690,2 +760479,1 +220087,1 +27968,2 +435534,1 +906542,1 +682632,2 +807456,1 +985511,1 +531101,1 +405436,-1 +477213,1 +440967,1 +334834,0 +906815,0 +478680,1 +184856,1 +527493,1 +562159,0 +244745,1 +642003,2 +357986,2 +46480,0 +49925,2 +979680,2 +662792,2 +75837,1 +943024,0 +576033,1 +345642,2 +634597,1 +743366,2 +573632,2 +292228,2 +843750,1 +510205,2 +709542,1 +228488,1 +922831,1 +579403,1 +395851,2 +440675,-1 +714011,0 +679588,0 +154261,1 +701991,1 +78214,2 +807282,2 +668050,2 +734739,2 +385189,1 +413920,1 +651019,1 +255286,1 +258396,1 +931784,2 +79989,0 +628610,2 +439993,1 +898414,0 +681341,2 +150769,2 +710936,1 +616628,1 +811994,-1 +556747,2 +843257,1 +99188,1 +427006,0 +97899,2 +706552,2 +717134,1 +920814,1 +583327,1 +738594,1 +506262,1 +63123,1 +929360,1 +741854,2 +305707,1 +837793,2 +742000,2 +918334,1 +956244,1 +493656,1 +155104,1 +598173,1 +693350,1 +858955,1 +648396,1 +381704,1 +761694,-1 +880806,1 +227080,2 +623268,-1 +983828,1 +802279,2 +987980,1 +211241,2 +265042,1 +174321,1 +461455,1 +399200,2 +52238,1 +619713,1 +219773,2 +276473,1 +868018,2 +758458,2 +929280,1 +589155,1 +266361,1 +914494,1 +560119,1 +486451,1 +881623,1 +219667,1 +380317,1 +221371,1 +37074,1 +713540,1 +548241,1 +611865,1 +987116,0 +322192,2 +216069,1 +629946,1 +13575,1 +811195,2 +265187,1 +664758,0 +682704,1 +403445,1 +254631,1 +616375,-1 +772787,2 +964612,1 +126727,1 +804398,-1 +904502,2 +771068,1 +996118,2 +48173,1 +210227,1 +236789,1 +70995,2 +706649,1 +785152,1 +905971,1 +895249,1 +637993,1 +626143,0 +181536,0 +462251,1 +146057,1 +186483,1 +955391,2 +627421,1 +677657,2 +109807,2 +2354,-1 +596661,2 +697797,2 +449687,2 +89035,1 +934819,1 +474445,1 +499061,1 +222175,1 +816137,2 +958446,2 +451394,1 +988130,1 +39619,0 +531092,1 +970953,1 +6685,2 +57260,1 +339478,0 +854673,1 +391664,1 +105187,1 +489312,2 +605384,1 +345792,1 +498080,1 +442883,1 +366507,0 +268424,2 +548053,1 +816356,1 +319790,2 +406053,2 +749147,1 +860970,1 +848457,1 +163149,1 +133966,1 +800062,1 +702964,2 +44870,0 +370116,1 +264,0 +691694,2 +386234,-1 +622990,1 +761421,1 +550240,1 +18557,2 +880977,1 +900311,1 +290640,1 +834981,-1 +805937,1 +5660,1 +937229,2 +602273,1 +756623,2 +314251,1 +859126,1 +625840,1 +628722,1 +31683,2 +637301,2 +861106,1 +962504,1 +413768,1 +509887,2 +252731,1 +795288,1 +710479,0 +174945,1 +579830,2 +229717,-1 +144271,2 +379189,0 +290199,2 +200446,1 +128390,1 +699939,-1 +108841,1 +312441,2 +864148,1 +950584,1 +961196,1 +685323,1 +805401,2 +698939,1 +814000,1 +58299,1 +23273,0 +995061,1 +676193,1 +546056,1 +655182,1 +69773,2 +587608,2 +17138,-1 +280642,1 +371093,1 +779346,1 +818106,1 +318382,1 +767509,1 +777623,1 +107387,1 +130632,1 +187272,1 +566063,1 +286832,-1 +63870,2 +128230,1 +197323,2 +716749,2 +957299,1 +274019,1 +203658,1 +191203,1 +267003,2 +716822,1 +375666,1 +823132,2 +377725,1 +18572,1 +356855,-1 +105902,2 +827866,1 +478653,1 +349139,2 +68048,1 +635269,0 +363713,0 +87799,0 +915713,1 +609213,-1 +1868,2 +777800,1 +574642,0 +858064,2 +638221,1 +480115,1 +596549,2 +573227,-1 +667910,1 +269505,1 +681429,1 +980390,1 +904230,1 +261374,1 +889016,-1 +1873,0 +427871,1 +574530,1 +602979,1 +347948,2 +282595,0 +412481,1 +380725,1 +63535,1 +734774,1 +179529,1 +633917,1 +894682,1 +158195,1 +763806,2 +848639,-1 +194609,1 +865198,1 +565875,1 +496725,1 +953477,1 +630968,1 +737186,1 +526033,1 +404501,0 +558384,1 +904548,1 +328893,-1 +455263,2 +411075,1 +370060,1 +116665,0 +432933,1 +608567,1 +908282,1 +66979,1 +599838,2 +543212,-1 +885689,1 +443882,1 +876929,1 +887643,2 +624540,2 +34911,1 +580022,1 +198211,1 +630440,2 +542738,2 +871903,1 +716228,2 +406230,1 +668064,2 +314274,1 +257686,2 +101227,1 +25290,2 +375891,1 +34010,2 +40365,1 +853758,1 +788125,2 +213338,1 +180139,1 +55654,0 +834951,1 +627875,2 +251339,2 +440126,1 +272326,2 +644600,1 +398471,1 +802594,1 +573749,2 +52505,1 +434584,2 +438631,1 +427939,1 +915148,1 +860272,1 +368060,-1 +774835,2 +354242,2 +570617,1 +70495,1 +135174,1 +682907,2 +372076,2 +367591,1 +815570,2 +629181,1 +829720,-1 +221249,1 +819991,1 +237193,1 +541924,1 +27354,1 +91111,1 +182572,1 +84978,1 +353319,2 +760882,1 +166329,2 +640783,1 +328610,1 +7783,2 +610090,1 +880345,1 +259391,1 +254046,1 +483168,1 +634613,2 +794011,1 +864337,1 +804186,2 +188819,1 +133114,1 +302105,1 +879752,1 +536387,1 +193423,1 +657857,-1 +380045,1 +594314,1 +570237,1 +670097,1 +918209,0 +837336,-1 +74832,1 +599202,2 +345439,1 +597691,1 +623359,2 +154926,1 +543345,1 +47506,0 +968726,1 +417810,0 +143490,1 +378655,2 +946596,1 +35342,2 +622888,1 +832165,1 +192832,1 +97549,1 +495487,1 +766048,1 +939033,1 +138800,1 +228761,1 +574754,1 +626985,2 +433348,-1 +192355,1 +963107,1 +999981,1 +617958,1 +952959,1 +959362,1 +192609,1 +66246,1 +358555,1 +813493,1 +382756,1 +199914,2 +266290,2 +553116,1 +993994,1 +660130,2 +589516,1 +46337,1 +514759,1 +162622,1 +644185,0 +739106,1 +971561,1 +659698,2 +151215,1 +416432,1 +769917,-1 +788844,1 +492700,1 +425952,1 +235477,2 +527302,1 +958454,1 +602185,1 +532355,1 +421607,1 +479614,2 +438859,1 +543088,1 +462257,2 +590371,1 +10969,0 +589424,-1 +464478,1 +429596,1 +798448,0 +23909,1 +376272,0 +923193,0 +823747,1 +457355,1 +347052,2 +66502,-1 +299715,1 +312547,1 +826591,1 +230066,1 +907342,2 +185909,2 +964603,1 +652858,1 +673484,0 +659850,1 +325061,2 +91808,0 +123801,2 +513943,1 +860175,1 +815056,1 +486326,2 +855450,0 +240653,1 +757775,1 +650557,2 +610842,1 +399725,1 +348551,1 +83045,2 +70637,0 +237678,1 +222133,1 +865701,1 +68152,0 +767679,0 +389088,0 +575093,2 +755276,1 +125235,2 +117833,1 +850199,1 +665252,1 +354103,2 +85482,1 +96215,1 +420392,2 +836749,1 +96112,1 +442655,2 +493632,2 +250104,2 +431638,2 +260943,-1 +28195,0 +228403,1 +434759,0 +609858,1 +726626,1 +836744,1 +387382,0 +566453,2 +43761,0 +815572,1 +127076,1 +350807,0 +37942,1 +367769,1 +374290,0 +181464,2 +806379,0 +61948,1 +531906,1 +658791,1 +322278,1 +901920,-1 +963328,0 +405596,1 +11922,1 +74085,2 +616402,1 +280716,2 +798339,1 +133412,0 +739578,1 +480835,1 +529150,1 +174969,2 +278166,1 +773548,1 +737855,2 +410542,2 +211669,1 +423622,2 +708256,1 +448983,1 +186031,1 +169019,0 +101779,2 +650180,1 +926550,1 +138491,1 +391450,2 +934166,1 +697839,1 +720023,2 +971780,1 +748213,1 +926054,0 +308665,0 +210959,0 +757381,1 +519967,1 +517695,0 +828619,1 +786684,0 +654141,2 +26799,1 +291929,2 +482170,1 +853745,1 +300939,2 +510814,1 +167713,2 +265139,1 +155267,1 +228872,2 +384335,1 +813193,0 +38282,2 +183876,1 +720812,1 +109534,1 +259492,1 +246290,-1 +763749,1 +642286,1 +867952,2 +8216,1 +320110,0 +21464,1 +310567,0 +615005,1 +53859,2 +297063,2 +264190,1 +443998,0 +757742,1 +754862,1 +725854,1 +890956,1 +321055,2 +634254,1 +235754,2 +558955,1 +65287,0 +484377,1 +10455,0 +286352,1 +113454,1 +461270,1 +488570,1 +887186,2 +758368,1 +814188,1 +8804,2 +919559,1 +902551,1 +836655,1 +259266,-1 +843290,1 +89878,0 +177737,1 +709915,1 +538854,1 +916160,1 +226541,1 +138347,1 +189907,1 +835957,1 +2453,1 +288234,2 +892628,1 +347594,2 +235588,1 +468709,-1 +475853,1 +508767,0 +141974,2 +505807,2 +966179,-1 +800564,2 +897987,1 +566665,1 +31082,1 +893407,1 +497793,1 +271869,0 +952902,1 +249204,1 +425573,2 +857643,2 +970991,1 +820814,-1 +771165,1 +522475,0 +134378,2 +208843,2 +781292,2 +488788,1 +56755,1 +677231,2 +430403,1 +492666,1 +690704,1 +86820,2 +729700,1 +910595,1 +627411,2 +544675,2 +236936,2 +707145,-1 +723320,2 +534852,1 +585851,1 +789872,1 +489844,-1 +626956,2 +520654,1 +466279,-1 +615839,1 +340614,1 +578623,1 +986836,1 +699946,0 +491981,1 +302985,0 +821321,1 +872096,0 +83112,1 +916902,2 +74318,2 +41781,1 +108426,2 +540514,1 +350015,1 +504130,1 +569630,1 +48076,1 +582428,1 +678581,2 +933542,2 +204455,1 +483251,2 +101551,1 +596456,1 +98551,1 +136985,2 +378502,2 +661017,1 +631081,1 +397495,2 +429301,2 +653053,2 +873776,1 +85162,1 +721865,1 +142098,2 +957871,1 +885270,2 +63750,1 +258944,2 +86728,2 +70534,1 +790364,1 +643306,0 +298528,1 +240070,2 +445578,0 +678471,1 +112618,2 +838761,-1 +604353,1 +355764,1 +829347,2 +157025,0 +528161,-1 +439782,1 +412030,1 +764877,0 +53914,1 +197159,1 +87861,1 +626983,1 +852887,1 +130659,1 +532269,1 +721124,1 +207930,1 +555759,1 +971279,1 +303159,-1 +507693,2 +465871,1 +934290,2 +182683,1 +825197,1 +436717,0 +866022,1 +113016,0 +244750,0 +502527,1 +162559,0 +463464,1 +763405,0 +18702,1 +238567,2 +704788,1 +651389,1 +744950,2 +129143,1 +384556,1 +76106,1 +256890,2 +520293,1 +889555,1 +746129,0 +427951,2 +731007,1 +429288,2 +20860,1 +993045,1 +176478,1 +895762,0 +569333,1 +212305,1 +725658,1 +728982,1 +933352,1 +484356,1 +255786,1 +829635,1 +334593,1 +188684,1 +815072,1 +442122,1 +36020,0 +421230,2 +627623,1 +980821,0 +781008,-1 +645631,1 +163845,2 +949415,2 +284280,1 +961923,1 +138561,1 +935550,2 +832262,1 +712116,2 +713337,2 +784039,1 +702165,1 +738465,0 +132050,1 +499967,1 +367567,2 +623626,1 +825528,1 +375901,1 +810713,0 +712277,0 +102007,1 +187527,1 +378155,1 +634492,1 +675346,1 +901159,1 +466180,1 +915897,2 +804521,1 +145454,2 +178673,2 +617471,1 +875322,1 +129150,0 +622678,1 +21744,1 +704991,1 +519115,2 +380592,2 +268542,1 +291316,-1 +338268,1 +239293,1 +531330,-1 +300066,1 +50540,1 +113908,0 +585990,2 +752092,1 +79291,1 +347916,-1 +864940,0 +7787,1 +629207,2 +575917,1 +432436,0 +597885,0 +173756,-1 +867822,1 +278415,0 +528119,2 +118755,-1 +356576,1 +748080,1 +51429,1 +698409,1 +388085,1 +307283,1 +704405,1 +812733,0 +717339,2 +293579,-1 +406738,0 +228132,0 +286368,1 +577734,1 +135143,2 +620854,-1 +369683,-1 +323400,0 +417301,1 +436059,2 +721249,2 +773767,2 +333656,0 +568768,2 +43272,2 +938568,1 +172948,1 +983276,1 +803312,1 +76720,1 +511620,2 +512613,0 +984860,2 +95573,1 +850914,1 +482213,1 +269621,2 +193531,0 +595368,2 +107866,2 +469303,0 +818727,2 +635858,2 +965686,0 +299643,0 +624867,1 +304109,1 +88015,2 +26930,1 +764165,0 +830407,0 +533945,2 +832256,1 +730474,2 +142120,2 +52465,1 +970804,1 +415836,1 +605423,1 +472333,-1 +248830,2 +47690,-1 +816723,2 +278217,1 +204745,1 +100347,1 +17989,1 +385330,1 +659215,-1 +575962,2 +41877,2 +147107,0 +12509,1 +873931,0 +961460,1 +991948,2 +882799,1 +597075,0 +397560,2 +922131,0 +516390,0 +36679,2 +355749,2 +111961,0 +333377,2 +519677,1 +292196,-1 +200571,0 +532693,1 +696374,2 +36398,1 +963871,2 +760952,0 +507103,1 +243383,1 +51662,2 +788143,2 +193781,1 +102407,-1 +76051,2 +41988,2 +29210,0 +733080,2 +985373,0 +872691,1 +49560,-1 +198799,1 +601351,1 +767895,1 +88166,0 +272120,2 +761653,1 +439734,0 +225986,-1 +271947,-1 +20794,1 +172350,1 +93349,1 +207577,1 +193393,1 +919838,1 +303267,1 +215238,0 +753001,2 +860932,1 +731781,0 +772579,0 +945782,1 +565594,2 +668399,1 +187894,2 +24733,1 +127237,0 +57546,1 +813037,1 +365946,1 +486202,0 +226177,0 +83339,2 +475772,1 +733562,1 +672377,2 +325473,2 +960228,2 +338453,0 +303865,1 +984308,1 +176390,0 +110266,1 +723823,2 +713426,1 +65837,1 +959568,1 +259915,2 +414319,2 +734239,1 +951585,1 +991551,1 +538053,1 +159032,1 +760242,1 +511303,2 +205139,1 +713411,1 +404299,1 +520934,2 +962258,1 +589683,0 +879487,2 +595853,1 +893537,1 +510701,1 +506168,2 +935401,1 +172217,1 +107737,2 +843898,1 +75963,2 +792583,0 +788850,1 +171453,1 +721682,2 +504393,1 +457122,1 +967876,1 +778564,1 +384288,2 +918649,2 +932202,1 +596826,1 +533476,2 +510491,1 +542316,1 +994967,1 +19929,1 +600094,2 +415619,2 +954438,1 +68040,0 +621500,0 +219085,2 +511936,1 +24310,1 +92102,1 +606534,2 +71316,2 +680063,1 +322709,1 +489062,1 +508651,1 +727703,1 +4932,1 +962717,-1 +261801,0 +235490,0 +526141,1 +464597,1 +402932,1 +874966,1 +38647,1 +874952,0 +45839,2 +11704,2 +415601,2 +62116,2 +857982,-1 +270552,0 +916824,1 +195763,1 +580302,1 +746004,0 +21524,2 +756045,2 +291523,1 +168193,1 +951740,0 +719914,0 +221414,1 +46653,1 +682720,1 +358950,0 +287098,-1 +98062,2 +129794,1 +881908,2 +346851,1 +420600,-1 +496637,1 +184565,0 +806189,-1 +309088,1 +377531,2 +767728,1 +366827,1 +268773,2 +434121,0 +416182,1 +768348,1 +451039,-1 +141243,0 +400389,1 +984894,1 +844684,-1 +413599,-1 +366303,0 +934357,0 +710000,2 +76567,1 +273418,0 +169343,0 +158615,1 +568416,1 +529243,1 +951670,1 +163851,2 +111020,0 +222806,1 +504194,1 +403341,2 +409964,1 +164886,1 +575926,1 +50353,2 +511508,-1 +824922,0 +306457,1 +791734,1 +320087,1 +389556,2 +7867,2 +266834,1 +297246,2 +972720,1 +832558,-1 +973815,1 +121239,2 +173190,1 +347349,-1 +801067,2 +554970,1 +942489,1 +318547,1 +433231,1 +214255,1 +964352,1 +296345,2 +369301,2 +786938,1 +248151,1 +706539,1 +243277,2 +1848,1 +988928,2 +829412,1 +876162,1 +983975,1 +920807,1 +857409,1 +642964,1 +740115,2 +287561,0 +65414,1 +115578,0 +996029,1 +530221,1 +390917,1 +879745,1 +664859,2 +29179,1 +329827,1 +76057,1 +815249,1 +516224,1 +879490,1 +870513,1 +447999,1 +282117,1 +551584,1 +896735,1 +378299,0 +362462,1 +817340,2 +339234,2 +384300,2 +372535,1 +481501,0 +22762,0 +485119,2 +960924,-1 +1286,1 +484608,2 +96406,0 +119877,1 +704187,0 +639303,1 +226794,1 +466728,1 +267290,-1 +197811,0 +192879,0 +541183,1 +268167,-1 +222652,2 +389701,1 +778178,2 +899742,2 +611148,1 +412287,2 +154379,1 +337433,2 +4992,1 +952134,1 +614950,1 +433589,1 +431329,1 +973104,2 +345041,1 +9154,2 +159443,1 +328167,0 +410690,1 +560172,0 +475421,1 +693871,1 +765176,1 +473084,1 +948517,1 +614570,1 +240361,1 +179722,0 +221023,2 +147626,1 +82010,1 +660216,2 +954078,2 +201149,2 +362596,2 +306287,1 +480623,1 +83287,2 +860488,1 +659668,0 +443467,2 +401669,2 +605414,0 +411340,1 +6215,2 +34173,-1 +927611,1 +417370,1 +829063,0 +955137,2 +974180,2 +513478,1 +63637,1 +3608,1 +143481,2 +279637,2 +12633,1 +91354,2 +456539,0 +103459,0 +724466,1 +917465,-1 +677645,2 +625671,0 +368134,1 +418287,1 +830297,1 +850990,1 +99241,1 +713539,2 +776332,2 +611692,1 +378145,1 +692646,1 +551222,1 +41841,1 +676647,2 +964118,1 +829668,1 +416481,2 +585188,2 +119077,2 +122135,2 +541838,2 +176060,0 +864487,1 +751214,1 +219125,1 +660479,2 +490868,-1 +826967,1 +129768,1 +750892,1 +720402,1 +453224,1 +704902,1 +796499,1 +533138,1 +751954,1 +654466,2 +379806,1 +584321,1 +21580,1 +628187,2 +604103,1 +324896,1 +403714,1 +679294,2 +288757,1 +885811,1 +87060,2 +226855,2 +208873,2 +385795,1 +36354,2 +231516,1 +898881,2 +439774,1 +41702,0 +697039,1 +118268,1 +230412,2 +401943,1 +317235,2 +190442,1 +324957,2 +211902,2 +719624,2 +422031,1 +941377,1 +125441,1 +242012,1 +242306,1 +342079,1 +656786,2 +665159,1 +449945,1 +879883,1 +749307,0 +66606,1 +635824,1 +810058,2 +281353,0 +708472,2 +819973,1 +867318,2 +608853,1 +972226,0 +800498,1 +793922,1 +198481,1 +252111,1 +325911,1 +485103,1 +672238,-1 +18275,2 +144361,1 +995474,2 +392717,1 +308265,2 +39492,0 +69444,1 +12457,1 +212664,1 +816340,1 +606236,2 +194914,1 +216293,1 +303599,1 +343159,0 +206331,1 +524269,1 +434114,1 +86292,1 +987282,1 +562537,1 +404732,2 +764897,1 +816811,2 +377492,2 +46126,2 +637184,1 +432808,2 +314173,1 +515732,1 +838114,-1 +66701,-1 +621746,2 +266646,1 +560557,1 +793372,2 +913750,2 +139199,1 +420137,1 +292903,1 +651987,2 +157858,2 +270569,2 +362026,2 +443999,1 +588978,0 +211628,1 +609004,2 +482845,1 +598339,-1 +943724,0 +794232,1 +272594,2 +899087,1 +429784,2 +760840,1 +28149,-1 +808742,1 +150908,2 +768682,1 +820329,1 +173226,1 +259838,1 +368871,1 +855825,0 +786513,0 +156853,2 +789157,2 +5991,1 +734105,0 +30992,0 +467775,0 +111368,1 +973179,1 +861404,2 +95859,2 +640918,2 +222268,2 +715936,-1 +615609,0 +964807,2 +950784,0 +754178,-1 +897363,1 +389753,-1 +968374,1 +610718,2 +821120,2 +792286,1 +306378,1 +944027,1 +672988,2 +926873,1 +576218,2 +614007,1 +548378,1 +768017,1 +654397,1 +235861,2 +391370,1 +186071,1 +824006,1 +663965,2 +823710,1 +378005,2 +730502,1 +314573,1 +385871,-1 +434233,1 +802739,1 +521973,1 +875614,1 +307688,0 +331041,1 +901681,1 +465021,1 +247820,1 +203128,1 +229310,1 +227668,2 +970187,0 +948579,1 +240077,1 +792835,1 +541891,2 +376905,1 +420718,0 +462840,1 +88860,1 +83832,-1 +739920,2 +787253,0 +105649,1 +4602,1 +765248,1 +112884,1 +732506,2 +666883,2 +539233,1 +715698,1 +694079,1 +6025,1 +422546,2 +926173,1 +303801,2 +179173,2 +339152,1 +225522,1 +277373,1 +413184,0 +607498,2 +811297,0 +72944,1 +868808,1 +668850,1 +394292,2 +222476,2 +571858,2 +676920,0 +171213,2 +231952,1 +644763,0 +711281,1 +329512,2 +351285,1 +780051,2 +494771,2 +276685,1 +458846,2 +5049,1 +966777,1 +610678,1 +821446,2 +987377,1 +766106,-1 +169484,1 +260149,1 +593061,1 +734995,1 +209613,-1 +626252,2 +667510,1 +743735,1 +805447,1 +323315,2 +568282,-1 +637648,0 +84755,1 +755282,2 +704830,1 +396421,1 +479893,1 +959482,1 +970686,2 +221268,1 +144987,2 +937007,1 +325308,2 +550486,1 +583351,1 +737106,1 +6394,1 +867691,-1 +786510,0 +157931,1 +532896,1 +826598,1 +799476,1 +776730,2 +880076,-1 +278774,1 +144722,2 +821217,2 +457259,1 +39408,-1 +464147,1 +693720,1 +401381,1 +382649,2 +327761,0 +999519,1 +109855,2 +139161,2 +573474,0 +276329,1 +191012,1 +338409,2 +598434,2 +318459,2 +285434,1 +296356,2 +162435,1 +476311,0 +603693,1 +909464,1 +183481,1 +749966,0 +642063,0 +191936,0 +516300,1 +201656,2 +689131,1 +210664,1 +715905,0 +546018,1 +316131,1 +780104,0 +941293,2 +966698,-1 +331959,0 +675148,1 +495010,1 +785573,1 +992003,2 +292482,0 +316399,-1 +207963,2 +915900,1 +656892,1 +295105,1 +36492,-1 +597849,1 +473441,2 +576935,2 +840716,2 +777967,1 +974517,0 +832211,1 +423131,-1 +836914,1 +82167,1 +969815,1 +804703,2 +457817,2 +685085,1 +646257,1 +624130,-1 +582559,1 +423169,1 +657337,1 +88960,1 +269970,-1 +105374,1 +482268,1 +782859,0 +592629,2 +336497,2 +57312,-1 +402798,0 +324231,1 +58998,1 +922240,-1 +724277,1 +122922,1 +592514,2 +77165,1 +468630,2 +621373,2 +398635,1 +559697,0 +214414,2 +619976,2 +455298,1 +660578,0 +643036,1 +913457,1 +287368,0 +813930,1 +307025,1 +551415,-1 +689333,-1 +611269,2 +935392,2 +897868,1 +236645,0 +77481,1 +618553,2 +633595,1 +655062,1 +699074,2 +195308,-1 +595210,2 +945743,0 +191854,2 +987819,2 +397016,1 +308507,1 +43551,2 +240695,1 +286168,1 +915509,1 +869683,-1 +295238,1 +273952,1 +584394,1 +195900,1 +715663,2 +851063,1 +393719,1 +285491,1 +474768,2 +988237,1 +422929,1 +531642,2 +245695,2 +879694,1 +420847,1 +442565,2 +232430,0 +398214,2 +394365,1 +426338,2 +330020,0 +785007,2 +972338,2 +942593,0 +961346,1 +764846,1 +669522,1 +319959,1 +181107,1 +408404,1 +523048,0 +101999,1 +172983,1 +671524,2 +849739,-1 +346827,1 +476615,1 +895125,2 +92275,1 +784034,1 +463466,1 +541545,2 +229217,1 +486638,2 +318073,1 +238027,0 +123946,1 +926635,1 +957341,0 +331416,1 +912415,1 +737710,1 +123939,1 +197071,1 +355991,2 +939791,1 +35780,1 +238540,2 +578043,2 +559830,1 +663080,-1 +637989,1 +609853,1 +688250,2 +573526,0 +122197,1 +698843,2 +978695,1 +276003,1 +180966,0 +640355,1 +528396,1 +838575,1 +224086,2 +25107,1 +941017,2 +83294,1 +488157,1 +280143,0 +234739,2 +580721,1 +907765,1 +556068,1 +212700,2 +353721,2 +675982,1 +339284,1 +191301,2 +168885,1 +732303,0 +793043,1 +699639,-1 +312517,0 +352208,1 +266989,1 +901063,1 +675882,1 +320560,2 +245351,2 +522325,1 +703585,1 +641049,1 +45110,2 +414797,2 +269667,1 +242813,1 +367599,1 +654104,1 +894232,1 +287449,1 +573969,1 +573083,2 +543358,2 +672556,-1 +761778,2 +790474,1 +576012,1 +391509,2 +766952,1 +37858,1 +703952,1 +840146,0 +317102,2 +663313,0 +350256,2 +302864,1 +950748,2 +559829,2 +316929,0 +885671,1 +926884,1 +151033,1 +956089,1 +578319,2 +502372,0 +55085,0 +844569,1 +657020,0 +327419,1 +774068,1 +215327,2 +53274,2 +165384,2 +216655,0 +895964,1 +658815,2 +392139,1 +303725,1 +95260,1 +29266,2 +941438,1 +786762,1 +687815,2 +58178,1 +892211,1 +38872,1 +6715,-1 +115420,1 +564035,1 +655450,1 +536531,2 +558684,1 +521553,1 +702061,1 +270836,1 +579324,0 +186889,1 +813889,2 +864478,2 +879657,2 +748146,-1 +273325,-1 +52520,1 +620251,1 +967986,1 +255772,2 +124459,1 +778658,1 +730026,1 +524315,1 +808795,1 +410560,1 +736913,1 +585868,2 +860621,1 +911013,0 +350251,2 +583294,1 +237397,2 +810871,1 +302920,1 +826197,-1 +552138,1 +948170,1 +734002,1 +381149,1 +87066,1 +393025,1 +242100,0 +73720,0 +248576,1 +757481,-1 +949825,1 +122392,1 +454520,0 +246599,1 +587755,1 +696011,1 +702158,1 +577157,1 +779146,2 +361064,2 +568478,2 +293138,0 +886852,1 +641390,1 +309204,2 +861978,0 +65678,-1 +37161,1 +44459,0 +212306,1 +15931,2 +839468,1 +206409,1 +80465,1 +902010,1 +184219,1 +45607,1 +337771,1 +89645,1 +414134,2 +357355,1 +783782,2 +537334,2 +818133,-1 +314957,1 +793240,2 +903549,2 +505388,1 +903516,1 +830608,1 +708649,1 +699265,-1 +199279,0 +423050,1 +84479,1 +692437,1 +511157,0 +134111,1 +457774,2 +444789,1 +28139,1 +532892,2 +896668,1 +807831,2 +566437,1 +122276,1 +330625,1 +459982,2 +37020,1 +248792,2 +67871,1 +818267,0 +899530,1 +598012,2 +105391,0 +734981,-1 +194458,1 +525857,1 +299185,2 +303968,1 +623420,1 +491902,0 +405671,1 +283285,2 +314315,-1 +342649,1 +811594,1 +877953,1 +250020,2 +482420,2 +811970,1 +410045,1 +768287,1 +10140,1 +381026,1 +824589,1 +566239,1 +168376,0 +925405,0 +175224,2 +761939,1 +701364,2 +634818,0 +691110,2 +386807,2 +885006,1 +486755,-1 +335914,1 +961423,2 +48070,1 +86376,0 +857017,1 +70184,1 +808139,2 +348386,1 +924242,2 +686843,-1 +49160,2 +302490,-1 +183669,1 +945556,1 +664348,2 +556462,2 +643411,1 +428375,1 +855864,1 +566490,1 +830535,2 +382,2 +373785,1 +734921,1 +171713,1 +556800,1 +88973,-1 +658337,-1 +4709,1 +877084,2 +445620,1 +270537,-1 +703375,1 +46873,1 +899754,1 +795861,-1 +812551,1 +535591,1 +80055,0 +570775,-1 +607294,1 +346257,1 +834872,1 +214043,1 +613413,1 +1960,1 +591346,1 +716050,1 +449744,2 +746121,2 +576177,1 +742262,1 +603256,0 +995594,2 +491003,0 +258024,1 +132811,2 +739061,1 +515952,1 +622935,2 +448716,2 +357570,1 +459647,2 +694067,2 +342342,0 +458106,2 +943571,1 +592617,0 +847809,1 +676499,1 +393921,1 +307201,2 +814178,1 +33055,0 +316616,0 +246745,2 +28308,2 +793207,1 +334667,1 +805610,1 +747215,1 +124201,0 +360821,2 +461119,2 +301741,1 +491775,1 +930852,0 +208706,1 +54869,1 +62066,1 +10993,1 +629210,2 +483522,1 +810782,1 +801097,0 +117955,0 +857587,1 +756775,1 +886329,0 +629213,2 +130697,-1 +412538,-1 +34139,2 +149935,1 +813785,1 +74650,1 +465837,1 +353152,1 +331104,1 +56069,1 +723413,2 +243069,2 +482844,0 +516277,2 +634035,2 +331193,0 +474759,1 +488620,2 +839352,-1 +391234,1 +313648,2 +659109,-1 +662221,0 +296437,2 +193971,1 +787920,1 +535511,2 +769581,2 +349431,2 +929265,1 +795123,0 +155398,0 +725497,0 +235678,1 +369892,1 +989976,-1 +685160,1 +345451,1 +875429,1 +588854,1 +398409,1 +142668,1 +868078,0 +449764,1 +194389,2 +465891,0 +861701,2 +668682,0 +859322,0 +397319,0 +662170,2 +447574,1 +550614,2 +434903,2 +939644,1 +629964,1 +822224,0 +372060,1 +575133,2 +996535,2 +627536,-1 +773818,0 +943559,0 +910094,1 +40552,0 +949845,0 +893456,1 +799680,2 +478024,0 +249709,1 +815643,1 +10542,2 +313029,2 +551318,1 +682768,1 +541054,2 +921977,1 +40585,1 +2551,1 +3449,2 +306708,1 +33638,1 +340490,1 +371368,2 +403307,2 +443723,1 +917808,-1 +109773,0 +964844,1 +875387,2 +807641,1 +190559,1 +929097,1 +216996,1 +305367,1 +560286,-1 +643108,0 +991972,1 +65425,0 +336322,1 +126840,1 +66121,1 +619287,1 +124378,1 +587313,2 +447439,2 +699344,2 +700265,2 +201084,1 +787460,1 +772476,1 +999493,1 +649075,0 +754715,2 +20118,1 +606310,2 +629888,0 +138102,1 +966636,1 +260253,1 +837801,1 +411449,0 +46829,1 +422748,1 +703922,2 +329328,1 +604545,0 +194969,1 +386862,-1 +778479,2 +25665,1 +587685,1 +154455,0 +810205,2 +429754,1 +497142,1 +332117,1 +689977,2 +15344,1 +348067,1 +445232,0 +110434,-1 +23501,1 +745898,1 +348993,1 +86112,0 +847851,1 +609103,1 +839077,1 +257291,1 +529894,1 +589853,1 +916547,1 +479855,1 +715783,2 +764927,-1 +784447,1 +862004,0 +788502,2 +905470,2 +59972,2 +558929,2 +749131,1 +33039,2 +692983,2 +456800,1 +167743,1 +206677,1 +76347,1 +975857,1 +900572,1 +776019,1 +315754,1 +618247,1 +854472,1 +767416,2 +824297,0 +226628,2 +384950,1 +470743,1 +628227,1 +569901,2 +183605,2 +39796,0 +967810,2 +842975,1 +829262,1 +43283,1 +263778,1 +544747,2 +160865,1 +870306,2 +317941,2 +242541,1 +264786,0 +502689,1 +175518,1 +966995,1 +58075,2 +936594,2 +945413,1 +956383,1 +796714,1 +994587,1 +855668,1 +632029,1 +99436,1 +498187,1 +459281,2 +314913,0 +343021,1 +761759,1 +9180,1 +118420,2 +144978,2 +259239,1 +597539,1 +803311,1 +678530,0 +738379,1 +784916,2 +723261,2 +520511,1 +318150,2 +347280,2 +658258,1 +834309,2 +742929,-1 +957353,2 +892508,1 +629115,1 +45783,1 +374554,2 +533692,2 +239498,-1 +31211,2 +236762,-1 +499387,1 +372368,1 +264138,1 +76328,0 +114951,1 +814831,-1 +268297,1 +87226,1 +145525,2 +742467,1 +733277,1 +556429,-1 +984662,1 +863695,1 +718856,1 +556202,0 +458662,0 +4008,1 +65794,2 +308686,2 +77619,1 +986237,1 +536921,1 +327880,2 +519276,1 +344602,1 +369696,1 +183392,1 +21776,2 +103782,1 +395442,2 +528923,1 +203021,1 +210803,1 +244909,1 +201132,1 +333838,1 +242928,1 +549548,1 +971087,2 +198173,1 +507787,2 +744350,1 +989276,1 +464956,1 +825104,1 +893902,2 +790917,1 +939067,1 +44875,2 +725908,2 +162327,-1 +857432,1 +512973,1 +665155,1 +481258,1 +101492,2 +282384,1 +563804,-1 +380930,1 +63274,2 +796774,1 +642040,0 +500526,1 +671048,1 +486218,1 +511422,1 +165759,0 +645301,1 +710223,1 +990571,1 +569637,0 +721243,1 +548509,2 +274643,1 +695145,2 +255777,1 +593154,0 +502769,2 +599372,0 +579198,-1 +174276,1 +952316,2 +146567,2 +519007,1 +497620,1 +83071,2 +316882,1 +441233,0 +534393,1 +313809,1 +515011,1 +53376,1 +449332,1 +358684,1 +910878,1 +683328,1 +632209,1 +63394,1 +258494,2 +17146,1 +113406,0 +791872,2 +30382,1 +468651,0 +807521,1 +844696,1 +37056,1 +697676,2 +108031,1 +863487,1 +550647,1 +872306,1 +368994,2 +987129,2 +293586,0 +659119,2 +489550,0 +688476,2 +557113,0 +458344,1 +343594,0 +423020,1 +3462,1 +256331,2 +182779,1 +726997,0 +839310,1 +366691,2 +793782,0 +761451,2 +529987,2 +880139,1 +907108,1 +95023,1 +340565,1 +313583,1 +91110,2 +674536,1 +725981,2 +791988,1 +10750,1 +70886,1 +568043,0 +148204,2 +955877,1 +710384,0 +700357,0 +403622,1 +379890,2 +214790,1 +673915,2 +599658,1 +514363,1 +12212,1 +37585,1 +269742,2 +561455,2 +233339,2 +734564,1 +152162,1 +652743,2 +842866,2 +829108,1 +427747,2 +385763,0 +867962,1 +584277,1 +977469,0 +4565,2 +596205,1 +106146,2 +194447,1 +935981,2 +382689,0 +877209,1 +951367,1 +886593,1 +413497,1 +168716,2 +779455,2 +209806,1 +556990,1 +55922,1 +393562,2 +980856,1 +921808,2 +463431,1 +574520,2 +116121,0 +43620,1 +941858,1 +977028,2 +127189,1 +997627,1 +146296,2 +68755,1 +969351,1 +666496,1 +742828,1 +594821,1 +248163,1 +212783,2 +530408,-1 +271077,1 +29116,1 +97327,1 +103934,1 +5281,-1 +966764,-1 +833394,1 +769034,2 +427885,1 +101015,-1 +135053,2 +445073,1 +594718,1 +485337,1 +652031,1 +295823,2 +898107,1 +621822,1 +593768,1 +724899,1 +87739,1 +830073,-1 +142961,1 +61106,-1 +221043,2 +696913,0 +295268,1 +753928,1 +649950,0 +238297,2 +265204,-1 +19559,1 +305511,1 +992050,1 +346418,1 +82564,1 +212312,1 +150821,1 +680282,1 +711087,1 +883893,1 +360801,1 +578270,2 +788765,2 +684593,2 +177297,1 +658714,1 +946725,1 +935871,1 +453781,1 +370318,1 +702503,0 +278400,1 +944133,0 +647470,1 +475065,1 +592615,2 +579070,1 +134505,2 +642708,1 +167603,2 +555272,1 +743195,1 +959807,1 +217024,-1 +443267,1 +397017,1 +596814,1 +533952,2 +800696,0 +112363,1 +988128,1 +759592,1 +684206,-1 +159362,2 +246328,1 +304396,1 +54264,1 +908329,1 +849716,2 +424570,1 +133226,-1 +624182,2 +847038,1 +534999,1 +514432,1 +489534,1 +417355,1 +714692,2 +250868,2 +192977,1 +645212,0 +903171,1 +214224,-1 +332795,1 +230188,1 +957788,1 +102140,2 +574414,1 +471592,0 +782767,2 +151657,1 +324578,-1 +999173,1 +741669,-1 +934059,1 +219327,1 +640084,0 +865195,1 +577052,1 +507163,1 +408984,1 +639773,1 +479385,2 +169503,1 +110462,1 +251179,1 +969955,1 +933588,1 +365700,1 +267452,1 +797195,1 +280489,-1 +149414,1 +942202,0 +603517,1 +326443,1 +292224,-1 +521526,2 +960021,1 +806425,0 +231162,1 +568815,1 +966665,0 +360405,-1 +495872,1 +320667,2 +66860,2 +581466,2 +248539,-1 +108857,2 +644838,1 +474280,2 +787055,0 +277933,1 +273967,1 +556307,1 +807648,1 +51870,0 +94877,1 +116574,2 +399562,2 +730487,1 +951265,0 +926505,1 +170438,1 +372720,-1 +591257,1 +165101,2 +152577,2 +288444,1 +57552,2 +643771,2 +958204,2 +320134,0 +210202,2 +120685,1 +326563,1 +265061,1 +764221,1 +177961,1 +106628,0 +282903,1 +981255,-1 +697050,1 +699241,2 +646970,-1 +695251,1 +832086,1 +152329,1 +561889,1 +590212,1 +914020,-1 +675260,0 +307271,0 +738307,0 +670025,2 +140016,1 +973171,2 +732909,1 +153191,1 +716583,-1 +422296,-1 +293089,1 +134300,2 +892921,2 +465699,0 +609512,2 +580483,1 +176298,2 +884073,1 +172648,1 +395722,2 +351392,-1 +721553,1 +681784,0 +385663,1 +844602,0 +888673,1 +976202,0 +846688,2 +954728,2 +618950,1 +762599,1 +539961,1 +550361,2 +407571,0 +656096,1 +378318,1 +967793,-1 +75392,1 +177800,1 +408225,1 +680118,2 +297379,0 +527068,1 +434966,1 +900632,2 +130158,0 +341406,0 +522679,2 +483207,2 +221942,1 +587012,2 +441095,2 +536195,0 +43396,1 +991333,1 +542338,1 +966161,1 +209660,0 +653577,1 +357971,-1 +407024,1 +94220,2 +638817,1 +194215,1 +856259,0 +614917,1 +621121,1 +278551,1 +106543,1 +637263,2 +868154,2 +928749,1 +311979,1 +299209,-1 +838786,1 +740050,0 +618306,2 +125116,1 +943217,1 +556335,1 +522328,1 +708449,1 +76467,1 +713495,2 +317157,1 +874864,1 +769447,2 +723661,1 +169776,1 +341817,-1 +279315,1 +56671,2 +586033,-1 +424489,1 +670559,1 +813882,1 +743424,1 +998561,1 +35843,-1 +148459,2 +141814,1 +899926,1 +66867,1 +249425,1 +827222,1 +933298,1 +717876,1 +76495,-1 +170533,1 +278,-1 +614316,1 +215952,1 +486044,1 +565883,1 +333596,2 +774118,1 +759320,1 +729321,1 +734928,2 +996973,2 +263240,1 +967543,1 +88271,2 +51682,2 +765829,-1 +526501,1 +538022,1 +464819,0 +743385,1 +352378,1 +896685,1 +344913,1 +103328,2 +317955,2 +323535,1 +884118,1 +907600,2 +319388,2 +94543,1 +906238,0 +166594,1 +498008,2 +20718,0 +137232,0 +576299,1 +213588,2 +745401,2 +490678,0 +407623,1 +57607,0 +874698,1 +708834,1 +698181,0 +789444,0 +846358,1 +726457,-1 +721486,2 +85593,1 +612031,2 +338459,1 +11187,2 +64779,-1 +257851,0 +222681,2 +85769,2 +491695,2 +69652,-1 +978637,2 +194315,1 +842272,1 +566358,1 +836624,1 +896889,1 +928128,1 +32619,1 +4454,0 +300730,1 +462746,1 +18230,2 +762818,2 +786587,1 +709164,2 +310079,1 +300903,1 +311755,2 +52324,1 +756349,0 +360063,1 +679442,0 +121576,1 +491908,2 +660702,2 +728978,-1 +849682,1 +548683,1 +277746,1 +912506,2 +261231,2 +481398,1 +529619,-1 +864134,1 +764226,2 +257799,1 +366010,0 +578643,2 +857669,1 +478994,1 +673788,2 +836471,1 +5195,0 +744071,2 +819993,0 +105033,2 +577219,0 +451731,-1 +839701,2 +873740,2 +103273,1 +829729,1 +687709,1 +975580,2 +992939,0 +755969,1 +425274,1 +449925,2 +673834,1 +242524,2 +699239,1 +964461,0 +189638,1 +440494,1 +286814,1 +947754,1 +611158,2 +930418,1 +881582,0 +321503,-1 +978268,0 +90863,2 +461856,1 +159752,2 +893413,1 +97582,2 +70433,1 +54251,1 +202195,1 +410018,2 +505784,-1 +273223,1 +886247,1 +938271,1 +943867,2 +131809,1 +617622,-1 +377222,1 +477261,0 +640045,1 +965900,2 +19444,1 +359565,1 +608805,2 +232495,1 +123701,2 +817217,2 +635161,1 +247020,1 +617451,2 +938781,1 +30759,1 +705452,1 +349996,1 +119394,1 +896443,2 +719233,2 +607289,1 +303795,1 +123568,1 +287032,1 +914400,0 +24611,1 +441152,2 +100465,1 +257636,0 +587932,1 +323729,1 +50830,1 +599546,1 +552116,1 +878865,2 +494211,1 +803869,1 +882581,1 +535734,1 +995446,2 +318172,1 +51166,2 +801017,1 +447285,1 +735991,1 +100505,1 +72085,1 +844827,1 +204185,1 +135358,1 +265254,1 +426503,2 +226392,0 +829793,1 +822833,0 +613321,1 +789678,2 +167452,1 +134392,0 +761645,2 +265477,1 +456308,-1 +928781,0 +488311,1 +637257,1 +398134,1 +291255,2 +636686,1 +691251,1 +717856,1 +921344,1 +16525,1 +738565,1 +114799,0 +64363,0 +349755,1 +709627,1 +896596,1 +126674,1 +20322,2 +344127,-1 +380343,1 +431495,2 +666836,1 +979256,1 +522596,1 +922437,2 +936407,1 +177547,1 +854940,1 +219086,1 +285478,0 +376394,1 +278668,2 +803944,0 +919590,1 +671551,1 +944137,0 +794925,0 +756835,1 +485914,1 +60176,1 +45335,2 +155423,1 +777221,1 +302729,1 +270476,1 +564907,2 +868071,1 +511137,0 +765166,0 +686589,1 +179460,1 +979548,2 +161158,1 +122086,-1 +242717,0 +820265,1 +301262,2 +548778,1 +50847,1 +816109,1 +529955,1 +223003,0 +306003,1 +670436,1 +927913,1 +797806,0 +518697,1 +320211,1 +312148,2 +703919,1 +951694,1 +78201,1 +178353,1 +856674,2 +88796,2 +763171,1 +961797,1 +331941,2 +61059,0 +228395,1 +906839,0 +796076,0 +550181,2 +584668,1 +858574,1 +397634,1 +774584,1 +376780,2 +571842,0 +598952,0 +251053,2 +156160,1 +209792,0 +623700,1 +386349,1 +975607,1 +710461,1 +414286,1 +504386,2 +615210,1 +686504,0 +201360,1 +477876,2 +857523,1 +65576,1 +311290,0 +354703,2 +713717,1 +3484,1 +333986,1 +433077,0 +987845,0 +487343,0 +389631,1 +349078,2 +110116,0 +853938,2 +280471,2 +528472,1 +148108,1 +344553,1 +916759,1 +259516,2 +961234,1 +423634,1 +857805,2 +397365,2 +857555,1 +989563,2 +288858,0 +29623,1 +296324,2 +195452,1 +89006,-1 +685999,1 +953360,1 +398016,2 +23380,0 +858247,1 +251406,1 +892567,1 +544308,0 +736038,1 +788588,2 +422746,2 +839256,2 +151320,1 +306785,1 +847300,1 +992698,0 +659398,0 +147593,2 +145217,1 +223963,1 +810561,1 +291291,1 +703836,1 +211575,2 +238579,0 +210624,2 +819555,1 +558154,1 +592357,1 +276482,2 +673932,1 +995721,1 +592147,2 +773618,1 +684165,2 +350641,2 +87764,1 +272814,1 +435767,-1 +62657,1 +296443,-1 +263147,1 +671827,0 +928178,1 +467586,-1 +755440,1 +254496,-1 +460932,1 +147670,1 +569718,1 +643831,1 +886969,1 +232075,1 +109532,-1 +468568,1 +4936,0 +203154,0 +27673,2 +129667,1 +98126,0 +279960,-1 +417611,0 +179502,1 +649846,1 +972392,-1 +690263,2 +844854,2 +64801,1 +725765,1 +500151,1 +137665,0 +327170,1 +737240,2 +835581,1 +975161,-1 +76414,1 +957883,2 +946476,2 +933294,1 +854047,0 +117233,2 +270551,1 +65083,2 +202684,2 +64863,-1 +390621,2 +149562,1 +292543,2 +263451,2 +40122,0 +573893,0 +774671,2 +879851,1 +86848,-1 +397160,1 +475194,0 +637080,2 +740039,2 +925132,1 +629995,1 +687834,1 +869772,1 +762016,1 +926397,1 +647788,1 +562390,1 +535086,1 +424682,2 +877815,2 +696873,1 +475889,1 +31358,2 +378750,2 +444206,1 +608581,1 +728954,1 +957113,-1 +801794,1 +518225,2 +358103,1 +680249,-1 +330131,2 +639079,1 +568837,1 +674514,0 +408712,1 +751683,1 +83788,2 +870105,0 +506017,0 +990787,0 +249793,0 +500428,1 +474046,0 +285709,1 +738823,1 +713163,1 +254402,1 +784922,2 +172957,2 +152465,0 +808051,1 +485595,-1 +907857,2 +976351,0 +890487,0 +22342,-1 +793794,2 +397069,1 +696234,1 +446222,-1 +421398,1 +133429,1 +906252,2 +414092,2 +921186,2 +73317,1 +750866,1 +404488,0 +217262,1 +82084,-1 +178765,1 +856902,1 +128311,1 +28674,0 +622104,0 +530054,1 +381560,1 +98355,1 +740344,1 +138808,2 +170089,1 +226215,1 +423833,1 +369913,0 +95896,2 +97840,0 +89084,0 +239009,-1 +366412,1 +851148,1 +474593,1 +633845,2 +51545,1 +278633,-1 +39361,2 +221510,2 +66321,2 +66661,1 +613615,2 +942704,1 +15587,1 +353103,2 +271735,2 +159461,0 +807877,2 +934854,2 +409387,1 +203644,1 +635192,1 +772176,2 +227248,-1 +319106,1 +128668,1 +731220,2 +311826,1 +808440,1 +615105,1 +723926,-1 +582734,2 +520223,1 +858352,1 +606234,2 +276096,1 +254986,1 +381775,1 +592526,1 +230347,1 +61228,0 +819339,1 +995982,1 +727863,1 +186751,2 +964719,0 +125624,1 +344973,1 +949789,1 +599330,2 +265518,1 +298147,1 +226325,2 +239874,1 +301650,1 +157290,1 +345248,1 +137668,1 +387140,1 +393316,1 +940665,0 +206952,2 +541428,0 +886796,1 +546374,1 +922849,2 +857364,-1 +528773,2 +348027,2 +534413,2 +447525,1 +607037,1 +136714,2 +698954,-1 +496231,1 +112559,1 +746719,1 +56423,1 +111610,-1 +59106,2 +324423,-1 +903495,-1 +522578,1 +330418,1 +170036,-1 +811734,1 +336133,2 +61446,1 +286684,1 +86718,2 +378434,2 +95056,1 +157217,1 +678843,1 +131307,1 +531053,2 +947694,1 +759959,1 +976235,1 +772212,2 +869188,-1 +7256,0 +910026,2 +970748,1 +960297,2 +487259,1 +2648,1 +93493,2 +320569,-1 +435902,0 +24812,1 +709950,0 +191870,1 +544288,1 +599634,1 +948396,2 +628855,-1 +219705,1 +76369,2 +209707,1 +529193,1 +488505,0 +649995,1 +328227,2 +734220,2 +569724,1 +617157,1 +835618,2 +497694,1 +6641,-1 +791125,2 +479666,1 +232716,0 +786460,0 +492966,1 +885363,1 +346906,1 +295934,-1 +650486,-1 +958263,1 +939823,2 +69802,0 +264749,1 +744004,-1 +903111,1 +464048,0 +353129,1 +781817,2 +105244,1 +899313,2 +421940,0 +651955,-1 +966826,2 +277192,0 +557101,1 +16077,1 +788753,1 +636671,1 +209113,1 +17873,1 +263873,1 +818047,1 +274518,1 +137245,0 +210901,2 +452172,0 +814366,0 +212158,2 +90901,1 +143454,1 +761556,1 +505773,1 +601972,1 +74231,0 +815985,2 +481732,1 +627871,1 +594469,1 +350756,1 +269893,1 +6511,1 +436306,2 +780075,2 +143536,0 +635339,1 +904919,1 +775083,2 +201705,1 +71322,0 +718755,2 +355397,2 +7480,2 +676361,2 +27930,2 +689435,2 +6365,2 +117872,1 +303319,1 +758069,2 +519052,2 +173245,2 +906749,1 +9631,1 +186664,1 +818801,1 +610128,1 +200984,1 +946451,2 +588728,1 +132012,1 +746803,-1 +684358,0 +180750,1 +997932,1 +291282,1 +865532,1 +937154,0 +272540,2 +28014,1 +54105,1 +677318,2 +142298,1 +546152,1 +131990,1 +930247,1 +405814,1 +849259,2 +970178,2 +775969,1 +251906,1 +209894,2 +82633,2 +216329,1 +147245,1 +375068,1 +432029,1 +681008,1 +985356,1 +83642,1 +924379,2 +474657,1 +966145,-1 +943890,1 +226367,1 +60192,1 +893971,1 +418543,1 +13358,1 +520619,1 +321598,1 +741056,1 +936461,2 +143146,-1 +535965,1 +281202,1 +165837,-1 +613580,1 +446237,1 +897909,1 +35072,2 +334267,1 +150295,1 +414005,0 +691449,-1 +586333,2 +805955,1 +994946,1 +535234,0 +990339,-1 +245539,-1 +142285,1 +471258,1 +181421,1 +804056,2 +250453,2 +422794,1 +896160,1 +493299,-1 +579107,1 +853420,1 +661565,2 +373413,0 +962094,1 +41812,2 +504594,1 +507593,0 +210061,1 +287454,1 +536194,0 +814693,-1 +400723,0 +397613,0 +609991,1 +343360,1 +519580,1 +631971,1 +468411,2 +239916,1 +937873,1 +562422,1 +422498,2 +88056,1 +370179,1 +729780,1 +758644,2 +965567,0 +327049,2 +973414,1 +109041,1 +457236,-1 +703005,2 +666461,1 +200379,1 +800041,1 +645036,1 +888342,1 +308411,-1 +896890,2 +346042,1 +211349,1 +719119,2 +599794,0 +710238,1 +654615,1 +744157,2 +68991,0 +62494,1 +119981,-1 +858023,1 +470649,1 +824428,1 +499614,1 +382254,1 +927245,1 +63744,1 +175662,1 +808354,1 +859015,2 +22385,2 +245056,2 +237976,1 +884803,1 +107153,2 +467496,-1 +935108,0 +835385,2 +345228,1 +656751,1 +64369,1 +822812,1 +893774,1 +300949,1 +368266,1 +762993,2 +364409,0 +165076,2 +845006,2 +482039,1 +934736,1 +964388,0 +57305,1 +955294,1 +64942,-1 +339722,2 +804326,1 +196186,1 +945210,1 +910005,1 +256047,2 +684487,0 +596984,1 +100902,1 +555448,2 +972459,1 +925684,1 +331377,1 +326789,1 +649869,1 +447927,2 +162757,1 +121988,1 +876900,2 +428436,2 +980099,0 +469400,2 +69303,2 +901450,1 +469091,2 +107745,-1 +759608,0 +105104,0 +937094,2 +505536,1 +166852,1 +955751,2 +297133,1 +840457,1 +246498,1 +453796,2 +752359,2 +680137,-1 +651615,1 +34294,2 +566577,2 +546774,2 +672130,2 +180963,1 +894127,2 +818501,1 +57049,-1 +480533,1 +249370,1 +175803,0 +390055,1 +797992,2 +720945,1 +538702,2 +526631,1 +233659,1 +288602,1 +810965,0 +111100,1 +528758,2 +564829,2 +538223,1 +39918,1 +128542,1 +110687,1 +198596,1 +64585,1 +586728,1 +223741,1 +753397,2 +290174,0 +542214,2 +372837,2 +288012,1 +94780,1 +964126,2 +869801,2 +366133,1 +702070,2 +407850,2 +681790,0 +528548,1 +830318,1 +720943,2 +355391,2 +910133,0 +644426,1 +892393,2 +147139,0 +242092,2 +337513,-1 +442543,1 +331242,1 +697685,2 +238142,2 +639271,1 +390876,2 +892822,0 +368716,2 +391611,2 +26366,0 +830437,1 +213126,1 +421994,1 +585939,0 +475433,1 +481193,1 +388001,1 +721285,2 +395050,1 +577469,1 +211607,2 +574907,2 +805807,1 +661405,1 +767832,1 +851400,1 +726350,0 +826614,0 +821952,1 +468095,-1 +225454,1 +937705,1 +346504,2 +372790,1 +715616,2 +281080,1 +361431,0 +434867,1 +425309,1 +698813,2 +615023,1 +641,1 +937551,0 +133842,2 +252814,-1 +575434,2 +242013,2 +206664,1 +399851,0 +104630,1 +237325,2 +814076,2 +438092,1 +902087,2 +845881,1 +93753,2 +746802,1 +545644,2 +494858,0 +744232,1 +518375,1 +673188,-1 +650394,2 +579240,1 +283548,1 +964677,1 +733088,0 +795451,1 +189822,1 +554376,2 +83587,0 +77193,2 +802848,2 +258627,1 +665792,1 +322201,1 +23535,1 +630135,1 +848949,1 +802178,1 +203862,1 +239658,2 +456223,0 +586979,1 +474632,1 +651329,1 +889489,1 +725388,1 +477844,2 +376894,2 +402248,1 +310164,1 +130849,1 +374093,1 +481749,1 +463808,1 +288000,1 +845217,2 +757316,0 +262230,1 +167856,-1 +215975,1 +182510,2 +396184,1 +449083,1 +627919,1 +944107,1 +314291,-1 +907344,1 +380697,1 +374602,1 +568728,1 +32358,2 +358751,2 +601169,2 +563515,2 +825374,1 +401164,1 +269512,2 +736903,1 +665185,2 +703493,1 +649176,1 +89747,1 +801434,0 +750936,2 +62996,1 +197941,1 +931726,1 +999411,1 +166179,2 +415347,1 +703334,1 +535633,1 +848046,0 +26885,1 +656503,2 +876235,1 +253058,2 +335901,1 +486930,1 +519709,1 +751553,1 +15916,0 +876083,1 +549489,0 +484787,1 +339205,2 +293922,-1 +716370,2 +121979,1 +355364,1 +652890,1 +736209,1 +506571,-1 +874194,0 +24852,1 +960566,-1 +932863,1 +329246,2 +339552,1 +175017,1 +605037,1 +910328,-1 +379922,1 +620027,2 +798220,1 +378654,1 +90310,1 +660044,1 +143190,1 +350310,1 +743542,1 +66186,1 +772331,1 +205514,2 +743938,1 +534691,0 +52110,1 +179889,1 +921175,1 +516392,2 +967962,2 +8838,1 +192236,2 +212983,0 +203985,1 +710768,1 +524220,0 +750797,1 +964888,1 +969489,0 +178619,1 +704138,1 +132174,1 +46263,0 +817449,1 +870810,1 +233755,0 +609080,1 +981674,0 +417942,1 +992917,1 +84796,2 +346872,0 +631393,1 +340881,1 +216823,1 +182348,-1 +567946,1 +141268,1 +684612,2 +687469,1 +702863,0 +286035,1 +284067,1 +458157,1 +834117,0 +255010,2 +797499,2 +646377,1 +940776,1 +195519,2 +993798,1 +364112,1 +197836,1 +245546,1 +365759,2 +896324,2 +351010,-1 +502504,2 +332354,2 +484950,1 +37265,2 +202025,1 +886374,-1 +180486,1 +687405,1 +298447,-1 +9338,1 +982971,2 +328782,1 +208788,0 +477780,0 +941588,1 +576611,0 +947570,1 +997910,0 +74986,1 +496365,0 +502482,2 +961810,-1 +94242,1 +183339,1 +780613,-1 +658499,0 +144485,1 +485804,1 +265961,2 +974437,1 +430035,1 +906357,1 +327332,1 +460921,1 +493471,-1 +16241,1 +58712,1 +816270,1 +910551,1 +771337,1 +573204,-1 +367907,1 +372518,0 +639437,0 +474666,2 +648482,2 +143860,1 +114275,2 +358451,1 +576988,0 +346022,1 +533375,2 +887942,0 +643526,1 +435200,1 +73621,0 +430733,1 +187712,1 +216777,0 +236330,1 +615817,2 +279661,2 +515797,1 +846929,0 +927705,1 +337882,0 +651214,0 +751056,1 +248125,2 +659759,1 +44797,-1 +798117,2 +638313,0 +204555,1 +540417,1 +352057,1 +799088,1 +934720,-1 +529609,1 +358662,-1 +704245,0 +932974,2 +531048,1 +71743,1 +767345,-1 +530839,2 +815047,2 +128752,-1 +39654,-1 +132905,1 +116459,1 +165532,1 +502758,-1 +284295,0 +29769,1 +818671,1 +201465,1 +663088,1 +184683,2 +281280,1 +496917,1 +229445,2 +906993,1 +734003,1 +970888,1 +75892,-1 +829171,1 +487955,1 +127968,1 +274632,-1 +731069,1 +221632,1 +769168,1 +641285,1 +454883,1 +821566,2 +314629,2 +82988,0 +696785,1 +797805,0 +525201,2 +599152,1 +466357,-1 +191679,1 +777617,1 +3581,1 +176471,1 +188510,1 +852019,2 +687573,1 +1499,1 +687976,1 +815050,1 +670948,1 +321255,1 +683149,2 +157906,1 +723426,1 +977979,1 +693058,1 +917095,2 +197950,2 +812383,1 +122505,1 +913830,2 +286098,-1 +76092,0 +544534,1 +370160,0 +527515,2 +617472,2 +177127,2 +173098,1 +328325,1 +443275,2 +662169,1 +745784,1 +877890,1 +129486,1 +57431,2 +184494,2 +653677,1 +77414,-1 +766841,1 +340443,2 +331063,1 +560136,2 +791454,1 +804182,2 +996054,0 +997577,1 +678955,2 +146227,1 +299148,1 +964213,1 +703910,2 +651805,2 +360112,2 +554929,1 +460850,2 +266567,1 +988459,0 +54960,2 +262128,1 +390911,1 +663234,1 +207607,1 +166012,2 +215025,1 +819232,1 +738464,1 +152114,2 +812759,-1 +249602,2 +802862,1 +713304,1 +577367,-1 +491349,1 +652650,0 +967930,1 +900531,1 +869994,1 +677812,1 +576783,1 +401607,1 +935016,1 +743175,1 +966359,1 +208243,1 +332009,1 +486157,1 +343615,1 +462164,1 +407405,2 +931719,1 +642445,0 +940529,-1 +693850,2 +846956,1 +999669,1 +256463,1 +37534,1 +930321,1 +495749,1 +363368,1 +482774,1 +968706,1 +984473,1 +537348,1 +511380,0 +74611,0 +714843,0 +83398,0 +953071,2 +644182,0 +636836,2 +591233,2 +479785,-1 +366080,1 +86880,1 +285987,0 +560727,1 +248082,0 +53406,1 +152769,1 +953075,2 +798231,1 +596716,2 +496433,2 +68652,1 +415102,2 +247580,1 +739680,2 +467608,1 +120848,1 +799462,1 +580292,-1 +943835,1 +990402,2 +955360,2 +947963,2 +784748,0 +502914,0 +365296,2 +158992,1 +471246,1 +345671,2 +687199,1 +321723,0 +174439,1 +442391,1 +750827,1 +171801,1 +165677,1 +563428,1 +464821,1 +116432,2 +204331,2 +644706,0 +305351,2 +731500,2 +17208,1 +19337,0 +8755,1 +133797,1 +255140,0 +627021,1 +914045,1 +763365,2 +655183,2 +773911,2 +411123,0 +125139,1 +647348,0 +335490,1 +660005,2 +612647,0 +53118,1 +402290,-1 +954816,1 +285572,2 +682172,1 +229711,2 +17840,1 +959088,-1 +638708,1 +940588,1 +288271,1 +961513,2 +46205,1 +27319,1 +634943,2 +895714,1 +875167,1 +78329,1 +867455,0 +470892,1 diff --git a/resources/test.csv b/resources/test.csv new file mode 100644 index 00000000..6402032b --- /dev/null +++ b/resources/test.csv @@ -0,0 +1,12246 @@ +message,tweetid +Europe will now be looking to China to make sure that it is not alone in fighting climate change… https://t.co/O7T8rCgwDq,169760 +Combine this with the polling of staffers re climate change and womens' rights and you have a fascist state. https://t.co/ifrm7eexpj,35326 +"The scary, unimpeachable evidence that climate change is already here: https://t.co/yAedqcV9Ki #itstimetochange #climatechange @ZEROCO2_;..",224985 +"@Karoli @morgfair @OsborneInk @dailykos +Putin got to you too Jill ! +Trump doesn't believe in climate change at all +Thinks it's s hoax",476263 +"RT @FakeWillMoore: 'Female orgasms cause global warming!' +-Sarcastic Republican",872928 +RT @nycjim: Trump muzzles employees of several gov’t agencies in effort to suppress info on #climate change & the environment. https://t.co…,75639 +@bmastenbrook yes wrote that in 3rd yr Comp Sci ethics part. Was told by climate change denying Lecturer that I was wrong & marked down.,211536 +RT @climatehawk1: Indonesian farmers weather #climate change w/ conservation agriculture | @IPSNews https://t.co/1NZUCCMlYr…,569434 +RT @guardian: British scientists face a ‘huge hit’ if the US cuts climate change research https://t.co/KlKQnYDXzh,315368 +Aid For Agriculture | Sustainable agriculture and climate change adaptation for small-scale farmers https://t.co/q7IPCP59x9 via @aid4ag,591733 +"There is no climate change, Globalists! https://t.co/s9x0yNkhhS",91983 +Biggest threat to our economy is climate change https://t.co/oLzX7yZ9NF,67249 +RT @100isNow: He's CEO of a company that lied about climate change. Now he'll be Secretary of State. Meet Rex Tillerson…,143459 +RT @VICE: Venice could be swallowed by water within a century thanks to global warming: https://t.co/h9rvoxAoGA https://t.co/RPKeH8zyKo,663535 +"RT @Total_CardsMove: 'It's so warm outside because of climate change.' + +HA don't be naive. We all know it's because the Cubs are in the WS…",20476 +Niggas ask me what my inspiration was I told em global warming you feel me I'm too cozy,815297 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,274098 +RT @sccscot: We welcome recommendations published by MSPs today to improve Scotland's plan to tackle climate change #scotclimate…,30045 +"RT @yajairaxlove: Mid-November & it's hot as hell ... + +But global warming is a hoax oh.",681487 +Record-breaking climate change pushes world into 'uncharted territory' - The Guardian https://t.co/VCPiGKih5U,708966 +RT @AdamsFlaFan: #BigOilOwned House science chairman gets heat in Texas race for being a global warming skeptic https://t.co/uhFBfWJMwo,393689 +RT @thehill: Bill Nye slams CNN for having climate change skeptic on air https://t.co/5u8zGZh9hX https://t.co/DTCDdUGFOb,186705 +Michael Moore calls Trump’s actions on climate change ‘Declaration of War’ https://t.co/zR3aAQekQz #Eco #Green,233977 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,525794 +@LeoDiCaprio 's #BeforeTheFlood is such a masterpiece. Never knew so many things were associated with global warming.,863649 +@injculbard @martinstiff pretty sure I saw an article saying that we'd get more global warming after brexit. Maybe it was on a bus?,315964 +@pharris830 @EarthPlannr I do believe in climate change so what is Ackley are you referring to me being ignorant,588985 +Makes a free movie to raise awareness about climate change: https://t.co/uheSy4WMlF,669979 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,137059 +RT @joshgnosis: Ashby tries to divert questions away from Culleton back to climate change. Journos persist. Roberts walks out.,556915 +How to green the world's deserts and reverse climate change | Allan Savory https://t.co/lYwtQN6ZlQ via @YouTube,951973 +RT @94kristin: let's talk climate change,72939 +RT @mymodernmet: Photographer @thevonwong raises awareness for victims of climate change with epic shoot on a bed of lava…,205796 +"RT @SteveSGoddard: No matter how much Democrats scream and lie and protest and spread their hatred, the global warming scam will always be…",478581 +"RT @TIME: An entire Canadian river vanished due to climate change, researchers say https://t.co/gS6h3j6c9g",453375 +RT @davidsirota: WOW: “You and your friends will die of old age and I’m going to die from climate change.â€ https://t.co/tFswYjwczQ,555551 +RT @lizzydior: i might get out tomorrow and enjoy the global warming,219030 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,546209 +"RT @Khanoisseur: Same day Koch operative Pruitt takes down EPA climate change site, Trump crosses off another Koch wishlist item–exp…",416919 +RT @ajplus: A climate change skeptic says the United States is going to “shredâ€ the UN climate agreement. https://t.co/1hniHRGwNX,433824 +" Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/q98URnVtwC via @ShipsandPorts",621526 +RT @People4Bernie: .@SenSanders and @joshfoxfilm speak about climate change and the global movement to stop it https://t.co/FegVS4OgaA,616108 +Incoming GOP assemblyman believes climate change is good because it hurts 'our enemies' https://t.co/59d4PkHf5I https://t.co/Yjfil1PBno,70943 +"RT @350: Climate change isn't just about global warming, it's also about extreme winter storms like Stella: https://t.co/kM519MurNO",153248 +Dismissing the findings of 97% of climate change scientists is like dismissing the medical community's findings that smoking is bad for you.,854719 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,616444 +RT @DavidRivett1: White House warns Prince Charles against ‘lecturing’ on climate change | New York Post. Or what? War with England? https:…,118418 +"RT @Carbongate: Physicist - CO2 does not cause climate change, it RESPONDS to it - Video https://t.co/lySZb7gClh",846132 +"RT @manny_ottawa: Climate Alarmists stop believing in fraud of Global Warming. +Fat Joe & Steve Aoki called 'climate change EXPERTS' +(…",443106 +"RT @thedailybeast: President Trump's https://t.co/dRGLCKgTXT disappears civil rights, climate change, LGBT rights… ",758958 +"RT @liontornado: millions of British aid 'wasted' on overseas climate change projects https://t.co/YvqyqyYyiP foreign aid, renewable energ…",376412 +RT @kurteichenwald: GOP can deny climate change. They should stop worryingabout coal & start pushing solar so coal miners can get work. htt…,667731 +A third of the world now faces deadly heatwaves as result of climate change .. https://t.co/9jdGH9XkOj #climatechange,222107 +RT @ClimateCentral: A new wave of state bills could allow public schools to teach lies about climate change https://t.co/7CJ6jAsUQR via…,349545 +"RT @morgan_gary: Malcolm Roberts, with 77 votes, takes aim at Australia's @CSIROnews over climate change https://t.co/DeJAFPIGGb",284026 +"Remember they wanted lists of who worked on gender issues, on climate change +Wanted names named +Here's why https://t.co/y7MkRecRO8",564727 +@jacobahernz scientists who study climate change. Not scientists in general like you had said,522979 +RT @vbs269: It's currently 70 degrees and could snow tomorrow and Sunday but global warming isn't real I promise,460970 +RT @annie_blackmore: Not only a colossal windbag but a climate change denier. I hope residents of Jaywick and Mersea are listening to Owen…,371750 +RT @nytimesworld: Much of the fertile land left in Africa is deep in its rain forests; farming there could accelerate climate change. https…,251299 +RT @CBSThisMorning: 'We now have a president in America who does not believe in global warming.' -- @richardbranson https://t.co/EQU4oz2H5q,485211 +"RT @RFStew: Doug Edmeades (Prof. Rowarth's partner in EPA crime) is an 'out' climate change denier. Surprise, surprise. https://t.co/bIwLld…",502976 +@crapo4senate So what are you doing about climate change?,623282 +Scott Pruitt has spent his career denying the science of climate change. He is a dangerous choice to run the EPA https://t.co/fYMsCIi3Cu,217605 +Corals survived caribbean climate change https://t.co/8ucN2vkn84,225330 +"RT @JacobAWohl: Liberals think that 'The science is settled on global warming', yet they deny the science of chromosomes and gender https:/…",58854 +Scientists seek holy grail of climate change: removing CO2 from the atmosphere - CBS News https://t.co/c8DMW3XC6S https://t.co/Un9yCrYjqQ,723671 +@ChelseaClinton I bet you it's the same number that don't believe in climate change. It's very scary they only believe him!,366409 +RT @leahyparks: Thanks for the insightful review & your passion for nature and solving our climate change problems. See photos at:…,704565 +RT @BrothersBarIC: I guess there are some perks to global warming. Open beer gardens in February. https://t.co/ZAAwZYRgYB,655925 +"RT @deray: Because of climate change, the US is relocating the entire town of Isle de Jean Charles, Louisiana. https://t.co/iW1pxEJcKW",717618 +Teens suing U.S. over climate change ask for Exxon's 'Wayne Tracker' emails https://t.co/WMDsGiptcY via @Reuters,922449 +"RT @kylegriffin1: Chinese premier to Trump: 'Fighting climate change is a global consensus, it's not invented by China.' https://t.co/tWsut…",729885 +"RT @JoshFrydenberg: Australian Government today ratified the Paris Agreement, reaffirming commitment to global action on climate change…",599133 +"RT @Shonka_Truck: 65 degrees in November? This isn't awesome, you morons. Earth is absolutely battered mate. Sorry, climate change turns me…",89885 +RT @nynjpaweather: Sharp changes due to cold fronts and low pressure systems isn't a direct relationship to climate changes. https://t.co/e…,249039 +RT @SpiritualSmoker: it's absolutely disgusting how big of a problem climate change it yet nobody seems to give a fuck,440750 +"Solving climate change is a complex topic, but in a single crude brus... #DavidJCMacKay #quotes https://t.co/5rFVuYbU9U",18663 +"RT @BraddJaffy: EPA chief Scott Pruitt says carbon dioxide is not a primary contributor to global warming https://t.co/jr2DSH842b +https://t…",314549 +RT @Slate: Bret Stephens’ first New York Times column is classic climate change denialism: https://t.co/uvLlKLAoAM https://t.co/rjPkTVMF9c,643414 +A river in Canada just turned to piracy because of global warming - Popular Science https://t.co/c4iFCNbo0B,61835 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",659073 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",178597 +Fatih Birol #NYTEnergy '. 2/3 if the climate change will have to come from the energy sector @GE_France @GE_Europe https://t.co/cvLVhHyN1r,152298 +"RT @Rockprincess818: Screw the left. repeal OCare, ignore their global warming religion, limit immigration, slash entitlements. These pe…",581943 +"CHECK OUT THESE WEATHER STORIES https://t.co/LwVzcPO30e Do Not believe the Global warming climate change stories sold by UN, Vatican & Obama",781913 +"RT @rcbregman: The many, many problems that a universal basic income can help solve, from climate change to stress to inequality +https://t…",336886 +RT @ECOHZ: Norwegian oil production and keeping global warming ‘well below 2°C’ https://t.co/DDXQ3WgsKU by @SEIresearch…,624852 +RT @censoj: The Calabar Super Highway creates challenges for climate change especially the tropical forest in the context of the transport…,655116 +RT @WWFScotland: RT if you agree we need to change climate change! #MakeClimateMatter https://t.co/9Y5A28VvZv,5591 +"RT @rhysam: Look forward to reading Malcolm Roberts' report into climate change, though I hear some of the words in yellow crayon are hard…",731620 +RT @SBSNews: US won't budge on climate change despite Indigenous groups and Arctic nations' pleas https://t.co/i7eJRCkD6B,872882 +Scott Pruitt climate change freakout: Calm down and carry on. https://t.co/IcK3khiiti,320393 +RT @JenLucPiquant: The US is relocating an entire town because of climate change. And this is just the beginning https://t.co/PuOVEVM9bR,353463 +US 'forces G20 to drop any mention of climate change' in joint statement https://t.co/WMpxqIT5rn https://t.co/QdVoaXETKn,816508 +"RT @GartrellLinda: RT to all still uninformed about climate change hoax +Top Scientist Resigns Admitting Global Warming Is A Big Scam https:…",636325 +RT @ajplus: Diplomats at the UN global warming summit are very concerned about Trump's stance on climate change. https://t.co/wZ6VbM60K8,53058 +RT @kenklippenstein: Latest reminder that solving climate change would be incomparably less expensive than living with it https://t.co/NZJP…,725589 +I just want to save the planet 😔 climate change is YOUR problem too people!!,693559 +RT @pablorodas: ClimateCentral: Cities from Sydney to Oslo are setting more ambitious targets to cut climate change than their nat… https:/…,66255 +"Soooo was there a search criterion here other than 'scientists who are unconcerned about climate change'? + +https://t.co/NS8K1HAEew",218797 +"RT @justpaulstuff: @charliekirk11 I suppose it was climate change that hit Galveston in 1900 and left up to 12,000 dead. These people…",307092 +@TheLurioReport we had a way to get our guys into orbit... ares v would have flown already. priority has been on global warming sats,188557 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",137392 +RT @Global_Call_: A huge thank you to the thousands of people all over the world who stood for #LandRightsNow to fight climate change. http…,597086 +Nor have you looked at the scientific research on climate change. https://t.co/yVACxuKjE9,96006 +I actually like Hilary because she endorses alternative energy.. Donald says climate change is a hoax by the Chinese..,330509 +RT @TB_Times: Trump administration disbands federal advisory committee on climate change https://t.co/BfXXiu1YUN,78639 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",536231 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,304814 +RT @SustDev: We need a healthy ocean to fight climate change! Register your commitments to #SaveOurOcean https://t.co/bnyOFek3IL https://t…,553696 +@FaceTheNation It is a hoax...hasn't been any global warming in 17 years...fact,455898 +Here's what President Trump's executive order on climate change means for the world https://t.co/mnM8BvsgPW by #CNN… https://t.co/HHl1j1AsAj,745466 +"RT @Alex_Verbeek: �� + +Jane Goodall calls Trump’s climate change agenda ‘immensely depressing’ + +https://t.co/OtlnzQAyhQ +#climate…",846719 +RT @YourTumblrFeed: stop global warming i don’t look good in shorts,722710 +"German economy minister blocks agreement on climate change plan + +By Markus Wacket | November 9 2016 (Reuters) Germa… https://t.co/0TCfaIJoVa",989172 +RT @JuddLegum: 5. As a party the GOP is untethered to reality. There is no 'debate' about whether climate change is real. But most Republic…,492079 +RT @affair_state: Crowding out low-carbon alternatives that are critical to avoid dangerous climate change. #ClimateChange,315869 +"@redwombat101 it's a freak occurrence affecting people who never get asthma, becoming common in Victoria due to climate change effects",32675 +"RT @richardabetts: As far as I can tell, nobody other than the journalist is claiming this to be due to global warming! https://t.co/eECCuv…",959684 +RT @ICN_UK: Holy See calls for 'intergenerational solidarity' to deal with climate change - Independent Catholic News https://t.co/Hcnx7ujc…,641938 +RT @BitsieTulloch: Happy 💀🎃🕸! Want to see something truly scary? @NatGeo & @LeoDiCaprio made a great documentary about global warming: http…,933443 +"To the left wing lunatics promoting global warming, go look outside, dummies #SolarEclipse2017",458401 +"@inferillum @johnpodesta @ChadHGriffin sister, and his views on the pipelines, climate change issues is endgame for me. I can't do it.",554994 +"RT @Green_Footballs: Trump has asked for lists of names of climate change scientists, women’s rights advocates, & now anti-terror officials…",461467 +An Antarctic volcano caused rapid climate change at the end of the last ice age https://t.co/fD2luakE3c,902353 +"RT @UlrichJvV: THIS! 'To find solutions to climate change, we have to look at the bigger picture.' https://t.co/QWWBKfpog6…",178794 +Fire the bums...that will give them a little climate change...no more tax payer funded incomes for #FakeNews source… https://t.co/Fi9x6J4isn,387356 +RT @Crazycook99: Predicting climate change 100 years ago. @AltYelloNatPark @ActualEPAFacts @RogueNASA #ActOnClimate #climatechange https://…,380276 +"RT @michael_w_busch: Reminder, everyone: Extreme heat events are becoming much more frequent due to the climate change we've caused. We…",824355 +Agree people claiming CO2 is positive for plants & global warming is good are absurd. Limited effect in some cases… https://t.co/0XwxGifuZT,685606 +RT @faIIoutbay: do you believe in global warming? rt after voting,85488 +If you haven't watched @LeoDiCaprio climate change documentary 'Before the Flood' you have to! He knows what he's fighting for! ðŸŒðŸŒ🌎🌳🌲,50608 +No shortcuts! Fight climate change for real. Go solar 💚🌎✅ #cleanenergy #renewables #protectmotherearth https://t.co/QNOhkW8ZhZ,447977 +Marrakech test for momentum to fight climate change https://t.co/AM1vMenxnm,943930 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,183083 +Centrica is a world leader for action on climate change https://t.co/gKyCvSKHhM | https://t.co/xgCuk25En6,359626 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,810128 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,380913 +RT @cnni: 'One issue your great-great-great grandchildren will talk about in reference to the Trump years is climate change' https://t.co/7…,516209 +Once you start to look into the guts of climate change you find th... #PeterGarrett #quotation https://t.co/7uYhxUepRe,993538 +"If the website goes dark, years of work we have done on climate change will disappear' says anonymous EPA staffer https://t.co/B7U0XHd4VF",594772 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,22428 +This sounds exactly like his 'China made up global warming' tweet. https://t.co/SShcjH8VjQ,991876 +"Nature, not human-induced climate change, could be cause of up to half of Arctic sea ice loss ???https://t.co/5bqYhKhxcY",504172 +"RT @NimkoAli: Its 2017 and we are about to give DUP power. DUP who are: +- anti-abortion +- anti-LGBT rights +- climate change deniers",283272 +I'm wearing a flight jacket in February in NYC. Life's good. Or global warming 🤷🏻‍♀️,914599 +Rising conservative voices call for climate change action https://t.co/95QwmxBtIP,752129 +"After a really well-written article on Huffington Post, I'm now 100% convinced mankind causes global warming.",701957 +Realizing I can't even make small talk about the weather because then I'll just go off on global warming,858489 +#climatechange The Drum How Twitter and Carbon Brief are helping climate change scientists… https://t.co/RxkuliUOXT… https://t.co/Y9rHTQpSip,221704 +"RT @astro_luca: Just a reminder: global warming is not a political argument but a fact, to which we must react with global policies https:/…",409406 +RT @RLangTip: How to import 100 years of Eurpoean climate change data into R: https://t.co/xqrMLpvqmf #rstats,468372 +Al Gore offers to work with Trump on climate change. Good luck with that. - The Washington Post https://t.co/zIbd0bSx4P,818509 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,204729 +RT @brianschatz: How about every time someone participates in a Bernie vs Hillary argument you talk about climate change?,394896 +"Doctor: if you don't change your ways you'll die young. +Me, thinking of the horrors of climate change awaiting us: that's the idea",397593 +"RT @avansaun: Docs say climate change makes Americans sicker, while #GOP takes away #healthcare and ignores climate https://t.co/ssMsud8ln…",465474 +"RT @radioheadfloyd: Polar vortex shifting due to climate change, extending winter, study finds - The Washington Post https://t.co/iKjoQOumCN",450344 +@DressingCute and then I remembered global warming... never mind I'm packing flip flops,502719 +"RT @Greenpeace: In the era of climate change, Egypt's farmers are learning how to adapt to their drying land https://t.co/bzF8CKe8kz https:…",816499 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,291002 +"RT @ret_ward: In the age of Trump, a climate change libel suit heads to trial https://t.co/5ZfbZF8jN3",301225 +RT @OldWrestlingPic: More proof climate change does exist as hell has frozen over. Great to see @TheJimCornette will do this. A cant mis…,402773 +RT @Seasaver: #InternationalForestDay Kelp forests are disappearing due to climate change. #SOSKelps #IntForestDay ��Kyle McBurnie https://t…,81233 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,642569 +"If we subsidized the switch to clean energy as much as we subsidize big oil, we could EASILY slow or halt climate change. Why aren't we?",900041 +RT @MJRLdeGraaff: Global warming is fake! RT World leaders duped by manipulated global warming data https://t.co/dEsGezkkJK via @MailOnline,67900 +RT @theintercept: Covering disasters like #Harvey while ignoring climate change fails in the most basic duty of journalism. https://t.co/7m…,237131 +RT @KyleKulinski: A state lawmaker in Maine has introduced a bill that would affirm climate change denial as free speech in the state. http…,311030 +RT @scienmag: A new study provides a solid evidence for global warming https://t.co/aGrzioONra https://t.co/rJ5cdjSEoN,975455 +RT @BougieLa: A head of veteran affairs that's not a vet.An anti climate change person to head the EPA.An anti public school person to look…,69232 +"RT @nytimesphoto: How do you visualize climate change? For 8 stories in 5 countries, a NYT photographer captured aerial views.… ",156024 +RT @EmperorDarroux: Scientists copy climate change data in fear of a Trump crackdown https://t.co/A64VqMu4r7,268543 +"RT @JacobAWohl: So far, so good // #MAGA +* Dismantling climate change initiatives. +* Extreme Vetting +*Enforcing regulatory reform +* Protect…",586693 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,709157 +"RT @CBSThisMorning: How climate change is changing the landscape of @YosemiteNPS, ahead on @CBSThisMorning: Saturday. @PBSNature https://t.…",582003 +RT @NishaCarelse: I have a soft spot for animals and nature that's why i firmly believe in climate change^^#ClimateAction🐼🐻🐝🐠🐚🌷🍀🌎,689136 +RT @richardabetts: 'Man-made climate change is real with 'no room for doubt' say experts' https://t.co/Toz0r4QtAd - Mail on Sunday @MailOnl…,953619 +"RT @PeterWSinclair: @KatyTurNBC please compare coverage of 'email' nonsense with climate change, Russian gaming of election. Get back to me…",971710 +"RT @africaprogress: By threatening basic human needs, climate change will be a catalyst for instability, migration and conflict. https://t.…",809619 +RT @BruceBartlett: The problem with NY Times and climate change isn't what you think https://t.co/lV8mRiY9UI https://t.co/G5AzeLtX1U,595597 +RT @mashable: Trump administration begins altering EPA climate change websites https://t.co/bybwPqRf8s,274499 +"RT @EcoInternet3: In generational shift, college Republicans poised to reform party on #climate change: Reuters https://t.co/YPnBGKZug5 #en…",771063 +"Christiana Figueres, former head of the UN climate change body, on climate action that is already showing. https://t.co/TMhjHXglfV",597739 +"Its possible he may be right about climate change, but then again its possible he would have been 242 ripped withou… https://t.co/5GopBWdZpR",110053 +@fernhall22 so scary to think that global warming is happening quickly & our current president doesn't even acknowledge this prob #uwleng110,723442 +RT @Dory: if global warming doesn't exist then why is club penguin shutting down,881554 +Is carbon dioxide a major contributor to global warming? https://t.co/TUzaCZgIP1,704923 +RT @PopSci: How climate change is threatening American agriculture https://t.co/eNm6EByzN9 https://t.co/maAnBrgewA,822018 +RT @guardian: Reindeer shrink as climate change in Arctic puts their food on ice https://t.co/42B1NxCSh9,505322 +"RT @ErikSolheim: Poor countries suffer most from climate change. +Sadly, no surprise there. +New map shows impact on debt default.…",120776 +RT @OllieBarbieri: Country with the 2nd highest greenhouse gas emissions on the planet just elected a climate change denier as president. #…,404757 +RT @latimes: You can now figure out how much you're contributing to climate change https://t.co/UVvBJk9VBL https://t.co/3IAx9ISczr,811053 +The kids suing the government over climate change are our best hope now: https://t.co/bTBoh0hJSJ via @slate,317696 +#EarthToMarrakech: COP22's digital call-to-action on climate change https://t.co/R6HnPut3uq #SoloConectate,734766 +"RT @ProSyn: Like it or not, humanity will remain globally connected, facing common problems like climate change and terrorism https://t.co/…",841196 +RT @srpeatling: . @SenatorHume: 'Perhaps Senator Rice can enlighten us as to which piece of anatomy really does cause climate change.',400682 +"RT @cstclair1: Climate researchers cancel expedition after climate change makes conditions too dangerous +https://t.co/9v0KYYa9o1 https://t.…",649511 +"This is really bad news about the effects of unchecked global warming. Good reading, well researched. https://t.co/16zcrx1w8u",740566 +Friends voting Trump: Do you also not believe in global warming or do you just find other issues to be more important? Genuinely curious,798359 +"RT @haveigotnews: White House claims President Trump’s views on climate change are 'evolving', although they're currently at single-celled…",861578 +Palace to study PH move on climate change deal https://t.co/7toTuoiUNk placating ramos after his blast of duterte,5417 +"No more coffee cuz of global warming!? How am I suppose to drink my whiskey in the morning, plain like some kinda alcoholic?",609894 +RT @thehill: Sanders tears into EPA head for saying CO2 isn't a 'primary contributor' to climate change https://t.co/jlcZmbdU9z https://t.c…,174874 +@realdonaldtrump Sheila Gunn Reid's reports from the UN climate change convention in Morocco https://t.co/QFvq8CCsTk,227482 +RT @SiniErajaa: Most wood energy schemes are a 'disaster' for climate change tells @BBCScienceNews on new @ChathamHouse report https://t.co…,316886 +"A State Dept. climate change page has changed, providing another clue about Trump's approach to climate change… https://t.co/xGCOzQFz3I",112798 +RT @DavidCornDC: This is the brilliant mind people were counting on to persuade Trump not to pull out of the Paris climate change ac…,44507 +RT @barelypolitix: Sweet to go from a president who said climate change is biggest threat to world peace to Trump who recognizes & acts upo…,444423 +"USDA will reprioritize $43 million for safety & restoration efforts in CA, but says limited resources & climate change limit efforts. 2/2",878768 +"It is happening now. Millions of humans are forced to flee armed conflicts, climate change, inequalities, and... https://t.co/p92QkQ3sXm",951095 +"RT @USARedOrchestra: Trump said climate change is a hoax, then warned of its dire effects in app to build sea wall at Irish golf course. +ht…",970445 +RT @KyleHazlewood: By far the largest issue our generation faces is climate change & we just elected someone who thinks it was conjured up…,208227 +RT @JonCozart: But if he doesn't combat global warming there won't be any more snowflakes to make fun of,545402 +"RT @TrickOrTreackle: Denying evidence of climate change is like finding odd spots in your intimate regions, and denying that genital herpes…",498559 +RT @EnvDefenseFund: Spring came early this year – it’s no surprise that climate change is the culprit. https://t.co/Reu3yJRKKp,454769 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,490905 +RT @JustForFun7405: Don't believe global warming is a real thing? Take a look at this https://t.co/Ju0JY2jsKR,343981 +How do we get @realDonaldTrump to believe in climate change?? #BeforetheFlood,891649 +"RT @Reuters: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/XM7qUmahdX https://t.co/NA2yg8JkP9",794296 +12 economic facts on energy and climate change via The Hamilton Project UniversityofChicago Brookings... https://t.co/mVE4fjKBVc,669149 +Trump admits climate change is real in application for sea wall to protect his golf course. https://t.co/hqyeUCNTyz,104997 +RT @comicwade: donald trump refused to believe scientists so they sent in leonardo dicaprio to educate him on climate change and environmen…,54711 +RT @comradewong: Trump trying to speak on climate change = classic Trump word salad. Take a look at this exchange with NYT. https://t.co/yl…,756770 +RT @cnni: The mental health implications of climate change https://t.co/hLkxBxj4YS https://t.co/HcPOm814yW,632633 +@sweetestsara They all get to die of old age when we'll die from climate change,882503 +"India asks developed countries to provide finance, tech support to developing nations to tackle climate change thr… https://t.co/wXkN39q01L",604089 +RT @JunkScience: Gov. Moonbeam burdens poor with higher taxes to solve the imaginary problem of global warming. https://t.co/3uXLbx3KoF,37591 +RT @kwilli1046: Monster snowstorm in Colorado forces postponement of climate change & global warming rally https://t.co/TlQUazU9kj https://…,304290 +.@jaketapper @brianstelter @BretBaier have any of you ever done a story on geoengineering and how it relates to climate change?,167356 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,398680 +"Trump talks climate change with Leo DiCaprio #RedNationRising +https://t.co/pHHGtEXzyC",268980 +"@alroker AL. I might be related to wright brothers, and i think I just solved global warming. I sent emails to everyone!",485450 +RT @AndyBrown1_: Harvey should be the turning point in fighting climate change https://t.co/OrLJc5P3A8,246743 +When are we gonna stop just talking about climate change and actually do something about it,83632 +"RT @NadiaRashd: 'Planetary Health' calls for addressing nexus of human health, environmental sustainability & climate change…",804653 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,614272 +"Food security +and climate change. https://t.co/fIQJspwCbe",699619 +CDC’s canceled climate change conference is back on — thanks to Al Gore https://t.co/WcRwtju9W0,128361 +RT @davidsirota: Florida faces one of the largest hurricanes in history -- and its state government is run by climate change deniers https:…,617614 +"RT @viktor_spas: El Niño on a warming planet may have sparked the Zika epidemic, scientists report - Washington Post… ",756863 +RT @climatehawk1: Sudan farmers work 2 save soils as #climate change brings desert closer | @HannahMcNeish @Guardian…,550624 +"RT @PuffnPuffin: @OtagoGrad @UN long ago blatantly stated the truth about their purpose and that of climate change. + +#GlobalWarming…",971913 +GOP senator on climate change: 'Mankind has actually flourished in warmer temperatures' https://t.co/JrqbTltIZ4 # via @HuffPostPol,597102 +"RT @NYTScience: In the Netherlands, climate change is not a hypothetical or a drag on the economy. It’s an opportunity. https://t.co/1za3lE…",468901 +"[FIRST ON TWITTER].@martinandanar: 4. Results of the United Nations climate change conferences held in Marrakech, Morocco | @dzIQ990",512603 +How climate change will stress the grid and what ISOs are doing about it https://t.co/1Y8PnE3JYZ,869 +"@rnadtown thanks 😢 im not dumping him over global warming, but ya know.",135515 +"RT @noaagov: Political leaders in Sweden take steps to actually address climate change, not dismiss it as a hoax created by China.",471002 +RT @CBCBakerGeorgeT: @EazyMF_E ðŸ˜ Reagan believed in climate change; Lincoln fought for civil rights; Wash. was actually in an armed revolut…,76054 +RT @weermanreinier: Wereldwijd veel meer windmolens = minder global warming = minder zeespiegelstijging = minder windmolens op zee ;-)…,835455 +RT @beforeitsnews: Stopping global warming is the only way to save coral reefs https://t.co/NEBN94ylgs,593722 +"#XRIM #MONEY business + +How do you save Lady Liberty from climate change? https://t.co/VafIjqTu9I https://t.co/XHbPLZ7aYc + +— Climate Chang…",209903 +RT @C_Coolidge: 11/30/2015: IBT: COP21: Full speech by Prince Charles to delegates at climate change talks in Paris https://t.co/MsWiRhv62I,311687 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/WHdOwIvo9X,38624 +Trump argues that reality of climate change depends on how much it might cost business. https://t.co/qpSGCe7EvE https://t.co/gDT29VYE6M,140169 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",50739 +Writing about global climate change I'm going AWFF,134179 +"Farmers may see climate change as a seasonal issue, not long-term. Need awareness to trigger behavioral change @UNDPasiapac @humanaffairsUK",368885 +RT @lofalexandria: #Environment #Conservation #Science https://t.co/UOViK8WWjW US needs to lead the way in combating climate change | Four…,955073 +"RT @laurenduca: @PhilipRucker Harvey is what we can expect from the future of climate change, and American infrastructure is grossl…",642519 +"@EricBlake12 @KHayhoe One example was New York's gov. declaring that Sandy was a response to climate change, with no clear evidence.",849811 +Information is Beautiful: Extreme global warming solutions currently on the table https://t.co/Es5ONwa20H,377434 +"Hello, today I'm going to talk about global warming. I will talk about the definition of global warming, current situation,",61946 +I'm Jordan 14 years of age.I care about climate change. I've been learning about it at my school and it's a really big problem.@LeoDiCaprio,128149 +"RT @cnni: Depression, anxiety, PTSD: The mental impact of climate change https://t.co/omkeRmFZLQ https://t.co/PAlwHsHQhh",545779 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,145812 +"Want to help with conservation, climate change etc? �� #GoVegan + https://t.co/GxRDynjbtO",839220 +RT @Ha_Tanya: 'Nicholas Stern: cost of global warming ‘is worse than I feared’' https://t.co/wbSpI94NsN https://t.co/E7p5rA9CRG,23630 +RT @jalloyd4: The descent into #TrumpHell begins - chooses top #climate change skeptic to lead #Environmental Protection Agency https://t.c…,631635 +"Be careful, Lyin’ Ted Cruz just used a man, I have so powerful that politics is a great wall – we need global warming! I’ve",659284 +@chrispydog Green/Left divorced arguments over global warming from evidence & science to push wind/solar solution against nuclear. Foolish.,636800 +RT @BRAND_urban: 'The real challenge is not climate change but mind change' De wake-up call van Thomas Rau van @rau_architects bij…,246233 +"> Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/3acbETtAES via @ShipsandPorts",224961 +RT @zellieimani: This is who was elected President. A man who believes global warming is a hoax perpetuated by the Chinese. https://t.co/Xy…,227170 +"RT @NatCounterPunch: As the earth gets hotter, the mass media coverage of climate change gets colder. https://t.co/xkhxbO98qC",24500 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",444613 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,173797 +"RT @Fusion: Imagine, if you will, a world where the media covered climate change the way it covers Hillary's emails:…",183700 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,305251 +"RT @QueenAmaaal: global warming really doing crazy things , how is the DMV having 70 degree weather in early February ....",487336 +China to Trump: We didn't make up climate change - Los Angeles Times https://t.co/ws0vJBAyaX,521403 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,741971 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,171732 +RT @earthguardianz: Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/ybpZQPkOLF,354162 +We need to educate local communities about climate change & local strategies to tackle it- Mr Mungwe. @environmentza @Youth_SAIIA @CANIntl,572875 +"@nytpolitics Wow, it speaks?!! Sad that poster child of 'white privilege' is so pathetic. Diabetes caused by 'climate change'....#yikes",337961 +"RT @neilvic: Peatland restoration plan to cut climate change gas emissions: +https://t.co/5wNTEADiN7 #peat #Scotland #climate https://t.co/w…",39327 +RT @joshuasimmons: I don't know how to convince someone climate change poses an existential threat to humanity without news stories or stat…,666488 +But climate change is a total hoax! https://t.co/RkfyBTkAKZ,686787 +future generations will study how inbred morons in the south and Midwest elected a man who denied global warming in 2016,248289 +RT @jawja100: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/otakslZ7Wa,644357 +RT @EELegal: The Rockefeller family have a secret “climate change” plan they are trying to force on the country https://t.co/1xIYA6EEgu,106812 +RT @theecoheroes: Nearly all coral reefs will be ruined by climate change. #environment #climatechange https://t.co/YWBJRByCGV https://t.co…,492300 +RT @ajplus: President Trump plans to cut funding for programs fighting climate change. https://t.co/EkOfXl3Wns,929522 +@JesusSancen gonna tell adrean this proves global warming don't exist,827492 +@kgpetroni @HellaHelton @tmcLAUGHINatyou oh yeah global warming is destroying us dead ass,92888 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,748860 +#Election2016 #SNOBS #Rigged #StrongerTogether #Debate climate change is directly related to global terrorism https://t.co/6SoXS32CqO,544547 +"@bgreene I'm a believer in climate change, Brian, but you work against changing minds comparing short term forecast… https://t.co/TRktTokz24",970736 +"RT @ChrisJZullo: How can Anthony Scaramucci represent administration when he believes in climate change, marriage equality and is pro-choic…",805808 +Bet my bottom dollar that the 'climate change' beloved of establishment 'scientists' has the politically-coded impl… https://t.co/zb8UBaeaAh,320551 +"On climate change and the economy, we're trapped in an idiotic netherworld | Greg Jericho https://t.co/LG4ldNgwLR +We must drop stupidity",210944 +EPA chief Scott Pruitt doubts carbon dioxide the main culprit in global warming https://t.co/DIN3LLvPs8,109631 +RT @David_Ritter: Last night @NaomiAKlein called out the IPA for their destructive nonsense on global warming right there on #qanda https:…,251292 +RT @LionelMedia: It's okay. Jets and cars don't cause global warming. Relax. https://t.co/7gArgQCtCX,170364 +Importance of climate change emergency prep work https://t.co/SbRMvroWi7,948426 +RT @JoshuaMound: Good news: We might all die from infections before global warming gets us. https://t.co/3105a0nvZd,780776 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,693604 +"RT @F1isP1: Toxic air is bigger threat to plants than climate change + +https://t.co/cnWrtI5TKw @CleanAirLondon",799998 +@karlglazebrook @MJIBrown I'd love to see Dumb Nation's Royal Commission on climate change. Judges are trained to evaluate evidence.,373943 +Soils help to combat and adapt to climate change by playing a key role in the carbon cycle https://t.co/KlqoMlrRJ1 via @FAOKnowledge,593149 +"RT @Klimaatactie: system change - not climate change! +the scientist promoting radical climate action, and a Marshall plan for climate…",264289 +"Describes the global warming supporters, actually>>@ClimateOpp",479344 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,820909 +"@djrothkopf Anybody who denies climate change, an existential threat to our society, is not qualified to lead at all at any social level.",492817 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,831733 +https://t.co/KoFxLDRxzy great Sat night documentary to watch. Had no idea the impact of beef consumption on climate change.#BeforetheFlood,405413 +Google:Here is the worst defense of climate change skepticism that you will ever see - Washington Post https://t.co/q8Pam8N1dU,685176 +"@katlivezey @By_Any_Means1 @CalicoFrank Prayers are nice, but combatting climate change is what reality matters.",982870 +VERY important thread about climate change 👇👇 https://t.co/7vo8cs8QNx,92655 +"It's already happening: Hundreds of animals, plants locally extinct due to climate change https://t.co/2wDulkVYCG",929710 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,365298 +CNN News Services: Pivots on climate change https://t.co/ae5xnDwFlS,597644 +"@WSJ @greg_ip They need to move, relocate, the coastal waters are going to continue to rise with global warming and… https://t.co/TmemB9vMlH",908494 +The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/fJ1iUYY7dn,532450 +You need to understand climate change is fact not fiction,431470 +RT @samsteinhp: FWIW. we have probably lost the battle against climate change tonight,261786 +RT @MazzucatoM: The challenge is to think of modern ‘missions’ e.g. around climate change and ’care’. A new ‘direction’ for innovat…,126953 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/PpP0Pu876A #Politics #News",157454 +"Top story: On climate change, Scott Pruitt causes an uproar — and contradicts t… https://t.co/HHpinYfsRl, see more https://t.co/9G5vNeGFfd",911863 +foodtank: The futureoffoodorg & BarillaCFN bring together diverse voices to discuss climate change and our food sy… https://t.co/KSnF7M6uLd?,968491 +"@ladylubbock2 hey Monty, saw your tweet, yep, global warming is freezing us to death.Cycle of Earths climate.Smiles.",341684 +"RT @anchor: Vault built to protect seeds from world-ending scenarios gets flooded after climate change melts ice. ❄️ + +Hear more…",868000 +RT @Reuters: Most Americans want 'aggressive' action on climate change: Reuters/Ipsos poll https://t.co/qSwNJjXOCq,937870 +"iMariaJohnsen: _shirleyst I suggest to create a section about climate change. They're removing information about it, so it's a hot topic to…",196243 +Humans stay shooting themselves in the foot. Maybe global warming is inevitable. It’s the end of the this global weather era too. LOL,749947 +RT @kinghyungwon: why would you leave an entire country in the hands of a man who thinks global warming is a hoax created by china https://…,10201 +"RT @washingtonpost: Without action on climate change, say goodbye to polar bears https://t.co/2skrIj2eTF",861465 +"RT @Schneiderman: With EPA chief @ScottPruittOK deny㏌g basic scientific consensus around CO2 caused climate change, I'm ready to prote…",418775 +@hawkyle88 I remember reading a climate change impact card with wildfires as one scenario. I always thought it was… https://t.co/2Op9f4DA21,561942 +RT @EmperorDarroux: G20 summit shows Trump took U.S. from first to worst on climate change in under a year https://t.co/Ok1INhpRYK,61831 +PM Nawaz orders disbursement of Rs 553m across Pakistan to fight climate change https://t.co/QAQD2srEXL https://t.co/Sq5YLRZZvS,224428 +RT @KurtSchlichter: I am a climate change denier. How long should I spend in jail for my heresy? #caring,470738 +"Blaming everything on global warming +https://t.co/0sRrP7YEYG",694377 +"RT @b9AcE: Somewhere in the anti-science 'debate' on climate change, we seem to have forgotten e.g. acid-rain. Poisonous algae boom, statue…",557591 +"RT @kelkulus: Irony: Florida, a state in danger of being washed away due to rising sea levels, just elected a guy who denies climate change…",504856 +RT @lisang: Macron invites American climate change scientists to come do their research in France. https://t.co/Icj12yfvKr,988980 +President has not been honest in acknowledging limitations of his commitment to the Paris climate change agreement. https://t.co/1xFcdPxDU8,811937 +RT @TheGlobalGoals: TWELVE of our #GlobalGoals are directly linked to climate change. The #ParisAgreement is essential for their succes…,78955 +"As Thatcher understood, Conservatives are not the true climate change deniers | John Gummer https://t.co/5B2a1WtUoW The Guardian World New…",166783 +"Um, monthly temperature averages are always brought to you by 'climate change'. https://t.co/kPvQhdIf6B",2520 +"RT @triodosuk: Now is the time for Governments, businesses & individuals to start taking climate change seriously and react by law…",268418 +RT @AngleseaAC: Humans on the verge of causing Earth’s fastest climate change in 50m years (Poking an angry bear�� #auspol #springst) https:…,911873 +"RT @MisterSchaffner: ��Fuck global warming, my neck is so frio, I'm currently lookin' for +95 Leo��",380946 +"RT @SteveSGoddard: If global warming was a real problem, climate scientists wouldn't have to cheat, lie and tamper with data.",841067 +"DiCaprio's climate change doc wants Alberta to feel very, very bad. https://t.co/dDMOs1OQAI via @huffpostalberta",760341 +@realDonaldTrump When will you acknowledge the possibility that climate change is a real thing and it's negatively… https://t.co/FoAoj9VCJI,872864 +RT @AIANational: Architects are helping cities proactively address the possible dangers from catastrophic climate change impact:…,833511 +"RT @nytimesworld: As negotiations over the world's biggest trade deal are set to begin, Canada wants climate change added https://t.co/gXqN…",795400 +From @voxdotcom - Blue states and cities are pulling an end run around Trump on climate change.… https://t.co/P7ZfMsnuf7,947288 +Thank God global warming isnt real. https://t.co/SeWiEgfczq,97754 +Niggas ask me what my inspiration is I tell em global warming,848402 +Prince Charles co-authors Ladybird climate change book https://t.co/fRLGtSY7Rh https://t.co/BCqLDz5toe,77036 +"This device could read the story of climate change denier, try focusing on solutions.",280663 +RT @BellaFlokarti: Shortsighted Budget 2017 ignores health impacts of climate change https://t.co/kzityLXea2 @IndependentAus,654324 +"RT @msilangil91: Trump named an EPA head who is SUING the EPA on climate change. + +How is meeting w/ Al Gore and Leonardo DiCaprio gonna hel…",105628 +"RT @AUThackeray: While on one hand Centre speaks of Paris Agreement and our commitment to fighting climate change, locally we damage Aarey…",227665 +Scottish Parliament committees question ambition of draft climate change plans | Holyrood Magazine (@holyrooddaily) https://t.co/ny6kr4M2Ni,169839 +"You mean global warming really IS fake? + +https://t.co/rupyvFGiea",334216 +@geeoharee The reply to that tweet joking that it's due to climate change and UV radiation ��,502105 +RT @pablorodas: #climate #p2 RT Energy Department closes office working on climate change abroad. https://t.co/IBU54ifHlz #tcot #2A https:/…,174279 +"RT @EnvDefenseFund: What we do, and don’t, know about the Southeast wildfires and climate change. https://t.co/rZizqBn9NX",193681 +I see canada is not ready for global warming @JustinTrudeau all I see is fire and we are using old planes that can't keep up sad !!,457324 +@ianbremmer @SophiaBush And according to @realDonaldTrump climate change is just a hoax! What a fucking moron!!!!,562231 +RT @WakeUp__America: Retweet if you know climate change is caused by humans & that we need to work towards transforming our energy system a…,254480 +"RT @nickgourevitch: Recent Quinnipiac Poll: +73% of public concerned about climate change +Trump response: +Ban the phrase 'climate change' +ht…",432635 +"@jules_su @realDonaldTrump Jules you're a couple hundred yrs late to worry about climate change, man-up & accept th… https://t.co/d63gkOeK4R",916814 +RT @eugenegu: Hurricane #Irma coming on the heels of Harvey shows that climate change is not a political issue. It's a humanitarian one.,217862 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,454694 +Cities best armed to fight climate change: UN climate chief - Reuters https://t.co/nKMsaPi3eq,512554 +The US has the most people that believe in angels in the world. Yet global warming is too ridiculous of a concept for our new leaders,249736 +RT @yournewswire: Trump forced UN to stop making it compulsory for nations to contribute funding to global climate change programs. https:/…,979904 +RT @christian_aid: Paris Agreement shows 'on climate change we actually are witnessing an era of global cooperation and consensus': https:/…,841942 +Doctors warn climate change threatens public health https://t.co/9dLIczp229 by #sciam via @c0nvey https://t.co/jOLacOku0x,141852 +RT @kristilloyd123: Rahm Emanuel revives deleted EPA climate change webpage https://t.co/7wpo8X3HF3,279014 +RT @GeorgeSerafeim: The 3% of scientific papers that deny climate change? A review found them flawed #climatechange #Sustainability https:…,511552 +Canada’s permafrost is collapsing thanks to climate change https://t.co/LQcB1MK4w8 via @vicenews,502057 +"RT @kurteichenwald: In full page ad in NYT in 2009, @realDonaldTrump called for urgent action on climate change. Which does he believe? htt…",822243 +RT @YarmolukDan: Hopes of mild climate change dashed by new research https://t.co/7rZHcm0jxM #climatechange #environment https://t.co/g3qC3…,586976 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,870627 +RT @trishcahill: “Saying I didn’t know or I was just following orders doesn’t cut it. We’re talking about runaway climate change' Be…,809260 +Doomsday narratives about climate change don't work. But here's what does | Victoria Herrmann https://t.co/IIuz7XRgH9,258979 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,342572 +One of the most troubling ideas about climate change just found new evidence in its favor https://t.co/SM2VIPc1Un,833715 +"Pope, Orthodox leader make climate change appeal to 'heal wounded creation' https://t.co/5XyJ3GCsbk",63205 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,327 +Russian President Vladimir Putin says climate change good for economy https://t.co/Axhp4OxPBm,286773 +RT @HarvardChanSPH: The psychological effects of climate change include 'pre-traumatic stress disorder' says Lise van Susteren https://t.co…,831328 +This obstreperousness from the panjandrums of the scientific establishment elides the query: if climate change is… https://t.co/sLZxeiBW9W,265516 +"RT @NPRinskeep: Reuters/Ipsos: 72% of Americans want 'aggressive action' on climate change, but 'few see it as a priority.'",988076 +RT @Colvinius: The President-Elect of the United States of America on climate change. https://t.co/KaBwT1GY64,92963 +RT @laylamoran: Seriously concerning. Hope we can raise climate change again on the political agenda asap https://t.co/KwuuBG1cza,813089 +RT @thehill: US is only nation to object to G20 climate change statement https://t.co/ZMEa4RtDyC https://t.co/Ch4qs2CGr7,372840 +Judge in environmental activist's trial says climate change is matter of debate https://t.co/zhQngJm3Ov https://t.co/cyqGnBDRyF,460869 +"RT @margokingston1: US withdrawal from climate change agreement should a trigger world-wide boycott of US goods + +https://t.co/yxXNz4pMDz",700900 +RT @JohnGab69864771: @lovingmykids65 Gore left WH. worth 500K now with climate change SCAM 150 million & buying beach front property after…,54421 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,83811 +"RT @qzindia: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change…",932229 +"Science Guy's climate change consequences: +-ice age averted +-Britain got a new wine industry +-White House leaks + + https://t.co/AC4prnYEnb",14731 +RT @MinajestyExotic: if global warming isn't real why did club penguin shut down??,416245 +RT @BernieSanders: Hillary understands climate change is real and creating devastating problems. Trump believes we should expand fossil fue…,91717 +"@ConservationCO @pmaysmith May I ask, 'Can you supply just one paper that proves climate change is real?'",37782 +"RT @colbertlateshow: Donald Trump called global warming “very expensive...bulls**t,â€ which is also the motto for Trump University! #LSSC h…",168950 +RT @kateauty: Ocean heatwave destroys Tasmania's unique underwater jungle | Climate Home - climate change news https://t.co/yPp3rtIZTu via…,791767 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",612474 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,863569 +RT @jaketapper: .@SenJohnMcCain is ‘uncomfortable’ with Pruitt stance on climate change and with enviros rejecting nuclear power. https://t…,833620 +RT @AtelierDanko: #cop7fctc Banning ecigs at a tobacco control conference makes as much sense as banning wind power at a climate change con…,831050 +Vatican urges Trump to reconsider climate change position https://t.co/MKIyRJzXBo by #Reuters via @c0nvey,327186 +RT @kylegriffin1: Energy Secretary Rick Perry just denied that humans are the main cause of climate change https://t.co/Shpm9nzj0g,70954 +These people are hysterical. At this point there are two sides of the climate change debate. Scientists vs. lobbyis… https://t.co/cMUk3vTucE,744906 +"Oh, they'll piss & moan about funding VA & the vets, embassies, education, climate change studies,etc. But can fund… https://t.co/uRS6PmkWU3",410805 +RT @RMetS: Tonight at 17:15 at Durham uni: Lecture on climate change & greenland ice sheet https://t.co/r9xdKPefh2 @GeogDurham https://t.co…,321290 +"@nubeshu, #ouijagame I am bored! I would like to talk about global warming.",560166 +"RT @LOLGOP: Let's see them prove climate change now! + +*iceberg sinks* https://t.co/LWTRLQyqiD",199999 +@luisbaram How bad will climate change have to get before you realise your mistake I wonder? That will be a terrible day for you I think.,520958 +RT @StevenMufson: Trump's energy sec just denied that man-made carbon dioxide is the main driver behind climate change https://t.co/ksLy3qj…,486093 +@bobinglis @republicEn said. Best hope #climate change is man made! So we can fix it with #sustainable #renewables https://t.co/64pNi0jWM1,433768 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,170942 +Two climate sceptics to head EPA & ENERGY in Trump's cabinet. What will this mean in the fight against climate change? #AJNewsGrid,97769 +@globeandmail Fake News global warming lies,574580 +"You are so hot, that scientists, now, blame you for global warming #KateUptonMoveOver #AwesomeBeauty https://t.co/lxR50IRrCG",427983 +River piracy' is the latest weird thing to come out of climate change https://t.co/qPtOjHH2js https://t.co/AH5HXsFnnh,536786 +They don't believe in climate change for a start. https://t.co/CuZb7hxXfH,64572 +RT @likeagirlinc: “Repeat after me: Carbon pollution is causing climate change” by @NexusMediaNews https://t.co/GPr0XQVzSj,932658 +"RT @climatehawk1: For Colombia, the rain bombs of #climate change fell in the dark of night | @robertscribbler https://t.co/VraBDBIezv http…",875904 +"RT @capitalweather: In several decades, water may well be at this level every day (and much higher in storms) due to climate change:…",388184 +RT @vinnycrack: shes thinking about global warming tell your husband https://t.co/LWWFA5aoiC,448406 +"RT @MikeBloomberg: Women play a critical role in leading progress on public health, climate change, economic development, and more.… ",280094 +@JohnKerry @climate_ice @GarnPress @readdoctor trump cannot be allowed to block action on climate change Don't let… https://t.co/gZBDPBVGEr,196585 +"Everglades restoration report shows success, but climate change remains a challenge | Eurekalert https://t.co/FpEWffXGKf",297123 +"@Cris_Paunescu whatever. I don't come on Twitter to argue with climate change deniers 🙄. Monitoring the Environment is my job, so bye. 👋ðŸ»",583405 +"Defy 'Stalinist' global warming rules, says Trump's economic adviser + https://t.co/OtqRO2FRmK",749358 +"RT @JosephKay76: Business-as-usual climate change is heading for 4°C or more warming by 2100, which will create a world of growing uninhabi…",8540 +"RT @seestephsmile: I wish instead of global warming we had global cooling bc I hate the heat + +I know this tweet might be dumb, but idc hate…",92130 +About global warming: https://t.co/zpX7j7oVVW,682459 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,493774 +RT @Newsweek: Arctic climate change study canceled due to—wait for it—climate change https://t.co/jJkj9TRYU7 https://t.co/m8rQK4fmxP,81514 +New York AG: Sec. of State Tillerson used pseudonym 'Wayne Tracker' to discuss climate change while CEO of Exxon… https://t.co/W0c0XAmDYx,937131 +N.J. Republican rebukes Trump on climate change: JONATHAN D. SALANT / https://t.co/Huu4BeSODj - Rep. Frank LoBiondo… https://t.co/LhAUrOQrAP,683822 +RT @Liberiangyal: Lmfao global warming is gonna kill us but these mimosas and day parties in February ain't gonna attend themselves.,181932 +"RT @Craigipedia: @aravosis We'll never tackle climate change, nuclear weapons will proliferate, and science will stagnate... BUT BROS ARE M…",185061 +"RT @kurteichenwald: In full page ad in NYT in 2009, @realDonaldTrump called for urgent action on climate change. Which does he believe? htt…",718905 +@realDonaldTrump @NASA So you support this science which is just as real as climate change. You are some special hypocrite. #ImpeachTrump,467768 +RT @JohnFugelsang: & Donald Trump wants you know this proves NASA's part of that whole Chinese climate change hoax. https://t.co/Mc7346asP1,50360 +World leaders duped by manipulated global warming data https://t.co/or7OaBZ78o via @MailOnline,37282 +RT @DeSmogBlog: The environment is going to take massive hits at a time when the evidence of climate change is right before our eyes https:…,324725 +@LibsNoFun global warming will cause more snowstorms. do you even science bro? heat mixes with... oh just forget it,587613 +RT @ClimateNexus: The female mayors taking on #climate change https://t.co/dg9INmRtda via @ELLESouthAfrica #Women4Climate https://t.co/3CIy…,759085 +"@un_diverted @LaborFAIL @SenatorMRoberts 2000 head of CSIRO said all 5 computer models had failed on global warming, not even a 1c rise 200y",995304 +Industry doc leaked in 1991 revealed aim to “reposition global warming as theory (not fact)” https://t.co/uOVzEKtwti https://t.co/bitRcYSg8K,62430 +RT @business: Inside one Republican's attempt to shift his party on climate change https://t.co/UuMQS6Pny2 https://t.co/OA1gYaKtSt,959472 +RT @MattMcGorry: Important article on need 2 not make #NoDAPL JUST about climate change thus erasing the struggle for Native rights…,134816 +"RT @lilmamaluna: corporations deny existence of climate change, greenhouse gas emissions, environmental racism etc in an effort 2 preserve…",443799 +Trump seems to be changing his mind on climate change https://t.co/ESANxHauoN https://t.co/Vv0o96d6N9,84144 +RT @billoreilly: Putin once again vacationing topless! He's in Siberia snorkeling. So many tropical reefs there. Must be global warming. H…,626595 +8 yrs (or more) of climate change denial will be disastrous to our planet. We will #resist. We will say… https://t.co/Eby3wWeZLT,382192 +RT @ClimateChange36: Study: Believe you can stop climate change and you will - https://t.co/4YaiixVfpc https://t.co/kcGseXR3uJ,249680 +Tillerson used an email alias to discuss climate change while he was Exxon’s chief executive: Wayne Tracker https://t.co/V09M9rn7at,209100 +"RT @brianstorms: This is a great, thought-provoking interview w/ Kim Stanley Robinson on his New York 2140 novel + climate change https://t…",505060 +"RT @blvrrysivan: global warming is finally over, wars are too, I have clear skin and I'm crying https://t.co/zHeLFOhfZN",510212 +@DailyPedantry I don't know which part of what I'm saying or linking to is making you think we don't understand the causes of climate change,454150 +#climatechange Science Magazine Trump's defense chief cites climate change as national… https://t.co/zcVotUy2j1 via… https://t.co/1ve1uhcUyG,900706 +RT @BillDixonish: There is a human child on this airplane meowing in the seat next to me and I no longer care about global warming.,355447 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,415557 +RT @NatureOutlook: How climate change is pushing animal (and human diseases) to new places. https://t.co/0Qvm7H78BA https://t.co/JJJxMfWtUR,431394 +"RT @SafetyPinDaily: The head of #Trump's environment agency just denied humans are to blame for climate change | By @montaukian +https://t…",796461 +"@NYDailyNews That will be super fun amidst a global population boom to 9 billion, a global food shortage, AND climate change. Hooray.",551013 +"Mayors will lead on climate change for political gain, says ex-NYC mayor | @Reuters https://t.co/nrmRWFoVdG https://t.co/YxT4qv9ReA",71926 +"@JimmyOKeefe @SirTimRice Lolllll climate change my foot. Termites emit more than all human activity. +https://t.co/F8bcIxuJCm",260753 +RT @paigeemurrow: Tomorrow's Nov. 1st and it's suppose to be in the 70s but global warming isn't a thing y'all. No need to worry. It's fine…,883406 +RT @iLuvaCuba: Turtle comeback in Cuba at risk from climate change https://t.co/mroIMcQj3x #cuba,973790 +RT @girlziplocked: The rich will do nothing to stop climate change. It falls to us to be heroes. Stop making vague requests to power and st…,673020 +"RT @BirdLife_News: Learn about the Iiwi (pronounced ee-EE-vee), a Hawaiian endemic threatened by climate change and avian malaria… ",573493 +@StephEvz43 my daughters' middle school science teacher is climate change denier. Cited Exxon experts in class.,850799 +Fuck global warming my neck is so frio,596499 +How climate change is already effecting us & projected to get worse �� #ClimateChangeIsReal #climatechange… https://t.co/A6cpvI8kDP,430720 +RT @matthewstoller: This is basically climate change denial applied to housing and political economy. He's learned not to learn. https://t.…,970612 +"RT @AltUSDA_ARS: 1/2 century+ later, we continue to struggle with climate change denial. Deception of tobacco industry proportions! https:/…",645141 +RT @GuardianSustBiz: Aus bus complicit in The Big Lie. Not poss to save Reef without tackling global warming @David_Ritter @GreenpeaceAP ht…,122672 +Burning rain forests has one of the largest impacts to climate change,572212 +Lake Tanganyika hit by climate change and over-fishing https://t.co/oj26xlHMaM,590281 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",185082 +RT @TelegraphNews: Donald Trump's environmental protection chief Scott Pruitt 'not convinced' carbon dioxide causes global warming…,643999 +"RT @19bcarle: If you believe climate change is fake, do your research. If you still then don't believe it is a real thing, please don't con…",276142 +White House calls climate change funding 'a waste of your money' – video https://t.co/9uQks9z4p6,522428 +RT @ShawnFatfield: I refuse to believe that people don't believe in climate change...Which I guess would make me a 'Climate Change Denier D…,242869 +RT @LisaBloom: Rex Tillerson might be Trump's worst cabinet pick. Say no to an oil baron blocking int'l climate change efforts. https://t.c…,859835 +RT @Forbes: Trump's election victory threatens efforts to fight climate change https://t.co/XFHqnWxXWX https://t.co/OE8tpnEKJ1,179238 +RT @F_F_Ryedale: Interesting article on climate change and a post carbon society - https://t.co/oB5dIG6Yly,830861 +"RT @JustinTrudeau: My thanks to Premier McLeod for the meeting today, focused on climate change & building an economy that works for t… ",659715 +"RT @jvagle: Bannon, Senior Counselor to the President on climate change: A Hoax that costs us $4 billion per day. https://t.co/5HXuZyO24g",742214 +"RT @CECHR_UoD: Huffington Post, BuzzFeed & Vice are blazing a new trail on climate change coverage +https://t.co/YLcZZUHr3v https://t.co/oBc…",44768 +RT @nowthisnews: There's no such thing as the climate change 'hiatus' https://t.co/n0YljW8Pwo,156753 +"You know which country narrowly benefits from global warming, even as it and the world suffers overall: Russia… https://t.co/jETqLdqcuF",689726 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",659825 +"Since I'm throwing truthbombs out there, you could've changed the world by fighting climate change but you're blowing it @realDonaldTrump",805236 +RT @ECIU_UK: .@ProfBrianCox hits out at BBC for inviting climate change denier on Radio 4 https://t.co/s7ZvW4tMQy by @horton_official,484743 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,843791 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,401342 +RT @Bob__Hudson: #DUP: I'm watching disgraced leader of a handful of bigoted misogynous climate change deniers who will have UK PM in their…,268165 +RT @DEMsAreBigots: Leftist Militants peddling bullshit to support climate change. The fakenews from DEMs keeps piling up. Boy this is…,450971 +RT @CNNPolitics: Robert F. Kennedy Jr. issues a warning about President Trump's climate change policies https://t.co/XTuMdF5cCp https://t.c…,969588 +RT @tom_burke_47: Significant parts of Australia are already seeing climate change drive up insurance premiums…,493909 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,775367 +"RT @AngelXMen_2017: World leaders should ignore #DontheCon on climate change, says Michael Bloomberg #False45 #ClimateChangeDenier +https:/…",102955 +"Why is it so dark out?' +Laura 'global warming duh'",356595 +"RT @Newsweek: If Donald Trump gets into the White House, 'global warming' could magically disappear. https://t.co/u705y0wlQU",860992 +RT @TheStaggers: Green leaders fear President Donald Trump will threaten progress on climate change https://t.co/1OfsYoJsfJ https://t.co/Rz…,478186 +RT @nick__nobody: This is the important news - Australia is failing on global warming with science haters in government #auspol https://t.…,235851 +"RT @AstroKatie: In case you've been thinking, 'everyone will have to accept that climate change is real when it gets REALLY obvious… ",859554 +"@WSJ 'perspective' ... he's facing criminal charges for deceiving everyone about climate change. +Tillerson ... Go 'perspective' yourself. ��",383555 +industrial smog is climate change.,568803 +@SoundinTheAlarm I said fake spiritual or 'woke' ppl... Meat is in fact bad energy and is the #1 cause of global warming you can't 'love',522415 +"RT @TheKrisWilson: If 'global warming' is real, then why is there an ICE AGE 5?!",493050 +RT @MitchBehna: We don't deny climate change. Its been around for 4 billion years. Leftists think it has only been last 100 years https://t…,568528 +RT @guardiannews: Tony Abbott says 'moral panic' about climate change is 'over the top' https://t.co/P4CDBjoRI4,371027 +RT @stuartvyse: The phrase is 'climate change DENIER.' Now is the time to speak plainly. @thedailybeast https://t.co/SxzzzuzkkX,554560 +"RT @therightarticle: DUP condemned for climate change denial of Trump-style proportions +https://t.co/CaGzVt0HoW",969599 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,70097 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,898167 +Vichit2017Vichit2017.SecretaryRoss on budget cuts for climate change research: “My attitude is the science should … … Vichit2017,483103 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,773089 +"RT @UN: Thursday in NYC: @UN_PGA event on climate change & the #globalgoals https://t.co/BKVCrCg9bC + +Watch live:…",436540 +RT @AdamBandt: Do we really want to be Deputy Sheriff to a racist climate change-denier? Time to ask serious Qs about how slavishly we'll f…,214657 +RT @nowthisnews: Bernie Sanders wants to talk about climate change and income inequality – not 2020 aspirations https://t.co/rASODRTr3T,824653 +RT @jamisonfoser: There’s a simple explanation for this: Donald Trump knows climate change is real but does not give a shit about you. http…,132616 +"RT @YarmolukDan: We only have a 5 percent chance of avoiding ‘dangerous’ global warming, a study finds https://t.co/z87XUUrHW3",962166 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,357327 +Google just notched a big victory in the fight against climate change https://t.co/nUbb8xdKbl via cnbctech,183595 +RT @Slate: You can now watch Leonardo DiCaprio’s climate change doc online for free: https://t.co/xltvx35kZH https://t.co/kPxu1qWjlw,338190 +"We encourage you to come to a climate change activity on Nov. 25th from 3:00PM-5:00PM at Eton Centris, Activity Walk https://t.co/idRCep0iDN",821753 +RT @Reuters: Tillerson used email under pseudonym 'Wayne Tracker' at Exxon to talk climate change: New York attorney general.…,782634 +RT @ReutersLegal: West Coast states to fight climate change even if #DonaldTrump does not https://t.co/ZkPPROhom8 #JerryBrown https://t.co/…,355771 +RT @MyInfidelAnna: If you said bombing Libya was a climate change initiative liberals would defend it. Everyday they show why Trump won 😂😂…,102889 +"US: Donald Trump to undo Obama plan to curb global warming, says EPA chief https://t.co/Z9zBrkwC8H",335544 +Congress declares climate change a national security threat https://t.co/n3e2MOlFdL,417438 +Yrs ago James Lovelock said sea level rise is best climate change indicator as it integrates yr-to-yr variability.… https://t.co/YR3J8C1eFS,99418 +RT @MikeBloomberg: Don't let anyone tell you the US can't reach our Paris climate change goal. We can - and I believe we will. https://t.co…,774033 +Not to mention the public health gains to be made via some climate change solutions - especially a plant based diet… https://t.co/Mu2fnXeUXz,151834 +"RT @Planetary_Sec: �� + +NATO urges global fight against climate change as Trump mulls Paris accord + +https://t.co/2wsa5T8HGi #climate…",573075 +RT @Dengerow: Japan ranks among worst performers in tackling climate change ‹ Japan Today: https://t.co/XUXyjRR0PU?,675187 +"RT @NatGeo: Proposed cuts to the EPA's funding target regional and climate change-oriented initiatives +https://t.co/AhDMwcDk2V",488287 +"Wrong on health care, wrong on climate change https://t.co/4hRBdUv0I0 ��#Opines on #Healthcare",317596 +"RT @commuter_haiku: Watching a special +about climate change. Oh, wait. +This is a window.",848773 +"RT @brendan905: global warming... +is bullshit +all I need... +are my rockabilly tapes +I need my rockabilly tapes +2 be happy +I'm just in that…",177318 +"If any government that pretended to be serious about climate change action really were, fracking would be illegal.… https://t.co/3awUxU6MKh",743728 +"RT @HeatherMorrisTV: @realDonaldTrump plz invest in multiple @TeslaMotors plants. Please us Americans 4 climate change, and produce jobs at…",166017 +The only ones that are affected by climate change are those that sit on the front porch all day and do nothing. https://t.co/dw7tUPVy7A,668192 +"RT @indy100: More likely a lesbian caused Hurricane Harvey than climate change, says right-wing commentator https://t.co/fKiBXP3jny",242646 +".@JSHeappey Congrats on being elected. Please don't let the DUP call the shots on abortion, gay rights or climate change. #DUPdeal",572824 +RT @TheMisterFavor: #NationalGeographic’s climate change documentary with #LeonardoDiCaprio is now on #YouTube! https://t.co/yEA6kinX2A…,516374 +"RT @thefader: After Trump's inauguration, pages about climate change and civil rights were removed from the White House website.… ",569974 +RT @RogueNASA: Trump's pivot on climate change takes shape as federal websites go blank https://t.co/A2z41cG1VJ via @business,368987 +Leonardo Dicaprio FINALLY got his Oscar and used his acceptance speech to talk about climate change… https://t.co/YUcTKzwatI,35989 +RT @ClimateChange24: Just one candidate in Louisiana's Senate runoff embraces climate change facts - Ars Technica https://t.co/U1P5uxevYI,439267 +"RT @fersurre: The president of the United States is trying to force scientists out of talking about climate change, this is wild",425036 +RT @Amy_Siskind: The people Trump blames for making up climate change 👇👇👇 https://t.co/uAr2xcxHbh,978741 +RT @DavidPapp: Trump boosts coal as China takes the lead on climate change https://t.co/t7lCZn2WxB,161511 +"@marclacey @nytimes What a load of crap. By your own admission, climate change is REAL. You are JOURNALISTS. You… https://t.co/wD0gp18MQc",158819 +"RT @Heritage: Lost jobs, higher energy prices: The true cost of Obama's climate change crusade. https://t.co/D5hPHbzrij",225262 +He is professing his love for the dangers of global warming,398562 +Not sure about the global warming. But this Malala is the biggest liberal Hoax ever. What a joke!,940439 +Can we fight climate change with trees and grass? https://t.co/VKjFl4JNe5 https://t.co/vKFDk9b5n1,657384 +RT @Marcia4Science: The National Academy confirms that the 40% rise in CO2 in the last 40 yrs is the main cause of climate change. See http…,348631 +"When I came to Congress, I said I wanted to be the best voice on climate change that I could be. #ActOnClimate https://t.co/JP80l6sUjU",950221 +"RT @TitusNation: 98% scientists proved climate change exists. Some say 2% proves its not real. Okay, If I'm 98% inside your girlfriend did…",390207 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,633050 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,45603 +RT @AP: The Latest: President Trump to announce the US is withdrawing from the Paris climate change accord. https://t.co/f5RvFQzARj,892219 +RT @EMEC_Orkney: Climate change deniers be gone! Lisa MacKenzie explores the facts on global warming: https://t.co/DTxYTflR15…,763551 +@RealDTrump2k16 He Donald. I heard in the fake news that there is a hurricane in Texas? You told us USA has no global warming. Is this fake?,219247 +"RT @ABC: Al Gore's climate change documentary, 'An Inconvenient Truth,' is getting a sequel. https://t.co/h7h4W0Fj1z https://t.co/wiCp0dv0eQ",78219 +RT @foxandfriends: #FOXNews' Chris Wallace calls out former VP Al Gore on global warming claims | @FoxNewsSunday https://t.co/PLHlZc8CBo,106376 +"RT @ZackBornstein: Everyone who voted Trump will die of old age, diabetes, or fireworks, while the rest of us will die from climate change…",664990 +"RT @GhostPanther: Bye bye bank regulations. +Bye bye dealing with climate change. +Bye bye health care. +Bye bye diplomacy. +#electionnight",61204 +"RT @PeteOgden: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/bO9SkZynBc via @Reuters",444521 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",162744 +"RT @QuantumFlux1964: If any global warming scientists could tell me the exact date that I need to add anti-gel agents to my fuel, I'd appre…",10394 +RT @DysonCollege: #PaceU Senior Fellow John Cronin's article for @HuffingtonPost discusses pres-elect Trump stance on climate change:…,107336 +@samjawed65 don't forget the speech :- climate change is not real .. it is just effect of old age . https://t.co/BqEuwoobmp,400960 +RT @NYtitanic1999: @GuyVerhofstadt Boris Johnson thinks no one should tell Donald Trump he's wrong about climate change https://t.co/4Zfs2u…,157258 +RT @altNOAA: 'Denying climate change is dangerous' ~ @BarackObama 45th US President #ActOnClimate #Climate,762553 +"@skamz23 @conely6511 Here's the thing: even if climate change were a hoax (it isn't), cleaning up our air and pollu… https://t.co/a8wAV4VEmD",398197 +RT @BillMoyersHQ: 21 kids are suing Trump over climate change. https://t.co/wqA5WsagM2,513701 +RT @ajoneida: @CNNPolitics Trump pulls USA out of Paris climate deal but pledges to stay engaged on the issue of climate change.…,450710 +@neillmal1 @CNN Do u apply that to abortions? Global warming/ climate change is soooo exaggerated,192494 +RT @CNN: Al Gore presses on with climate change action in the Trump era https://t.co/r4GzRPyvSH https://t.co/QtESIgBEgd,376697 +Speier: Pelosi's credentials on climate change are sterling—got cap and trade thru House (died in Senate) #PelosiSpeierTownhall,466375 +"RT @NPR: In West Pokot County, Kenya, herders are faced with the realities of climate change - and it's brutal. https://t.co/MpLvxZznUO",600809 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,337306 +RT @stilkov: Here's what *you personally* can really do about climate change: Elect people who think it's real,597597 +"RT @AhirShah: I know global politics and climate change are terrifying, but on the plus side at least antibiotic resistance will kill us all",282282 +RT @simondonner: Erasing web pages won't erase climate change.,619747 +Ay girl are you global warming? Cause you're hot af & you're ruining my life,848426 +RT @cfrontlines: #COP22 Indigenous knowledge and its contribution to the climate change knowledge base are attracting increasing attention…,468720 +RT @FREEBIGTEMER: They asked me my inspiration I said global warming https://t.co/fl2F0NMa3O,954154 +Corals die as global warming collides with local weather in the South China Sea https://t.co/8u3JFv3ZpK,544640 +RT @GRI_LSE: Trump administration gouging out their eyes & cutting off their ears to evidence on climate change says @ret_ward https://t.co…,192358 +RT @gingirl: Here is a great graphic that shows the impact of climate change on human health. https://t.co/JUkLXAU39t,768797 +"RT @Scientists4EU: 1) Do 'global challenges' include climate change & fascism? +2) The 'Special relationship' is sycophantism +3) Don't…",817583 +"RT @hulu: .@LeoDiCaprio explores the effects of climate change in @NatGeoChannel's #BeforeTheFlood, now streaming on Hulu.…",864589 +RT @GOVERNING: Report: 33 states are combating climate change and simultaneously growing their economies https://t.co/VYbc87WAqr https://t.…,104220 +RT @RogueNASA: 21 kids and a climate scientist are suing the US government to force it to contend with the threat of climate change https:/…,725297 +"One of our Board of Advisors, @JiminAntarctica, works to save species in Antarctica from climate change. Read more: +https://t.co/QSH8GUmOr6",973859 +RT @CalumetEditions: RT @AMZ0NE A SciFi author explains why we won't solve global warming. ▶https://t.co/LUAEq7ckpt https://t.co/RVb7a0rM…,942269 +RT @handymayhem: how with a straight face can you say that humans can't affect the weather but believe in human induced climate change?,145192 +RT @mikecoulson48: ‘Shell knew’: oil giant's 1991 film warned of climate change danger | Environment | The Guardian https://t.co/dAjXgcEQWY,965827 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,861437 +"How to talk about climate change at a party: Peak Oil: Her. Ugo, you keep joking all the… https://t.co/ZBsmvjhvl1",296887 +"RT @OsmanAkkoca: UN&FAO, MustPressOnCountriesAgriculturalDepartmentsNot2UseChemicalFertilisers2Stop #climate change https://t.co/zpb7azcAfA…",817495 +RT @WorldOfStu: 2/ Just like with global warming and a million other topics: 'we must do something!' is not enough.,273994 +RT @KS1729: the American revolution will be postponed due to global warming... https://t.co/W7mfdMEwUg,799474 +Fighting climate change isn’t a ‘waste of money’ — it’s a good investment https://t.co/devsMabfxF https://t.co/PwtzjIh29M,177872 +"RT @insideclimate: After 40 flights are grounded in heat wave, a window into climate change effects on air travel https://t.co/eSlUmL6WYf",532392 +RT @VeganiaA: @guardian Imagine if we all understood how starvation & climate change are the crisis veganism can solve—while at t…,770417 +Climate change is real. UNDP is working with the Gvt to mitigate the effects of climate change and improve people's… https://t.co/6z88wEcY4W,706812 +Ayo @realDonaldTrump @POTUS global warming is like actually a real thing b,193396 +RT @sabbanms: Quitting UN climate change body could be Trump's quickest exit from Paris deal | الخروج الامريكي من مؤامرة المناخ https://t.c…,863034 +"RT @SteveSGoddard: The global warming is devastating California again today +@JerryBrownGov https://t.co/YeVaBIZhK9",967152 +RT @GeorgeTakei: Yet another disturbing consequence of global warming. https://t.co/DjimOWo0xc,948038 +RT @NRDC: A new poll shows record percentage of Americans are concerned about global warming and say it's caused by human act…,608126 +Analysis: Why Trump wants to kill a popular climate change program - SFGate https://t.co/lweHu2xPbM,412897 +US presidential election creates global warming anxiety https://t.co/32WQoobKvL,970466 +Koalas don't like water but they're being 'driven to drink' by climate change https://t.co/6uj3Wkt9sn,604868 +RT @briannexwest: don't say 'happy earth day' and then eat meat with every meal. animal agriculture is the leading cause of climate change!!,94532 +@FoxNews Its been THAT long ago? DANG time flies! Bet climate change has sum thing to do with it too!,820173 +"RT @latimes: At Exxon, Rex Tillerson reportedly used the alias 'Wayne Tracker' for emails about climate change…",833762 +You can’t ignore climate change and think you have an immigration policy.' https://t.co/Hl3XdGQjLK,604371 +RT @nokia: It's #WorldScienceDay! 49% of our followers say defeating climate change is key for ensuring sustainability. #YourSay,961064 +RT @lof_marie: So how communicate climate change and other environmental issues? Great talk by @estoknes at #balticseafuture https://t.co/…,419528 +"RT @VegNews: We've been waiting a long time, @algore! Thanks for finally inviting #vegan to the climate change discussion! >>…",79982 +"RT @cakeandvikings: The White House website pgs on climate change, LGBT rights, & civil rights already no longer exist just to remind you w…",564369 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,489017 +RT @Hurshal: #climatechange Daily Mail Times subscribers are fleeing in wake of climate change column New……,887262 +"not sure UR buying (( #GOVT #PUSH )) on global warming / climate change / whatever is next to call it +https://t.co/TuOTM9Jv64 @EricTrump",402712 +Inside the renegade Republican movement for tackling climate change https://t.co/CyGs9Pj36Q,963864 +@michaelbd I fear that this is de facto what 'adaptation' to climate change will be,854765 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,331759 +RT @sccscot: 2 (and a bit) weeks left to take action! Add your voice and call on @scotgov to be ambitious on climate change:…,26332 +You're irrelevant. You don't get to push some fantasy myth about 'climate change' down our tax payers wallet. https://t.co/0wEhZ5YnS9,238943 +RT @Starbuck: Children win right to sue US government on actions causing #climate change https://t.co/dxO4c9rOcv https://t.co/bLSK0YTyh4,431614 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,329434 +RT @indigoats: The people voting for trump think global warming is fake but satanic witchcraft is 100% real and I feel hashtag blessed,680680 +RT @ChrisWarcraft: When do we start talking about climate change deniers as long term mass murderers?,39578 +Over 100 scientists from EU to assess challenges posed by climate change at @climateurope #Valencia 5th-7th April… https://t.co/fZcqbMZS0C,670432 +RT @kassiefornash: How do y'all think climate change isn't real??? I'm mind blown at the stupidity,371166 +#ICYMI A new study about the ocean’s heat content in Science Advances supports evidence of global warming:… https://t.co/fMI4RmIhy5,686203 +4 years of straight up inaction on climate change on our part?,118985 +RT @Newsweek: A timeline of every ridiculous thing Trump has said about climate change https://t.co/jvYFt1rEnD https://t.co/uwwFpeFe55,263823 +"Carbon levy could limit impact of climate change, study suggests https://t.co/T3kkEXdHlF",275604 +@CNN What climate change? What comic is that in?,390449 +Trump to sign sweeping rollback of Obama-era climate change rules https://t.co/q2POVcr8GY #Tech https://t.co/yXM5KA99dm,553573 +RT @WorldfNature: How Harvey has shown us the risks of climate change - Houston Chronicle https://t.co/ZCuzxersc9 https://t.co/gNupFkX3B2,159171 +Global March for Science protests call for action on climate change https://t.co/Vi74tytwA7 https://t.co/7NdYAI73bN,172630 +Ready for flooding: Boston analyzes how to tackle climate change https://t.co/79wlRbGddl https://t.co/VV46R6aBHT,867879 +@realjimmattis thank you for putting people over politics by talking about climate change. I hope you will continue to speak the truth,555667 +RT @thehill: Sanders: Trump needs to be confronted about realities of climate change https://t.co/qW8KeneSLK https://t.co/piKHKlQ1NJ,107607 +"RT @adamjohnsonNYC: There were 7 questions about Russia in the debates & zero about climate change, drugs, poverty, LGBTQ, or education…",671813 +"TanSat: China launches climate change monitoring satellite +https://t.co/gHFzfPYvWA https://t.co/XUbThxjavl",29467 +RT @washingtonpost: U.S. allies plan to give Trump an earful on climate change at G-7 summit https://t.co/Lkwv78x8gW,424298 +"RT @vannsmole: This entire climate change nonsense has become a religion +There4 making it U can't criticize or disagree + +Just like…",247885 +"The talks on climate change during of the #G7Taormina summit in Taormina, Italy were unsatisfactory, said German ch… https://t.co/MZEnHtAma2",66440 +Call it taking care of the land. Call it good business sense. Just don't call it climate change. https://t.co/YPt924nruw,794065 +"RT @daniecal: Ya know, yt ppl idk if y'all are gonna really make it with this whole global warming & sun exposure thing getting w…",383354 +"@tt9m As they grapple with unempt, no pensions, crap healthcare, war, climate change, they'll be appalled she didn'… https://t.co/sN39Al7U1l",73974 +"Disheartening, Trump seeks fast exit from climate deal. He still believes global warming is a hoax. Wow!!!!!",597362 +RT @cultofnix: Imagine the art we shall make from starved corpses of relatives right as we go extinct from climate change and shit…,873587 +"RT @OccuWorld: Going green in China, where climate change isn’t considered a hoax https://t.co/S2aROuO9uV",755011 +Addressing global climate change demands an immediate and ambitious action by governments and industries. That is... https://t.co/DvvhN06ZQH,736998 +RT @energyenviro: Energy Day comes as major companies lead the fight against climate change - https://t.co/AnGcVFfeiL #MajorCompanies #Clim…,117248 +RT @JoyceCarolOates: Still wondering why if N Y Times feels need to be 'fair & balanced' w/ climate change denial why not Holocaust denial?…,692018 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,813376 +RT @washingtonpost: CDC abruptly cancels long-planned conference on climate change and health https://t.co/RpjZ1H63n4,834684 +JJN report reveals devastating impact of climate change on livelihoods https://t.co/28E5BsXPwb,546314 +@phlogga @MickKime Because it's obviously a climate change denier conference. This will be some propaganda org fund… https://t.co/WQQTRtq2bF,876985 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,207998 +RT @armandodkos: Well Bolton certainly reduces my climate change concern - we're all gonna glow anyway.,110340 +"RT @narendramodi: Be it bringing more tourists to J&K, improving connectivity or mitigating climate change, Chenani-Nashri Tunnel offers ma…",715656 +RT @verge: Google just notched a big victory in the fight against climate change https://t.co/oDJ3yytW4N https://t.co/bFNFVrX8lH,88611 +RT @MattBors: Florida. Half the state's going to disappear in ten years due to global warming. They're going for the guy who says it's a Ch…,716533 +"RT @False_Nobody: -Denying climate change is anti-science, deniers should be thrown in prison. + +-WHAT DO YOU MEAN YOU THINK RACE ISN'T A SO…",269830 +RT @TR_Foundation: How is #Pakistan cricketer-turned-politician #ImranKhan fighting climate change? A 'billion trees' at a time.…,661339 +@TEN_GOP MT: CNN's Brian Stelter destroyed by Weather Channel founder John Coleman over global warming. Deserves en… https://t.co/eJeIgOMTJO,96822 +"RT @Bentler: https://t.co/84ZOOqKuCU +Gallup poll shows more Americans than ever are concerned about climate change +#climate #poll https://t…",101833 +washingtonpost: The Energy 202: Macron tried to soften Trump's stance on climate change. Others have failed. https://t.co/NqWZXgGxJl,548873 +"RT @COP22: 'The effects of climate change are going to intensify. Time is against us' Ban Ki Moon, Secretary General @UN https://t.co/VsUt5…",432375 +RT @NatGeoChannel: Tonight @POTUS will be joined by @LeoDiCaprio for a conversation on combating climate change:…,963943 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",105738 +RT @katha_nina: A child rights approach to climate change is long overdue https://t.co/2w14rozfuD by @duycks @ciel_tweets,814952 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,933283 +RT @AFP: Study of ancient penguin poo reveals Antarctic colony's survival is related to volcanic activity not climate change…,476266 +"RT @danmericaCNN: Bernie Sanders on a call with Clinton supporters: 'Literally, in terms of climate change, the future of the planet is at…",713154 +These Republicans are challenging Trump on climate change https://t.co/0syDbdwCPD #NYPost #NewYorkPost,729178 +"RT @LOLGOP: Done whining on Twitter yet, Mr. President? Because a storm super-charged by climate change you want to make worse is about to…",739461 +"@alayarochelle @lilflower__ no, she's saying that people who aren't vegan have no right to complain about global warming, which is true",46459 +RT @Independent: Science loses out to uninformed opinion on climate change – yet again https://t.co/v5zANyjRHS,564711 +@SenWarren @realDonaldTrump Such a poor decision. Science has proven climate change. The entire world agrees there'… https://t.co/RJY7WxGbzW,9295 +#LombardOdier to launch climate change bond fund. Read more: https://t.co/Gql4YvK0FK,89381 +RT @theecoheroes: Stephen Hawking has a message for Trump: Don't ignore climate change #environment #climatechange…,997108 +Get your WH sharables now before the site is revamped to say big oil is our friend and climate change is hoax. https://t.co/ARQRnS2SDA,434160 +Are we ready to take the necessary steps to reduce climate change through revolutionary energy evolution? #COP22,632113 +RT @NiaAmari__: When everyone's glad it's 80 degree weather in October but you can't stop thinking about global warming https://t.co/g7oaRt…,349480 +"@Diplomat655 @WiserThanIWasB4 @LuEleison @elusivemoby Actually made it for the climate change video they made. +Frie… https://t.co/ECfITk1FPo",981685 +RT @NewYorker: Avoiding talk of climate change has become an apparent point of pride in the Trump Administration:…,891296 +RT @SteveSGoddard: Why do people believe in global warming? Because they have had propaganda shoved down their throats for 30 years. Nothin…,795819 +"Depression, anxiety, PTSD: The mental impact of climate change - CNN @KatyTurNBC @JoyAnnReid @TimmonsRoberts https://t.co/P4fNMW0Mf7",22856 +"RT @codinghorror: I guess the good news is that with global warming accelerating on Trump's watch, Florida will be less of a factor in futu…",176472 +"RT @ScienceMarchDC: Breaking: EPA Chief says carbon dioxide not a primary contributor to global warming, denies scientific consensus. https…",760306 +Support for climate change bill is haunting a California Republican leader - The Mercury News https://t.co/YPEYvqG2Jq,364909 +RT @Stuff_by_Craig: Great article on research and genetic study to future-proof plant species from climate change:…,593804 +RT @NotJoshEarnest: POTUS was briefed on the climate change attacks that took place around the world yesterday,307467 +RT @mitchellvii: Did the climate change before man? Then how do you know it's our fault now? Post hoc fallacy. Google it.,610642 +"RT @fiscal_penalty: Despite the global warming, Alaska has had very little, if any, warming since 1977 (except Barrow), as shown below: htt…",129662 +"RT @ReutersPolitics: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/JNI0o39DIU https://t.co/paRvIdkV3A",569359 +...evidence that global warming is less pronounced than predicted.' https://t.co/aM0B66bMt5,561862 +RT @dailykos: Rex Tillerson should get no vote until we see what he's hiding on climate change https://t.co/hbzQjgfiPT,423167 +"@THE_James_Champ @kromatuss guys, snow isn't real. Government fakes it to promote global warming. Snow scary, warm good.",840583 +RT @KurtSchlichter: Can a climate change-loving liberal explain why a massive program like the Paris Accords should be imposed on us w/o a…,683275 +RT @iansomerhalder: @LeoDiCaprio Im so grateful for the time you took to tell the important story of climate change in #BeforetheFlood Than…,190548 +"And above all, 3) TALK TO YOUR POLITICIANS. Do not let this anti-global climate change conspiracy continue to infect our gov't.",958471 +RT @povpaul: It's literally 75° outside and it's november 1st global warming can https://t.co/Lk6B7zUZtp,740052 +"@SteveKopack @People4Bernie He also claims Obama bugged him, climate change is an elaborate hoax, & no one is more Christian than he...so...",631040 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,976028 +RT @EnviroVic: 'Astounding': Shifting storms under #climate change to worsen coastal perils (Yet fed govt totally defunded #NCCARF) https:/…,990527 +@CBSNews there's plenty of evidence to be skeptical over climate change.,58802 +RT @ForeignAffairs: The coming revolution in energy production could make fighting climate change more difficult. https://t.co/brBpifWzJ6,406698 +RT @SenKamalaHarris: Appointing an EPA chief who is a climate change denier is an attack on science. #ScienceMarch,166458 +"From Friday, more fiery back and forth between Exxon & NY's AG Schneiderman in climate change info probe: https://t.co/cW1tsPUBwo",758638 +RT @MacleansMag: Things will get tricky for the Liberal government if the Trump White House rolls back efforts on climate change. https://t…,864544 +Do you doubt that human caused climate change is real? Do you doubt there will be an eclipse this month? Same method produced both facts,937863 +RT @ConservationOrg: Forests are crucial for fighting climate change. Protect an acre now & @SCJohnson will match it…,839640 +"@AsraNomani If you are pro-choice, pro-gay marriage, & an accepter of the reality of anthropogenic climate change, how could U vote 4 Trump?",43118 +"RT @IvanVos1: Britney combined global warming and Lady Gaga into one tweet, WHEN WILL YOUR FAVE?",554437 +"RT @chriscom77: The DUP who oppose abortion for rape victims,deny climate change and insist fossils were placed by Satan as a test…",24114 +"RT @qzindia: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change…",594987 +RT @prrsimons: Hats off to @FionaPattenMLC taking a modern stance on climate change voting yes to strengthen Vic's Climate laws #ActOnClima…,2994 +RT @ProtestPics: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/Jb6OQITAvS,983985 +"@JeffMadsenobv @JayFarber @ToddBrunson the biggest threat to our country is the southern border, not climate change. THATS why Trump won",738824 +RT @SenSanders: The Dakota Access Pipeline would be a huge blow to our fight against climate change. #NoDAPL https://t.co/47m6yUu4m5,578675 +"the harms of climate change, which are unfolding slowly and may be partly undone, the detonation of a nuclear weapon will be irreversible.",246789 +"RT @RichardMunang: Laws to tackle climate change exceed 1,200 worldwide: study https://t.co/6LhSEg0ux0 via @Reuters",459925 +NY AG says Tillerson used alias in emails on climate change https://t.co/wO99b4V1Gs,723464 +@DaveEBrooks12 That's why they changed it to climate change in order to cover their lying asses,939557 +"In my opinion,climate change is nothing more than a way 2 remove our money from our pockets 4 their greeny projects… https://t.co/uhlZaSzFmb",962770 +"RT @jonfavs: A lot of people are sharing this terrifying piece on climate change by @dwallacewells, which you should read: https://t.co/094…",432283 +"this was an ironic 11:11 tweet. climate change is real, it's basically a challenge from Amon-Ra to see if we can not annihilate ourselves",295172 +Trump to purge climate change from federal government https://t.co/Yk61OBsxgV,354011 +RT @matt_costakis: Sex is intimate and sacred. Your body is a temple and shouldn't be shared with anyone who doesn't believe climate change…,917171 +RT @neighbour_s: If you care about climate change don't miss tonight's gripping doco on its impact on global security…,368282 +RT @FT: Saudi Arabia will stick to climate change pledges https://t.co/Cq2sVO7X1f,799357 +"RT @Newsweek: House Republicans buck Trump, call for climate change solutions https://t.co/z4RVyuronv https://t.co/ObL4Fxq0xG",218943 +"RT @nytimes: Scott Pruitt, the head of the EPA, said that carbon dioxide was not a primary contributor to global warming… ",354686 +RT @9GAGTweets: Solution to global warming https://t.co/zhELRBsDYC,180377 +#ImStillNotOver Trump's view on climate change. #climatechange @ISF_United @ISFCrews @iansomerhalder #TrumpPence16 @MELANIATRUMP @CNN,979574 +RT @kylegriffin1: Scott Pruitt says he's challenging scientists to hold a TV debate over whether climate change is a threat. https://t.co/n…,457365 +RT @terroirguy: Freeze injury and climate change are real threats. Vineyards being impacted in Europe with frost risk and damage. https://t…,855074 +"@CurtisDvorak Denying climate change, opposing LGBTQ rights, banning Muslims, defunding Planned Parenthood, corruption... It goes on.",527673 +@JamesSantelli The best part is the listing for the global warming article!!! Trump is such an idiot!,785117 +"...#Harvey s what climate change looks like in a world ...doesn’t want to take climate change seriously.' +https://t.co/h3cfN9JwBP",973760 +RT @scholarlydancer: They call this type of winter wonderland global warming.,928581 +RT @PlanetGreen: How climate change is stripping the Caribbean of its prized coral reefs https://t.co/DbL4KNokWC https://t.co/U5UQ69YSh3,56229 +RT @hungrypa: @Gunz68 เกิดจาก global warming ซึ่งส่วนใหญ่มาจากฝีมือมนุษย์ค่ะ ทำให้ระบบนิเวศทั่วโลกเปลี่ยนแปลงไปค่ะ,489025 +RT @theblaze: Alarmists say global warming to blame for ‘record’ tick population — but there’s one massive problem…,43190 +RT @MotherJones: The polar vortex is back—is global warming playing a role? https://t.co/uGv4I3YBkZ https://t.co/Exukpenkh9,563462 +RT @ACCIONA_EN: The time is now to stop climate change. We teamed up with National Geographic to fight climate change #YEARSproject…,972585 +RT @kurteichenwald: Russia hack deniers & climate change deniers have a lot in common. Either theyre corrupt or they refuse 2 accept univer…,593576 +"@RSBNetwork Lets hope you deal with it, when food cost rises,gas,global warming,hate,violence,children being separated,families hungry! ðŸ™",327139 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,615819 +RT @thehill: Schwarzenegger launches project to help lawmakers challenge Trump on climate change https://t.co/9xkz5ngJrr https://t.co/FT3CA…,538945 +RT @CNTraveler: 10 places to visit before they disappear due to climate change https://t.co/wK4A7T7VUk https://t.co/IuZ9XNx0eI,967095 +"ET channeling on chemtrails, climate change, whistleblowers and alternative solutions https://t.co/oFLqv41HlY",993681 +Antarctic Ice Sheet has impact on climate change,568295 +@realDonaldTrump Hey Trump are you still going to deny climate change when the rising sea level engulfs your Southern White House,969003 +@TomasFriedhoff @SymoneDSanders @PoppyHarlowCNN @brianstelter We will never get climate change with Trump.,644408 +President Trump signed an executive order combating Obama's efforts in regards to climate change. #J2150AI,956047 +"Trump since the election: +Humans are causing global warming +Amnesty for Dreamers +Pro-TPP ambassador to China + +#MAGA #TrumpTransition",525657 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",56665 +"RT @RT_America: Carbon dioxide not ‘primary contributor’ to global warming, #EPA chief says https://t.co/vH5OFqsIe6 https://t.co/8CZhPMrxO7",617655 +"@AnnCoulter you were right, climate change isnt real, it's the gays you should be afraid of https://t.co/PVAZKiNlke",838447 +RT @BobGorovoi: @chriskkenny Where is evidence that any 'action on climate change' will have any effect on climate change?,931195 +RT @politico: Badlands National Park climate change tweets deleted https://t.co/tF6ipwNmrR https://t.co/f8WHVuwjNV,577981 +"RT @Bentler: https://t.co/Y9BH6AuRG1 +Emma Thompson says she wants people to ‘shout loudly’ about climate change +#climate…",870874 +"RT @BatsBallsBoots: @Scottie1797 Just want to know, why holacaust deniers can face jail, but climate change and evolution deniers are free…",480174 +RT @ClimateCentral: You can watch Leonardo DiCaprio's climate change documentary for free on YouTube https://t.co/EU3GenI1RK via…,695290 +RT @Oregonian: Tillerson reportedly used email alias to discuss climate change at Exxon https://t.co/j3tnvsOYmF https://t.co/wusA16xmnU,645362 +Trump has climate change denial | Missoulian in Missoula https://t.co/rQXS77T0RF,475332 +RT @EricHolthaus: Keep in mind there are just three years left until the world locks in dangerous climate change & possible collapse:…,78586 +"@guardian: #Rio's famous beaches take battering as scientists issue climate change warning https://t.co/HxwsuF4bSs' +#Brazil @ABC @r",792010 +64 and sunny to 32 and snowy. climate change is rad ��,600177 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,579760 +"RT @JSCCounterPunch: The Queen of Fracking will 'combat climate change?' It's one thing to campaign for HRC, Bernie, another to lie on h…",733217 +RT @guardianeco: One Nation senator joins new world order of climate change denial https://t.co/fvivQbpS9Z,130633 +@aim2bgreat @IBTimesUK more global warming :-o,246139 +----> Researchers say we have three years to act on climate change before it’s too late https://t.co/TiiWlfYYv3,83570 +RT @DrCReinhart: Still think global warming isn't real?lOnce again we are set to have the hottest year on record https://t.co/IAhQwvaxN1 vi…,233932 +"RT @chrisdmytriw1: Everyone who thinks climate change is a hoax does not get an air conditioner. +#ClimateChangeSummerTips",65704 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,720328 +Moroccan vault preserves seeds if climate change or doomsday sparks crisis https://t.co/GK7ZUOasaZ,182815 +RT @c40cities: We're proud of Mayor @FrankJensenKBH's leadership on climate change as Copenhagen prepares for the future through a…,992508 +@MintMilana Maybe you should go back to Uzbekistan? I'm sure that they believe in climate change! LOL!,582996 +"RT @cdelbrocco: OMG! +Donald Trump wants to shut off an orbiting space camera that monitors climate change https://t.co/DGyVfjQ1ue",712952 +Bill Nye Destroys climate change-denying Trump adviser William Happer https://t.co/EQ1rWyQNnP,217793 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,960416 +Here's your #EarthWeek Stat: A tree can absorb up to 48 lb. of carbon dioxide a year. Plant a tree. Reduce global warming.,387077 +RT @SteveSGoddard: New Mexico is being hit hard by the global warming again today https://t.co/3ePRn0it2W,62147 +"TEEB would be even cooler if directly applied to countries. Personally, Somalia would benefit from a climate change intervention/policy.",158157 +"RT @S_Kanzaki_: Me: Thank you. +Subaru: (clapping) +Aikomi: +Aikomi: …The presentation was supposed to be on global warming, not why you hate…",16196 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,211659 +Just wasted an hour of my life arguing about climate change to someone who doesn't think it's real #resist #iwillbeanalcoholicwhenthisisover,368185 +Paris Agreement on climate change: US withdraws as Trump calls it 'unfair'' via FOX NEWS https://t.co/E1xTN6gNOm https://t.co/Occz6cepdm,681044 +RT @laurahelmuth: “Lamar Smith is the major impediment to anything being done on climate change in Congress' @Reinlwapo on TX race https://…,368951 +RT @Blowjobshire: someone who denies climate change simply cannot be the next president of the USA that would be a literal disaster for eve…,200078 +RT @mcnees: Rumored Secretary of State candidate Dana Rohrabacher thinks global warming and TOOTH DECAY are conspiracies to exp…,947641 +"@TheSafestSpace That headline, isn't that exacly what global warming deniers usually say?",591630 +@rjparry @trumpbigregrets oDbama believes in climate change n gave a phukk about our pollinators,60500 +RT @EcoInternet3: The link between hurricanes and #climate change: Yale Climate Connections https://t.co/1DTQE4iLIT #environment More: http…,257401 +RT @ClaraJeffery: 1/ California fighting Trump on climate change: https://t.co/By94iohBZG,478713 +@MAHAMOSA @NissanElectric But these dumb republicans think just because it snowed in a city and global warming is fake,735450 +"RT @Rendon63rd: With #AB617 and our action on climate change, Calif. is once again showing you can succeed by being visionary & pra…",633125 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",610055 +EPA head Scott Pruitt denies that carbon dioxide causes global warming' https://t.co/bzM4LU0YMe #EPA #Pruitt #globalwarming #carbondioxide,632978 +Pakistan ratifies Paris Agreement to fight global warming https://t.co/SHsiVcunEf,365076 +"Willfully ignoring 99% agreement on climate change is not 'winning', it's malpractice. Cynical, short-sighted abdic… https://t.co/pZhVpcrPR0",875539 +Fuck you guys global warming is serious as hell.,758419 +RT @nudesfornathan: lmao global warming is real,709088 +A massive #climate #change study is canceled ... because of climate change @CNN https://t.co/2GgAt1C592,768261 +Tech and cash is not enough when it comes to health and climate change https://t.co/cJFeF6kSVc,209509 +no child left behind quotes https://t.co/oiL3G7jbBg #global warming speech introduction,127305 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,121053 +RT @Londonyuki: Kind of like...evolution? Or climate change? Or does science end with gender issues? https://t.co/Didy4LRxH7,19558 +"RT @weknowwhatsbest: New California Senator Kamala Harris questioned the CIA nominee on climate change. +Spying on climate change? Yep, a D…",801712 +"@TwitchyTeam The people who believe in man made climate change have to be the dumbest, most ignorant people on the planet!!!",837454 +Right-sizing' indeed. Their use of language no different from the way Republicans deny climate change is caused by… https://t.co/4BIJ6JIw7A,541857 +BBC News - G7 talks: Trump isolated over Paris climate change deal https://t.co/KukgcSfGWr,11629 +"In Trump era, cities must amp up battle vs climate change – official – Daily Mail https://t.co/JNbcmwqEIl Slayte - https://t.co/NWcuTXxFDb",10359 +RT @Cath_Braun: 'Once the people are convinced [of climate change] the politicians will fall in line very quickly' https://t.co/QQHDoWlxq2…,66175 +RT @blakehounshell: So the Energy Department’s climate office has banned the use of the phrase “climate change” https://t.co/QKmpkfjgNQ,23284 +RT @nancymarie4159: @peddoc63 Uh oh. Another crazed Muslim who just can't deal with climate change! I'm out of sympathy for Europe. The…,211731 +"RT @samsteinhp: rick perry no longer wants to eliminate the DoE + +scott pruitt is now more open to the concept of global warming https://t.c…",32828 +"RT @COP22: HE Danny Rollen Faure, #Seychelles: “The Republic of Seychelles views climate change as an existential threatâ€ https://t.co/F2Sh…",300306 +"Human activity continues to engender climate change .@nytopinion, threatening credibility and leading to inevitable… https://t.co/XaoffEZMuj",798465 +RT @dodo: This is one sad effect of climate change: it's killing reindeer. https://t.co/VxWrHWoVP5,429350 +"RT @TessatTys: Demand Trump adm add LGBT rights, climate change & civil rights back 2list of issues on https://t.co/jugZv6ToMA site https:/…",96211 +Abraham Hicks - What about climate change and global warming?: https://t.co/ny7NGVaNhv via @YouTube,287991 +"RT @make5calls: Birther, bigot, and climate change denier — How is this guy an appointee?!? + +OPPOSE NOMINATION OF SAM CLOVIS +☎️:…",580986 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,782530 +"@Gene_Master Why is th RAW DATA kept private, anyone should be able to verify the accuracy of climate change stats. Jansen please answer?",446353 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,404665 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,971456 +@yoitstristian global climate change is real,503290 +#AdoftheDay: Al Gore's stirring new climate change ad calls on world leaders. https://t.co/DOiHCQTdl6 https://t.co/eM6NoxUK9b,675704 +RT @glynmoody: #G20: Leaders' statement reflects Trump position on climate change - - https://t.co/ghqe6z8VY1 US goes down in history for s…,225076 +I kinda want this country to be around so yeah climate change is a top priority for me,593471 +"Is climate change real?' + +No.",481167 +"RT @fredguterl: If Trump does something about global warming, it will have 'tangible benefits' for US businesses @aisneed @sciam https://t.…",161297 +RT @SavageNation: World leaders duped by manipulated global warming data... https://t.co/Kd0KOlJ1G1,270003 +RT @a35362: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming…,411180 +RT @climatehawk1: 8 in 10 people now see #climate change as “catastrophic risk' | @lauriegoering @alertnet https://t.co/UUwaUOf3oP…,271499 +RT @nytopinion: The most important action the U.S. has taken to address climate change is under threat https://t.co/U3WGYLb6Wf https://t.co…,672109 +RT @PolitiFact: Is it true that Ron Johnson doesn't believe people contribute to climate change? Mostly. https://t.co/dfsqhlmm5v,602150 +Latest @beisgovuk public attitude tacker survey results on 'causes of climate change'... https://t.co/4sJAErfR4V,575468 +RT @BBCGaryR: A tax to park your car at work. 1 idea being considered by ministers in a plan to help meet Scotland's climate change targets…,181408 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/PDyuJEZNay,161726 +"He's filled his transition team with fossil fuel industry stalwarts & lobbyists, while continueing to deny climate change is real. Scary.",977902 +@calmdownnate yay global warming ._.,788232 +"Looking fwd to speak today at @ColumbiaSJI on #landrights lawyering in the age of climate change & #Trump + +https://t.co/j0TwvDbpn5",725006 +“Will global warming help drive record election turnout?â€ by @climateprogress https://t.co/PEcabzBhxe,722658 +The American public understands that climate change is real and caused by humans. It's time to #ActOnClimate.… https://t.co/6edezxbw8z,600224 +"Fox News Tucker Carlson implodes as Bill Nye The Science Guy schooled him on climate change (VIDEO) https://t.co/AnUxh0Tce9 + #UniteBlue",793349 +"RT @SharonJ44257163: Donald Trump calls climate change a hoax, but worries it could hurt his golf course https://t.co/Zip6b01JWA",451620 +RT @KatyTurNBC: Trump budget cuts all $$ for climate change research and international climate change programs. All of it. https://t.co/W1…,424135 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",88627 +RT @jpbrammer: obvious ploy to make me root for global warming smh not today Satan https://t.co/5r8QWSYxvv,806009 +"@AP it's climate change, and if this isnt change I don't know what is... read a book before flaunting your ignorance to the world",192064 +"RT @WorldResources: Reflections on Leonardo DiCaprio’s new #climate change film, #BeforeTheFlood https://t.co/YRrLgtZRbc https://t.co/A0tWU…",685562 +"RT @RVAwonk: Hiring a climate change denier is pretty appalling, @nytimes. But saying nothing as your employees single out custo…",284646 +RT @rainnwilson: A perfect resource 4 u to use 2 talk 2 yr climate change denier relatives:: https://t.co/tsBtqs6dDC,715307 +Republican green groups seek to temper Trump on climate change https://t.co/M7VqUfGiZ6,883501 +"@penelopekill @chelseahandler @karamfoundation Keep voting in morons who ignore climate change and basic reality, a… https://t.co/AbtNYyV2zD",842439 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,33587 +#HAPPYEARTHDAY2017 ������������Take care of her! And reminding you of our @POTUS take on climate change and that he's not… https://t.co/91j3q7dpdj,730304 +In other news: Sturgeon flies to USA with entourage on climate change global warming environment summit… https://t.co/Vor1P77Nf9,87268 +While you're freezing to death this afternoon I'll be at Six Flags being grateful for global warming.,494947 +Africa is not a major pollutant...climate change is caused by industrialized nation they should bear more in terms… https://t.co/wo672AaSkX,557924 +@maureen_fiedler There is no climate change Biggest sham in the world,351002 +"See how climate change will affect the UAE in numbers. The risks will affect the country’s economy, business and... https://t.co/rEgLTSMmT1",361958 +"RT @CBSNews: The U.S. pulled out of the Paris climate agreement, but Al Gore says that has only made climate change activism gro…",624214 +"RT @AltHomelandSec: @realDonaldTrump @Rosie @nytimes @SenJohnMcCain ...American diplomats, the EPA, global warming, @washingtonpost,…",513910 +"RT @NewSecurityBeat: Consensus climate change increases migration & a threat multiplier for conflict, but many questions on nuance remai… ",506543 +BIG HISTORY REALITY: the global godfreak media adulates the overpopulation=economic growth racketeers as champions of climate change/waste,778056 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,357156 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",370081 +RT @johnnyShady_: The Remy Ma and Nicki Minaj beef was created to distract you from climate change and the fact that temps in Antartica rea…,880261 +Absolutely loving this amazing initiative from @TataMotors that will help reduce global warming #FreedomDrivers https://t.co/2zVNsufnR6,509403 +RT @climatehawk1: Global ocean circulation appears to be collapsing due to warming planet https://t.co/PEp9Vt8g3x #climate…,580774 +#Resist ... Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/82TTAoi318,837095 +"After the oil industry. Companies like H&M, Forever21, & Zara are contributing to global warming at an alarming rate, releasing seasonal 5/",560337 +"RT @mrLeCure: Just watched Before the Flood, a doc by @LeoDiCaprio on climate change. I'm not a scientist, but it made a lot of sense to me.",132783 +"RT @ProfStrachan: Suicides of nearly 60,000 Indian farmers linked to climate change, study claims https://t.co/yhUjhOYRS8 @1o5CleanEnergy @…",304998 +10 Fragen zur üchtlingskrise: Hier gibt es den Aufstieg in human-caused climate change denial in human-caused climate change,819879 +"Don't worry about climate change! Trump will solve that too, he'll build a wall to keep the climate out! #sorted #qanda",849455 +100 most popular slogans on climate change https://t.co/Cg3EMPYESA #climatechange2,346200 +"RT @C_Stroop: 1. Reporting this as Trump 'moderating' on climate change is really irresponsible. What, just because he no longer… ",625746 +"RT @Greenpeace: The US Energy Department climate office bans use of phrase ‘climate change’. No, it’s not an April Fool’s joke…",677462 +"RT @AstroKatie: If you were going to be a single-issue voter, not making global warming even worse would be a good issue to choose. https:/…",107732 +RT @KayaJones: So science only is possible when talking about space �� & climate change but not with X or Y chromosomes? Hmmmm interesting ��…,277516 +"If we want to address climate change & U.S. competitiveness, we need to work with the rest of the world, not turn them away!",119700 +what are we going to do about climate change,219147 +A call to arms on climate change by Brenda the Civil Disobedience Penguin - a New 2017 Cartoon by @firstdogonmoon https://t.co/dfj5dL6XD8,773453 +"@ForbesTech if global warming gets to that point, what will happen to the rest of earth ?",813113 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,121431 +Government action isn’t enough for #climate change. The private sector can cut billions of tons...: The Conversation https://t.co/5lNPGa4imp,258442 +"RT @nytimes: With Donald Trump in charge, climate change references were purged from the White House website https://t.co/GjRJV17Mkk",15784 +"Earth possibly more sensitive to global warming than previously thought. Via @Independent +#KeepItInTheGround +https://t.co/hTPS71cxt9",491379 +"Anti Vax +Pro life +Believes climate change is a hoax +Doesn't accept evolution as scientific +Has a 10y.o. as commande… https://t.co/ewAREZ9LiK",767093 +RT @RealAlexJones: Climate Report to UN: Trump is correct to be skeptical of 'climate change' claims... https://t.co/DpY1BEhNrd #GlobalWarm…,508244 +How a new money system could help stop climate change - The Guardian https://t.co/if6zK7MS2d https://t.co/z4Dhq0J0pm #Bluehand #NewBlueha…,711697 +"RT @leahmcelrath: For the EPA (Environmental Protection Agency), Trump named climate change denier Martin Ebell + +https://t.co/O7C48YSNLk",78517 +RT @elisewho: Hey remember that time that Donald Trump backed urgent action on climate change? It wasn't that long ago https://t.co/ciohQ43…,592053 +RT @paperrcutt: Y'all chanting about climate change but throw your garbage everywhere at the same event,723025 +RT @Hotpage_News: MORONIC JILL STEIN SAYS Istanbul attack NOT Islam's fault...BUT everything to do with climate change https://t.co/rS7zzj…,310230 +Kim Stanley Robinson’s New York 2140 is a glorious thought experiment on climate change https://t.co/Y8NlwTzkkW https://t.co/cXR8oKgcB2,751878 +"RT @MikeySlezak: Australia faces potentially disastrous consequences of climate change, inquiry told - by me and @BenDohertyCorro https://…",617843 +RT @emptywheel: Area law man who doesn't believe in climate change (or much else science) worried CPD report isn't scientifically b…,265859 +Alaskan village votes to relocate over global warming - https://t.co/Myh9pePjWh https://t.co/670aK1OnSD,410288 +"A word from James Hansen, NASA climatologist, on climate change https://t.co/UkVCRHhkeZ",708448 +"RT @neighbour_s: Top military experts warn that climate change is a 'catalyst for conflict', now on #4Corners https://t.co/QzbUu4ybn4",254072 +Kate: bigger NGOs are finally seeing how gender equality is integral to fighting climate change @WOWtweetUK #wowldn,791956 +Scott Pruitt turns EPA away from climate change agenda - https://t.co/tXGGw2LwDV - @washtimes,515974 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,972791 +@KurtSchlichter climate change 'activists' are stupid.,330960 +@AltNatParkSer this is interesting. Trying to RT the @NASA pics of climate change and it won't let me. https://t.co/YZGbQXuvi4,126876 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,316154 +Cartoon: If the media covered climate change the way it covers Hillary's email https://t.co/8hHs7PSSUH,179087 +RT @realtonydetroit: The same people left defending Darwins THEORY are liberal DEMS that also believe the fairy tale of global warming. Hmm…,586916 +I welcome global warming about now.,70846 +Yale survey: Seven in ten registered voters (69%) say U.S. should stay in Paris climate change agreement... https://t.co/aMb3lNFo5g,752225 +"RT @LeoDiCaprio: Want to stop climate change, @UWM? See #BeforeTheFlood at your University #BeforeYouVote. +https://t.co/ubMubJMbkv",404604 +@CBSNews Not much. Besides CBS is being untrue to global warming concerns when they suggest that less cars = bad thing. Hypocritical,836527 +"RT @afreedma: If you ever doubt that you can make a difference on climate change, just read this obit of Tony de Brum. https://t.co/WzKGgMn…",678059 +"RT @jswatz: So on the day that Donald Trump nominates climate change denier Scott Pruitt to run EPA, he also meets with… ",333311 +"RT @brianklaas: The guy with the nuclear codes thinks Obama personally wiretapped him, vaccines cause autism, climate change is a hoax & bi…",74980 +RT @newscientist: The epic size of #HurricaineIrma is fuelled by global warming https://t.co/ixxrSUPOCX https://t.co/fLEvGo3qPM,477908 +@RitaTrichur If Canada Goose wants to remain profitable they should be helping to fight global warming. https://t.co/iuBWovBOgK,506657 +"Before we spend more than five minutes together socially I need to know your stance on evolution, and climate change.",980875 +@NASA if found in magnetz thera are a total of 4 magnetz in the ozone layerz to make global warming that are uzebale,805679 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,193548 +Obamas fiddled global warming data: *Shamelessly Manipulated* - https://t.co/xxfCa8CWeg #ClimateScam #GreenScam #TeaParty #tcot #PJNet,818493 +"RT @vdare: 'I'm going to die of climate change' + +Millennial leftists literally believe this. https://t.co/psNHWDJ3aP",625918 +"RT @IosefaPolamalu: *Starts snowing in Sandy* +'Ever since Trump was elected global warming has already gone away, wow!' -Bob Salveter +#Di…",215713 +"RT @jqbalter: @TodayAgain1 @sarahkendzior 'global warming = hoax', 'drill baby drill' ... sorry, but Trump/GOP will end human civilization.",126166 +"@6News But Trumpkins tell us that climate change 'Is a Chinese hoax' You mean to tell me,they're idiots without a clue? I'm shocked. 😕",709380 +Want to fight climate change? Have fewer children https://t.co/ZLSGdCKBaq,570628 +"RT @NYTScience: 'If climate change makes eastern North America drier, then autumn colors will be spectacular' https://t.co/w4n3R19OOm",898663 +RT @WIRED: .@AlGore answers all your burning climate change questions. https://t.co/RL7hIJnJyR,103967 +RT @TwitterMoments: Scientists cited climate change and nuclear threats in their decision to move the #DoomsdayClock closer to midnight. ht…,934788 +RT @NickMcKim: Malcolm Roberts is hosting a climate change deniers' meeting at Parliament tonight and I've found a copy of the age…,327499 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",953095 +"RT @350: Our oceans are under too much stress. By 2030, half the world’s oceans could be reeling from climate change:…",592527 +"@Pseudo_Lain @SkyWilliams No see one side advocates climate change fixes, equal rights for all, acceptance love and… https://t.co/QZPWSH00aF",488806 +"RT @kurtisrai: when it's a warm sunny day, but you realize that climate change is slowly killing the planet because it's actually… ",531595 +"Longer heat waves, heavier smog go hand in hand with climate change - Ars Technica https://t.co/GL4rGlswDD",899135 +RT @TwitterMoments: New York's @AGSchneiderman says Tillerson used alias Wayne Tracker to discuss climate change while at @exxonmobil. http…,661210 +"RT @RantyAmyCurtis: Good news is we don't have to swallow your BS on climate change anymore, right? https://t.co/UWbvnDnSvU",311285 +"@piersmorgan Oh, but climate change isn't real.",956537 +Stopping global warming is only way to save Great Barrier Reef https://t.co/cM4aEHDZEZ,536614 +USDA tells staff to stop using the term 'climate change' .. https://t.co/wYejB1TnLr #climatechange,518252 +"RT @UN: .@AntonioGuterres calls on leaders of govt, business & civil society to back ambitious action on climate change…",101697 +six flags ticker symbol https://t.co/Q0oAtiAr3E #global warming simple essay,136250 +RT @SEIclimate: This map shows what Americans think about #climate change. 70% believe US shouldn't withdraw from #ParisAgreement…,571656 +Harry is trying to come up with a chorus about the dangers of global warming eventually,614530 +nytimes: Why so many of President Trump's advisers are urging him to break a key promise on climate change … https://t.co/2BoflibjNg,506382 +RT @ClimateReality: We can debate how to tackle climate change – but the science is settled #ClimateMarch #ActOnClimate https://t.co/jIu5n7…,990558 +RT @cgiarclimate: How farmers in #Uganda are tackling #climate change w/ help of @cgiarclimate_EA https://t.co/UIq3iUnwyE https://t.co/srEv…,414640 +RT @SenatorHassan: I’m deeply concerned with Scott Pruitt’s unwillingness to fight climate change & I’ll vote no on his nomination…,757228 +"RT @iansomerhalder: VOTE VOTE VOTE!!!! +;) VOTING for a candidate that believes climate change is a hoax is the MOST dangerous person to…",741160 +RT @abcnews: #EarthHour's 10th anniversary the biggest yet as famous landmarks go dark for climate change action…,80801 +"@Johngcole I'm on board with climate change, but this is a dumb analogy.",14077 +RT @paytonmucha_xx: Our president doesn't believe in climate change. Nothing will even matter if we don't change the way we treat Mother Ea…,44115 +RT @DataLogicTruth: claimed Ted Cruz's father helped kill JFK; claimed climate change is a hoax created by the Chinese; defended Japanese i…,782491 +Ship made a voyage that would not have happened without global warming https://t.co/iEXaIoNZpc https://t.co/evqeEDF3cV,141116 +RT @ashqueens: it's January 22nd and we still haven't had a snow day & y'all don't believe in climate change,758470 +RT @GRI_LSE: China may be set to take on leadership role in global efforts to tackle climate change https://t.co/i2fDEJcJxE,111565 +RT @Glen4ONT: These two young Ontarians won first place in the #Climathon (climate change hackathon) #Toronto. Way to go…,108937 +"RT @puffin98: Trump and the guy who invented the global warming hoax meet in Mar-a-Lago. Awkward, huh. https://t.co/drQaKOWrYe via @MotherJ…",333960 +Thinking won’t stop climate change https://t.co/X2UMmx3VZ1,495632 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",855633 +RT @KekReddington: @EricTrump @realDonaldTrump there is no global warming says the founder of the weather channel https://t.co/gZhiyeRUE4,387274 +RT @caitrionambalfe: 150 years of global warming in a minute-long symphony https://t.co/ARKfGtVWhM,944823 +@maraayaaa Basi ikaw bala nag cause global warming. Hahaha,676644 +"RT @KFILE: Re: Pruitt, our December look at his interviews on local OK radio he said similar things about climate change.… ",674904 +"RT @nytimes: With Donald Trump in charge, climate change references were purged from the White House website https://t.co/izz8TWVlIq",706197 +RT @thehill: EPA removes climate change page from website hours ahead of #climatemarch https://t.co/1WC520Oieo https://t.co/nv8WkcD0a3,751823 +Donald Trump is about to undo Obama's legacy on climate change https://t.co/EBRkCrSj4o via @HuffPostPol,534701 +Kids now have the right to sue the government over climate change https://t.co/Bf8JPXnSlK via @tridenal,776680 +@Corrynmb @LeahR77 So global cooling became global warming became climate change and will become extreme weather an… https://t.co/nlcZmHD1nr,856934 +Yet some say there is no global warming https://t.co/QB8VtO1Cs2,838992 +RT @elliegoulding: Talking with you all last night about climate change just reminds me how woke my fans are 😂 guess it's up to other peopl…,73072 +Farts cause global warming,592976 +RT @Pedro__Garcia16: Our new president thinks global warming is a hoax created by the Chinese & his second in command thinks you can shock…,120301 +@TheDailyShow Taking JUST climate change I think most decent people would rather see D.C. burn than Prez Trump and right wing congress/court,477557 +"RT @FakeJDGreear: I don't want to say this global warming thing is true, but I just saw a polar bear waxing his chest.",331101 +"RT @Jawssimm: .@JeremyLefroy Please don't let the #DUPdeal turn back the clock on abortion, gay rights or climate change.",587789 +"In race to curb climate change, cities outpace governments +https://t.co/hlLxyN6l9H +#top #news https://t.co/wFWwvRDO3f",106773 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,714124 +RT @SuomiFinland100: Finland and Arctic Council take aim at climate change https://t.co/jE8m2eoAkz #finland100 #arctic via @thisisFINLAND,772086 +"RT @TheReel_in: Watch, absorb and act upon Leonardo DiCaprio’s dire warnings on climate change in ‘Before the Flood’ https://t.co/hb3kiVzWbg",656418 +"If you guys haven't watched Before the Flood please watch it, educate yourself on climate change and learn how much danger our world is in",372287 +Newly discovered peatlands must be protected to prevent climate change - https://t.co/Q8fKQhVw57… https://t.co/D2TtRjArEJ,481477 +"EPA head Scott Pruitt denies that carbon dioxide causes global warming + +https://t.co/hGZ0g1HcCo + +These people run the fucking government.",938734 +"Rural, regional communities feeling the effects of climate change https://t.co/CqcgeMuafZ",922926 +@AUSpur that's what we say to make fun of those who say global warming is BS when we have a big snow storm bro,339447 +"Tackling climate change is the “biggest economic opportunity” in the history of the US, the Hollywood star and... https://t.co/OalUMkk1Tc",325978 +"RT @ABridgwater: I need Middle East climate change technology spokespeople today/tomorrow please, gmail me or Tweet + +#journorequest…",42066 +RT @EcoInternet3: Angela Merkel says it was 'right' to confront Donald #Trump over #climate change: Independent https://t.co/6hhVS7724u #en…,382638 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,16052 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,450371 +"RT @vnuek: Now having a pet causes climate change, according to science alarmists... is pet shaming next? https://t.co/kqcFIvhvu4",450653 +RT @camanpour: He used to research climate change. Then came Trump. Now he collects royalties from oil & gas companies for the govt https:/…,299753 +RT @AmazonWatch: Open letter to #EquatorPrinciples banks: stop financing climate change; stop financing the Dakota Pipeline.…,643564 +"why are people talking about #blizzard2017 and that climate change doesn't exist??? 'oh no, the science is a hoax! It's all witchcraft :0'",975417 +RT @HuffingtonPost: Trump team requests list of government employees who worked on climate change https://t.co/NkXSLDypSq https://t.co/kwZ5…,890333 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,759258 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/XLdwMo2T6X https://t.co/iEKepqgTck,82004 +"RT @inashamdan1: Teacher: What problems do you find in todays society +My class: Sweden's contribution to climate change, rasism agai… ",187640 +RT @nowthisnews: Plant life is beginning to thrive in Antarctica thanks to climate change https://t.co/kwMBF15dZy,790339 +RT @PDChina: Horrible effects of #globalwarming: Time for us to look at the damaging effects of global warming. https://t.co/zhoboLTFKw,760264 +"RT @splinter_news: How fossil fuel money made climate change denial the word of God +https://t.co/DU9o9LbOrZ https://t.co/Av0ev0GY0i",34404 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/WMoMgK6DXS https://t.co/JneCacsRwF,387284 +@greta One group of dogs gets propagandized all day about global warming & being male & the other group gets doggie lollipops & unicorns?,111495 +RT @MemeoIogy_: if global warming isn't real why did club penguin shut down,263613 +RT @WeNeededHillary: EPA head falsely claims carbon emissions aren’t the cause of global warming https://t.co/3V7C9BsL6I https://t.co/QgnQf…,811478 +"@Eiology lol facts. +But also 'global warming isn't just a bunch of hot air'https://t.co/Ydt9Bp2miY + +Unless you're in Sudan of course. 😂",615025 +@MagWes @etzpcm @KirstiJylhae 1st glance -climate change is either believed or denied..all the sceptics I know believe in AGW/climate change,709431 +Oregon to join climate change coalition after Trump pulls out of Paris agreement https://t.co/DeM0Vltx5B,815398 +RT @Hopeniverse: รีวิวรส global warming ค่ะ โดนหน้าตาน่ารัà¸หลอà¸ให้ซื้อมา เหมือนเคี้ยวโอริโอ้à¹ล้วà¹ปรงฟันไปด้วยในเวลาเดียวà¸ัน https://t.co/Xq…,429819 +RT @AnnCoulter: Much like the ever-lengthening timeline for the world to end because of global warming. https://t.co/RzdpPddOjx,55201 +"Good for the Dept of Energy + +U.S. Energy Department balks at Trump request for names on climate change https://t.co/q7ddV8XWEg via @Reuters",918786 +RT @ChelseaClinton: Research on glaciers is providing further evidence of climate change: https://t.co/vvEb2yLN6V,505250 +"@PressSec You're right, the earth is a dangerous place. Especially climate change being our biggest threat. But y'all don't recognize that",811168 +"@CNN This is insane. Climate change and global warming are real, every child knows this!",616510 +Understanding alternative reasons for denying climate change could help bridge divide: An… https://t.co/kTy4GDXWiq,810332 +RT @britneyspears: Does anyone think global warming is a good thing? I love Lady Gaga. I think she's a really interesting artist.,778191 +"Well, guess who's not done losing his shit on climate change deniers and getting laughed at",644140 +RT @leahmcelrath: Ebell's job will be to dismantle the Obama Admin's climate change related infrastructure and spread climate change…,614087 +"Man-made climate change denier at the center of the solar system asks @DanRather- + +'What's the frequency, Kenneth?' https://t.co/fwBfscDdo0",350693 +"@Victoria_hch @ExeposeFeatures I agree.The main problem is,many know man made climate change is real but itis about the willpower to change.",224411 +RT @CNN: Emails reveal USDA employees were advised to avoid the term 'climate change' and instead use 'weather extremes'…,187760 +& several hundred arrests of company execs. US leaders are still debating if climate change is real & reviving an ineffective war on drugs,673695 +"Longer heat waves, heavier smog go hand in hand with climate change https://t.co/jcqZvw7JNx https://t.co/8K6xZ9pjON",624957 +RT @democracynow: .@dan_kammen on U.S. obligations to cut carbon emissions and consequences of Trump's climate change denial https://t.co/Z…,682615 +Arctic reindeer in the North Pole are SHRINKING and becoming lighter and it's all because of climate change #UkNews https://t.co/IssmcyopLt,674916 +Six irrefutable pieces of evidence that prove climate change is real https://t.co/meTT70HDri https://t.co/Bpsl5BVFz5,404402 +RT @politico: #BREAKING: Trump to pull out of Paris climate change agreement https://t.co/bx11PDNOFn https://t.co/bLr7Jo8Kri,53072 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,48112 +@theintercept It's why nobody trusts or watches corporate media they never talk about climate change never talk abo… https://t.co/IBF3VQukSJ,785837 +"In UNSC discussion on @UNSomalia, @Bolivia_ONU cites concentrations of wealth, climate change, that fuel famines, gross inequalities.",184816 +RT @DDurnford: A president who thinks climate change is a hoax and a VP who doesn't believe in evolution. Great day for science.,230210 +@withnaeun @dindanim @poccaguri Sekolah apanya? Skripsitnya a? Hahahah gak mandi itu malah menghemat air mengurangi global warming loh haha,915999 +RT @brittaneywarren: .@jjkirton says @g7 leaders @ Italy should specify an agent in the climate change commitments they make at Taormina to…,376465 +"RT @Newsweek: Trump's policies on climate change are strongly opposed by Americans, a new poll indicates https://t.co/R8TlePic77 https://t.…",194186 +RT @ajplus: Leo takes on climate change skeptics: “You might as well not believe in gravity.â€ https://t.co/v8EdagKObD,106745 +"Achieving a global adaptation goal for climate change, by @SaleemulHuq +https://t.co/qRaxS3LaDU +@cnazmul78 @ICCCAD @Gobeshona",992715 +Porio: Anthropogenic activities cause climate change. I always ask my students: are you cooling the Earth or healing the Earth?,274295 +75+ US mayors refuse to enforce Trump climate change order. So important to elect leaders committed to environment.… https://t.co/VPSjuWdmx5,841614 +RT @CityJournal: Withdrawal from the Paris Agreement could lead to real action on climate change through nuclear power.…,855159 +"RT @UN_Women: Tonight: 8:30-9:30PM, join #EarthHour & turn off all lights to bring attention to climate change. Learn more: https://t.co/ek…",369248 +"RT @ErikSolheim: Over 59,000 farmer suicides linked to climate change in India, study finds. +Shocking, appalling numbers! +https://t.co/YYrk…",400854 +RT @TheGlobalGoals: TWELVE of our #GlobalGoals are directly linked to climate change. The #ParisAgreement is essential for their succes…,232119 +RT @HuffingtonPost: UN: Paris deal won't be 'enough' to avoid worst effects of climate change https://t.co/2OzsX1RyKK https://t.co/Ube2xB0…,770087 +RT @easysolarpanel: The worst thing we can do for our #economy is sit back and do nothing about climate change. https://t.co/w8P5ocW4Bb #cl…,61801 +US researchers claim ‘Beef ban’ can mitigate climate change. https://t.co/DnUtEIDf6C via @postcard_news,582837 +RT @AnonyPress: 2016 was the year that the United States elected a man who believes that global warming is a Chinese conspiracy,696188 +Look at the climate change data on NASAs website! @realDonaldTrump 2,710747 +RT @giorgio_gori: Via dal sito della Casa Bianca il rapporto sul global warming. Al suo posto il piano di rilancio dei combustibili fossili…,943396 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,943553 +«The Mediterranean will become a desert unless global warming is limited to 1.5C»,957958 +RT @mcnees: 'President-Elect nominates Siberian zombie anthrax virus from a global warming-thawed reindeer corpse to head Centers for Disea…,170910 +@robcham fanart of climate change! fanart of the dangers of humanizing propagandists! fanart of the vitality of human connections!,680524 +"RT @Rick_Frank: We're too late to stop global warming with renewables. We need to do something much more drastic, s... | @scoopit https://t…",565587 +RT @chriscmooney: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/EvaDVnbK8X,749902 +They'll tell you they're doing it to save you from global warming. They're lying https://t.co/PRFpiM7pyj #OpChemtrails,748072 +RT @markhoppus: Soup is here thanks for all the great tweets have a great weekend. Also climate change is real and leaving the Paris Accord…,937512 +"Smog over Shanghai, but tell me more about how the U.S. is contributing to global warming.. https://t.co/0CsS4PHErl",130999 +"RT @WWF: When it comes to the fight against climate change, there’s reason to be hopeful. #PeoplesClimate https://t.co/GaREcRvTMe",342929 +@frackfreeunited @CrossFrack @kevinhollinrake voted 8 times against measures prevent climate change Thinks… https://t.co/WfyNRvByb9,406526 +RT @DavidPapp: I wrote THE BEST presidential briefing on global warming for Donald Trump https://t.co/hpCDOF1XDT,281624 +EnvDefenseFund: These 3 charts show how climate change is the world’s biggest risk. https://t.co/WPuouJ53s0,111021 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,898463 +"RT @sierraclub: As the #ParisAgreement comes into force, remember that Trump would be the ONLY world leader to deny #climate change…",920547 +Donald Trump expected to slash Nasa's climate change budget in favour of sending humans back to the moon - and beyond,300268 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,6377 +RT @solomongrundy6: Trump says ‘nobody really knows’ if climate change is real https://t.co/UTombh6ejK @ChuckNellis @Sfalumberjack21 @Hope0…,150851 +"RT @BostonGlobe: Sen. Markey calls Pruitt, tapped to lead EPA, a “science-denying, oil-soaked, climate change-causing polluter” ally… ",836682 +@NBCNews Probably has nothing to do with climate change. Ha!,975094 +RT @bigdaddy69780: @Johndm1952 @GlennMcmillan14 funny how global warming is so real but lower mainland bc hasn't seen harsh weather like th…,303263 +Russian President Vladimir Putin says climate change good for economy https://t.co/DYsiSpHL6E,469044 +My mom just told me she'd kick me if I didn't believe in global warming and my dad is sitting on the couch bottle feed,826563 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,879918 +RT @nytimes: Donald Trump has called climate change a hoax. A Chinese official says it is anything but. https://t.co/N7y35LTyN2,803773 +"RT @superdeluxe: Oh the weather outside is frightful +Due to climate change denial",535044 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,129239 +"CNN: Future climate change events could lead to premature deaths, experts said during an Atlanta climate meeting https://t.co/jXrQKrz1vU",123544 +"RT @climo2017: We have plan to REVERSE global warming. + +Learn about it here: + +https://t.co/3USdpImZP7 + +#climatechange #revolution…",955118 +"RT @CBCSunday: Trump's position on climate change could be his biggest threat to global security, warns @ProfPRogers: https://t.co/Ma7J1OFw…",763466 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,302824 +RT @RiffsAndBeards: Do the White Walkers in GoT represent the threat of climate change?,970253 +RT @DrPsyBuffy: 23. We can’t say “elect reps who understand and accept climate change” but instead we need to say we want to,536636 +Support renewable energy sources & save out nation & planet from the destructive effects of climate change. #GPUSA https://t.co/Lq3dquj0B7,225644 +RT @Reuters: Trump to sign order sweeping away Obama climate change pledges. Via @ReutersTV https://t.co/zCgYEUkEN7 https://t.co/m6Ko6xkBLY,901410 +"RT @pollreport: Is climate change a hoax? +details: https://t.co/CuNMYc00Hw https://t.co/hhYz55T1BJ",976357 +RT @mercedesfduran: The Trump administration just disbanded a federal advisory committee on climate change https://t.co/ZF12cFq7aN,276425 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/ZDEvXdhUtF,698782 +"RT @BitaAmani1: 'in causing climate change, the federal government has violated the youngest generation’s constitutional rights to… ",476182 +"♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/c8sCBHmknu",560795 +"We can't understand the reality of man-caused climate change without understanding all of the various factors: physics, chemistry, geography",734099 +"These climate change deniers must be condemned and stopped. Some things are worth more than profit, like the EARTH. https://t.co/FN4svmrGcq",874279 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",528799 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,844516 +"RT @davidsirota: Great work, humans -- and special congratulations go out to the climate change deniers https://t.co/9gvNMPV8it",42001 +RT @crunkboy713: how do people in Florida vote for someone who doesn't believe in climate change🤔 there whole shits about to be flooded in…,729333 +"RT @UKIPNFKN: Macron wants American researchers to move to France to fight climate change via @UNFCCC +#Trump #ClimateChange +https://t.co/sx…",910929 +"A Modest Proposal... + +To fight climate change, start with Leonardo DiCaprio's private jet lifestyle https://t.co/j0bbVWvIqK via @usatoday",436637 +Conservatives can be convinced to fight climate change with a specific kind of language https://t.co/eSfU9ri2LJ via… https://t.co/cqB3XsyO9K,539943 +RT @EllenGoddard1: Indian farmers fight against climate change using trees as a weapon https://t.co/nMZjw3BsV6,158515 +"RT @SciForbes: The first climate model turns 50, and predicted global warming almost perfectly: https://t.co/5OxrL2Cnr8 https://t.co/QijWyd…",913083 +Looking for fiction about climate change? Pulp fiction is full of it — with a twist. - Washington Post https://t.co/L0xLEqcngV,196246 +RT @Newsweek: Global climate change battles are increasingly being won in court https://t.co/cfWRoydRrb https://t.co/BBXmMbPZXk,312900 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,247152 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,621919 +RT @drvox: 'So much more dying is coming.' @dwallacewells is superb on our failure to grasp the true danger of climate change. https://t.co…,72893 +I wish global warming meant that I would be warm right now. There are so many reasons to hate global warming.,989727 +RT @fivefifths: We can expect a rise in many insect vector-borne infectious diseases because of climate change https://t.co/sonNFMmRUj,828411 +RT @taylorcIark: if global warming doesn't exist why is club penguin getting shut down,231642 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,294532 +19 House Republicans call on their party to do something about climate change | Dana Nuccitelli https://t.co/8DscIDcM4Q,322655 +RT @voxdotcom: The next president will make decisions on climate change that echo for centuries. We haven’t discussed it. https://t.co/BVNW…,238643 +"RT @collins11_m: @WayneDupreeShow I listened to this entire thing & in conclusion, climate change believing liberals R just as bad a…",226893 +"RT @JJfanblade: I'm with Trump on this,global warming is a lie, it is a device designed by governments to raise taxes and to enrich…",22945 +@canokar I truly apologize for contempt of your 'religion of global warming' since I posted tweet I received what is akin to fatwa hate.,667052 +@reason climate change is serious....,330901 +RT @BillMoyersHQ: All you need to know about climate change in 12 minutes. https://t.co/dlLfoUW85O,893735 +RT @thehill: EPA chief: Carbon dioxide is not a 'primary contributor' to climate change https://t.co/TjC6hqokK3 https://t.co/rkWMjzj4ws,844155 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,598545 +"Trump changes his tune on climate change, jailing Clinton https://t.co/cYy9c0qtrH",792602 +"RT @AmyELCAadvo: 'When @ELCA faces challenge of climate change we don't despair, we act' #ELCAadvocacy https://t.co/gbxp4fDkoL",81394 +RT @_CJWade: The craziest part about Florida voting for Trump is the whole state is going to be underwater once he defunds climate change r…,79720 +RT @PiyushGoyalOffc: It is a matter of great happiness that all 193 countries agreed on every aspect of the climate change in the Paris Agr…,450891 +"RT @plmcky: If you feel pleasantly siloed from the Trump disaster, keep in mind US will no longer be fighting climate change. https://t.co/…",689110 +"RT @RickSmithShow: Other countries SHOULD move on w/o us, if we're going to be hostile to environment & climate change, to be pro-war. +@sar…",603282 +>100 students will be challenged to look at pollution through the perspectives of sustainability and climate change https://t.co/dOs30hPvqM,151774 +RT @nadabakos: Here is why u have to care about global warming: snakes will grow to be much larger with hotter temperatures - we will be ea…,427833 +Factcheck: World’s biggest oil firms announce miniscule climate change fund https://t.co/Zzbu7uh2ry via @energydesk,514030 +"Best thing Chelsea Clinton can do is fight like hell for equal pay, reproductive rights, climate change and the oth… https://t.co/gedfwJ6wOP",450842 +"Good stream of reasons. In the interests of climate change - shouldn't we stop @KellyannePolls coming on, since sh… https://t.co/fhYQ6FPXxm",663940 +"As it goes with droughts and global warming - first it doesn't rain, then the fires start. https://t.co/CjXi6i4duP",289537 +RT @IsaacHayes3: It's 69° on December 19th but there's no such thing as global warming. 🙄,93580 +RT @CrEllenWhite: Masses of Australians are fatigued by climate change discussion? Masses of Australians want to save the planet! #qanda,999485 +Science Express train to create climate change awareness,16012 +"RT @jaketapper: In executive order, Trump to dramatically change US approach to climate change https://t.co/0smG0SqGLm",602434 +people touch the tippy top the the ice berg and think they can start global warming,128526 +#MostRead U.N. delegates worry Trump will withdraw from climate change plan. https://t.co/3KT63Ip2Ag,567878 +RT @JordanFredders: Rob Green could stop global warming.,311040 +RT @ClimateCentral: Children suing U.S. over climate change add Trump to suit https://t.co/8qWTIWstd4 via @insideclimate https://t.co/NnYTn…,397558 +"RT @guardiannews: 5ï¸⃣ Away from Article 50, the Paris climate change agreement comes into force https://t.co/wFbndAvfJn",659249 +RT @DonnaWR8: #POTUS gives @Pontifex set of #MLKs Books to be kept in Vatican.Pope gives @POTUS a letter on climate change? #MAGA https://t…,732039 +RT @POLITICOMag: Harvey is what climate change looks like in a world that decides it doesn’t want to take climate change seriously. https:/…,257083 +An Inconvenient Sequel review – Al Gore's new climate change film lacks heat: The former vice president’s latest… https://t.co/igIJfhwJrN,653366 +The only 'rights' to which the effects of climate change are applicable are the rights of every human being not to be sick from pollution.,764741 +RT @OfficialJoelF: President Trump will reportedly sign executive order tomorrow that will roll back on Obama's climate change policies htt…,240417 +RT @JuddLegum: 1. How long do we have to pretend the Stephens' incorrect FACTS on climate change are an opinion?…,941193 +RT @stephenmcdaid: @robinince NZ has gone crazy tonight. We have a tsunami warning here in Christchurch. Havent heard the climate change th…,249928 +CDC abruptly cancels long-planned conference on climate change and health https://t.co/XFyut2pRG8,355194 +RT @AlternateUSFW: 'Everywhere I look there are opportunities to address climate change and everywhere I look we are not doing it.' @BillNy…,466127 +"RT @DavidCornDC: Hey Florida, nice little Everglades you've got there. Thanks for voting for a climate change denier. See you in hurricane…",986184 +RT @BillMoyersHQ: Some of the kids suing Trump over climate change have already experienced its effects firsthand @youthvgov https://t.co/w…,194736 +RT @sarahjolney1: Heathrow expansion would be huge step back in fight against climate change. Let's send a shockwave through Downing St aga…,193995 +"#AlGore talks about his award-winning 2006 film and his new documentary, which looks at the climate change fight... https://t.co/ilxNPcUcue",630191 +"RT @KatyTurNBC: Trump says he will cancel Billions of dollars to the UN for global warming. 'By the way, no one knows what happens to that…",467505 +RT @USAneedsTRUMP: 😂 you mention the govt climate change scam & all the liberals get triggered 😂the same ppl believing Obama the last 8 yea…,385475 +@charleshernick @AmericanCRs A former Independent whose debut interview declares 'Reagan is out' and a moderate for climate change?,537515 +RT @ABC: EPA chief Scott Pruitt's language on climate change contradicts the agency's website. https://t.co/f0eJ2Fo5aT https://t.co/LJb5MxH…,689188 +Ship made a voyage that would not have happened without global warming https://t.co/hNw1yhhOtB https://t.co/AYWUSE7GH9,629787 +#weather Trump to unravel Obama’s anti-global warming projects – Houston Herald https://t.co/oe2FCqZXBP #forecast,125791 +"@RT_America We can't stop global warming! +https://t.co/Y2v4ZoMSkR",873126 +for those voting for hillary because you think she's against climate change https://t.co/Js33HcyCT5,634159 +RT @ThoBaSwe: Repeat: Evolution is not a theory. Man-made climate change is not a theory. Endocrine disruption is not a theory. S…,5824 +RT @LayaBuurd: i'm alive. my family healthy. my friends prospering. my boyfriend fine. my dogs love me & global warming hasn't kil…,626130 +RT @_richardblack: Prince Charles pens climate change @ladybirdbooks highlighting increasing UK flood risk https://t.co/DCxw9GRxiI https://…,710596 +"#NoDAPL: Either @Potus doesn't actually believe in climate change, or he's willing to shelve it for big business. Think about it #Berners",739055 +"If you voted for trump does that mean you actually deny climate change, do you people realize what you fucking supported?",584269 +RT @washingtonpost: The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/DbutGjT5Vn,930286 +China on Tuesday rejected a plan by Donald Trump to back out of a global climate change pact.,803604 +Watch: Chris Wallace confronts Al Gore over his faulty climate change claims that never came true https://t.co/qlsxU2RAvB,902313 +"RT @UNESCO: Megacities are forming an alliance, with UNESCO, to manage water under climate change #COP22…",365571 +"RT @Monicks: To Breitbart from https://t.co/A7qqogdvP4 'Earth is not cooling, climate change is real & please stop using our vid… ",418391 +"RT @HaikuVikingGal: 'G20 summit ends with Trump at odds over climate change' + +Always the outsider. History will not be kind to Trump https…",260874 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",53754 +Judge rules school children can pursue climate change lawsuit against Washington State https://t.co/g9kN4OYPCf,406691 +@LouiseMensch Lock her up. Climate change is a hoax. Crooked Hillary. You are a climate change. Hillary is a hoax. MAGA DonAld libtard DISAS,958946 +"RT @BJPsudhanRSS: Retweeted #GiveUpAMeal for Gou (@goushakti): + +#EarthDay +Beef provides major contribution to global warming... https://t.c…",135258 +RT @michikokakutani: 'NASA's climate change research will likely be scrapped by Trump.' via @newsweek https://t.co/AS4wZpTi4l,349414 +Say what? Unfortunately that is partly the problem with the branding 'global warming'. It's CLIMATE CHANGE people!… https://t.co/LCPzOHNWl5,988959 +"RT @nwbtcw: The problem right now isn't climate change deniers, it's those in power who profit from the industries destroying our planet #c…",954431 +RT @YaleE360: 'Our children won’t have time to debate the existence of climate change; they’ll be busy dealing with its effects'…,985836 +RT @thehill: Trump officials to meet on future of the Paris climate change accord https://t.co/LlwnDp5Fb8 https://t.co/Yhsww94M1w,698510 +RT @sbstryker: Paris Hilton has a better record on the environment and climate change than Donald Trump. https://t.co/OvI0EB9A2w,509363 +"RT @_iwakeli_i: When you hear 'climate change,' think polar bears but also think human displacement, migration and relocation. IT'S ALREADY…",625498 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",896827 +"RT @divyaspandana: We all make mistakes. Eg, this gentleman here on climate change who happens to be our PM. Not sure if this is a mis…",393734 +RT @Greenpeace: Tired of dealing with climate change denying trolls? Here's some help https://t.co/dpp3JqxwEu https://t.co/FXlnUX8UHT,326465 +RT @nobby15: How climate change is affecting the wine we drink https://t.co/w2QRvbwXm1 via @ABCNews,856169 +RT @DavidLeopold: And they're getting ready to purge the Energy Dept of those that do not deny climate change https://t.co/rZ3CpBdZHA…,404748 +"Scott Pruitt wants some kind of strange climate change showdown +https://t.co/d3E7dIci1H https://t.co/vu6656Ul2j",330862 +People that voted for trump probably think global warming isn't real 😂 #notmypresident,455496 +"@marcorubio how can you not believe climate change it's our fault? Petroleum and energy production, pollution. Are u serious?",571982 +RT @BillMoyersHQ: These CEOs are trying to stop shareholders from knowing how climate change affects their wallets https://t.co/BjdNMDQmje,298506 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,98423 +RT @AJEnglish: What does Africa need to tackle climate change? https://t.co/xGR8lazxSN https://t.co/gClZki3gfV,660483 +RT @washingtonpost: Corrected satellite data show 30 percent increase in global warming https://t.co/fkLw2CkSZG,219919 +RT @EnvDefenseFund: Both parties agree: Scott Pruitt needs to be held accountable for his misleading comments on climate change. https://t…,967026 +"RT @Haggisman57: When 225 Canadians jet to Morocco to ‘fight climate change’, they emit clouds of hypocrisy https://t.co/wfD91dyl0m #cdnpol…",640859 +RT @AOMGAUSTRALIA: Conclusion; theyre saving us from global warming,574291 +RT @AP: Follow AP reporters as they sail through the Arctic's fabled Northwest Passage to document climate change's impact.…,673739 +RT @Slate: Trump will be the only world leader to deny climate change: https://t.co/0uCR0DV2jb https://t.co/a1BiBH3wE8,490703 +Exxon Mobil urges Donald Trump to keep US signed up to Paris Agreement on climate change https://t.co/Gpq5duUwl4… https://t.co/4SRctzjg2H,811513 +"RT @Drolte: @billmaher RealTime's panel keeps dancing around the economy, technology, climate change, and greed. Please interview @Zeitgei…",357267 +"RT @surfinchef61: I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood +https://t.co/J9Bkz2OlOv",366205 +"RT @ProgGrrl: a nightmare scenario for environmental preservation, climate change, wildlife protection, energy policy https://t.co/WTEVCJiM…",47116 +RT @markmccaughrean: @AstroKatie And US inaction on climate change could contribute to us reaching the tipping point: it's hard to overstat…,41555 +RT @babitatyagi0: Gurmeet Ram Rahim Singh has started a campaign to eradicate bad effects of global warming. What is it ?,666135 +RT @seattletimes: How Capt. James Cook’s intricate 1778 records reveal global warming today in Arctic: https://t.co/HX8bJHNaPJ https://t.co…,997640 +"In executive order, Trump to dramatically change US approach to climate change https://t.co/dvncPJxmph TY @POTUS @RealDonaldTrump GBUIJN+",381416 +RT @ShehabShamir: a good piece from @SaleemulHuq on the loopholes in the current climate change regime & changes suggested! #COP22 https://…,168327 +RT @thehill: CO2 levels in atmosphere hit new high as EPA head denies its role in climate change https://t.co/dGMFsVq7Vm https://t.co/KU6Fk…,492253 +"RT @WillOremus: As a rule, Big Oil understands climate change far better than most of the GOP. Including Trump. https://t.co/cRCH0Yzooc",422735 +"#Leaders change. The #political climate changes. Everything changes, BUT God & He's still in control. 'I the Lord do not change' (Mal.3:6).",667117 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,202823 +RT @BIZPACReview: Bill Nye’s scary rebuke of CNN for allowing opposing climate change view sums up the Left in a nutshell…,10908 +RT @nytimes: A majority of people agree that climate change is harming Americans. But they don't believe it will harm them.…,366599 +Paris Agreement in force today. NZ among the first to ratify. Big day in the climate change battle. #ParisAgreement https://t.co/3s1FWJqetr,394665 +RT @BeyondCoal: Granddaughter of coal breaker becomes local leader against climate change https://t.co/FYgL1s94nz @samanthadpage @thinkprog…,734589 +How climate change makes hurricanes and floods worse https://t.co/xDLo8pdSsu,210821 +"RT @ImperfectGirl07: ðŸ‘ðŸ¼ðŸ‘ðŸ¼ðŸ‘ðŸ¼ +Did you know? +A tree can absorb up to 48 lbs of carbon dioxide a year. +Plant a tree - reduce global warming. ht…",191243 +Artist shows what climate change will do to our national parks with a new poster series. https://t.co/LIshLjmCQH… https://t.co/kU78OQzDG9,435686 +"RT @NewSecurityBeat: New report from @adelphi_berlin analyzes links between climate change, fragility and non-state armed groups…",7931 +Five ways to take action on climate change | Global Development Professionals Network | The Guardian https://t.co/e2KlTh3TuV,331666 +#Halloween's ok but if you really wanna get scared watch @NatGeo's new​ climate change doc with @LeoDiCaprio… https://t.co/RGb4ixueW7,998608 +"RT @YaleE360: As climate change rapidly melts away sea ice, countries are prepping for new shipping routes through the Arctic.… ",598170 +RT @cieriapoland: this halloween gets a lot scarier when you consider that bc of global warming it's 80 degrees in October & we are destroy…,981822 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",349039 +Most wood energy schemes are a 'disaster' for climate change https://t.co/tZagmmHBB0,131708 +@RRMeyer2 @EnergiewendeGER Now it's 'catastrophic' climate change? ��,440962 +Congress' top climate change denier continues his attack on states probing Exxon https://t.co/1xP3xxCGJG https://t.co/1CVUTnw6IU,719287 +"RT @business: Trump wants to downplay global warming, but Louisiana won’t let him https://t.co/IrWRqiBlhi https://t.co/wPhDmosW8s",866736 +"RT @GreenEdToday: The good news is we know what to do, we have everything we need now to respond to the challenge of global warming.…",793383 +"RT @paulengelhard: If 99% of scientists tell you that climate change is real, and Trump says it isn't, then the only intolerant ideology in…",486705 +Disrupt your business model to take action on climate change https://t.co/2oTlFbryZg via @ecobusinesscom,206701 +RT @mcspocky: Jane Goodall calls Trump's climate change agenda 'immensely depressing' https://t.co/UseSirPbkK https://t.co/GhCeEv31WR,812095 +"RT @laurenepowell: We have the tools, minds, & motivation to address climate change now. Honored to address the global community leadi…",813429 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",300273 +"RT @ClimateReality: The @WhiteHouse calls climate change research a “waste.” Actually, it’s required by law https://t.co/1trh7QkOQH https:/…",246003 +RT @theoceanproject: Coral reefs: living and dying in an era of climate change https://t.co/060X2hCWM2 https://t.co/DrOvLBjFp6,357693 +Rex Tillerson 'used email alias' at Exxon to talk climate change - BBC News https://t.co/oZpP7OqxhY,127689 +"RT @MichaelGerrard: Public opinion shifting on climate change: more and more people believe it's happening, humans cause it, and they'r…",554542 +Weather warning: Intrepid's co-Founder on how you can stop climate change ruining travel .. https://t.co/dCDq20YcOL #climatechange,713892 +"In challenge to Trump, 17 Republicans in Congress join fight against global warming https://t.co/ARW9bwNOTq",855661 +"https://t.co/5TvARPUmgh +Meet 9 badass women fighting climate change in cities +#climate #women #women4climate https://t.co/1Y2AFE7p48",413022 +"RT @democracynow: 'The planet is drowning in denial' of climate change, writes Amy Goodman: https://t.co/V8O8dLtD8m",204680 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,865502 +"RT @TheReel_in: Watch, absorb and act upon Leonardo DiCaprio’s dire warnings on climate change in ‘Before the Flood’ https://t.co/hb3kiVzWbg",70808 +Finance remains the biggest barrier for cities in tackling climate change: https://t.co/a3w1KlFIo8 #investincities,542694 +"RT @toby_w_hunt: Michael Gove attempted to have climate change removed from the geography curriculum, now he is Environment Secretary. Tori…",521642 +"RT @RT_com: ‘River piracy’ taking place at breakneck speed, climate change to blame - geoscientists +https://t.co/2eTZCoOG86 https://t.co/1…",90760 +Mike Nelson: Winter's arrival is perfect time for talk about climate change - The Denver Channel https://t.co/O92N7U2XjB,599952 +"RT @314action: EPA wants to debate climate change on TV - challenging scientists to prove global warming is a threat. Bring it on? +https://…",116224 +RT @NBCNightlyNews: Think global warming is bad now? It is going to get much worse researchers predicted Monday. https://t.co/Vo0tKTQX8E,781730 +"Shrinking mountain glaciers are ‘categorical evidence’ of climate change, scientists say - https://t.co/B9KO3Z415T https://t.co/j5fNlU2v5R",222272 +"@SSextPDX @golden_nuggets Sent one from NASA, Here is another - where's global warming? Arctic ice caps grow… https://t.co/XUKMQFxd3T",520111 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",470642 +RT @Descriptions: and the us only wants to deny global warming https://t.co/CSmTCn8hZU,241795 +enjoying global warming with some cool people! https://t.co/3mftjvqJ78,585620 +how can teens impact climate change https://t.co/6CxWdowwBJ,969978 +RT @ScienceNews: A new simulation puts a price tag on climate change county by county. https://t.co/DaPFWpAqRO,800466 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,665096 +Sanders: It's 'pretty dumb' not to ask about climate change after Harvey https://t.co/XqRSsTcDLs https://t.co/VkAcQX2oUC,59084 +"What climate change deniers, like Donald Trump, believe - BBC News https://t.co/wxZiES4tb8",813349 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",312981 +RT @SierraClub: Trump 'will definitely pull out of Paris climate change deal' https://t.co/vMIo8GWP0T https://t.co/r948903BhI,965523 +RT @dstgovza: #SFSA2016 technology can assist in accessing information on climate change,921337 +RT @dansmith2020: Arctic climate change makes study of Arctic climate change too dangerous! @SIPRIorg @adelphi_berlin @JanVivekananda https…,791417 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,472174 +RT @RogueNASA: Trump is signaling that he's acting on his vows to dismantle Obama's 'stupid' climate change policies. #Resist https://t.co…,514550 +"RT @ErikahJeannette: I don't understand how some politicians don't believe in climate change. There's evidence, scientific evidence. Come o…",418510 +"RT @STcom: After Obama, #Trump may face children suing over global warming +#climatechange +https://t.co/dvJio2ozos https://t.co/1J8ZqehnAa",344814 +RT @NYTScience: The #Gatlinburg wildfires are a reminder that climate change is making wildfires a continual problem in some places https:/…,555242 +@uchihacest_ @SenSanders ican't understand how some people believe there's a secret agenda about climate change,603943 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",996818 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,518736 +"RT @kurteichenwald: It's consers who dont believe in climate change, but a huge portion of anti-vaxxers are liberals. How do they choose wh…",194144 +"donald tr*mp: *gives up in combatting climate change for US economy* + +me: https://t.co/nnkkBNG3sF",548422 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",781735 +RT @Aiannucci: The US elected Trump but the rest of the world didn't.So what do we do if US policies ( e.g. climate change) threaten the re…,90786 +@danosbelt trump said climate change does not exist. You just contradicted yourself. Clean environment means no coal/oil/fracking,3051 +"RT @AlongsideWild: You want to argue about how to fix climate change? OK-cool. But, I'm done talking about whether it exists. That informat…",402995 +RT @Jamie_Woodward_: Did two centuries of continuous volcanic eruptions at 18 ka trigger major climate change in the Southern Hemisphere…,224269 +"Spot On Article!!!! + +Why we’re all everyday climate change deniers by @AliceBell https://t.co/XSTIGMl2Jq",891634 +"RT @trend_auditor: Finally, Paris climate change agreement designed by crooks- Trump is not buying this crap https://t.co/PDGdYTR7pI",661409 +"At this point, I am done trying to convince anyone that climate change is real. It’s absurd. “See, the book fell! Gravity is real!'",776823 +"RT @AynRandPaulRyan: GE CEO vows to ignore Trump, continue to fight climate change: https://t.co/sFUpgmHAfi +#EPA +#TheResistance https://t…",773037 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,716592 +"@jpballnut I'm 80 yrs old, and I have listening to the global warming hoax since I was a teen & guess what, nothing has happened.",709740 +"RT @planitpres: 'Planning could play key role in tackling climate change', @RTPIScotland tells parliamentary committee: https://t.co/idbzbo…",230435 +RT @rabbleca: Naomi Klein: Now is exactly the time to talk about climate change. https://t.co/tY0VtMbPjB https://t.co/Ua7gAUeRSw,105775 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/PS2XZk3lZE https://t.co/M3PtcAGVzt,277235 +"@Xadeejournalist @ZarrarKhuhro #ZaraHatKay + +Awareness regarding the adverse effects of climate change and how to cope with it be a priority",323839 +Scott Pruitt Climate Change: How many global warming deniers are on Trump’s team? https://t.co/fpeLaxFbOH via @Mic,485009 +"blame chemists, harbicides promoters, for climate change; 'Detergent' Hydroxl Molecules May Affect... https://t.co/QM4MWWaQED @slashdot",991522 +"RT @someecards: National Park defies White House, tweets climate change facts until it's mysteriously hushed up.… ",421384 +RT @AngelaKorras: Any more climate change deniers? Here you go if you can actually read better catch up. https://t.co/NbCWEh2L0K #auspol #a…,407930 +"RT @SteveSGoddard: Thanks to unprecedented climate change, sea level at La Jolla, California is the same as it was in 1871… ",499185 +GE CEO Jeff Immelt seeks to fill void left by Trump in climate change efforts https://t.co/lW7E1jGpk6 via @BosBizJournal,634042 +Yesterday it was almost 70 & today it's snowing. But don't worry the head of the EPA said he doesn't believe CO2 causes global warming.,281534 +~@_grendan wrote a great piece about climate change-denying lawmakers + christians & their unholy alliance https://t.co/h5DSQrzpT3,29564 +RT @wikileaks: Do you have data at risk from the new US administration such as unpublished climate change research? Submit it here: https:/…,777475 +"S. W-C: Social crises in Arctic communities result from intergenerational trauma, now worsening with climate change trauma",73475 +Growing algae bloom in Arabian Sea tied to climate change https://t.co/aSWiogr9Ux https://t.co/ShFaymBlc6,924278 +RT @OhWonderMusic: You can also listen to our BRAND NEW SONG 'Lifetimes'. It's about climate change. Don't be no climaphobe yo. ������ https:/…,945887 +RT @Marcpalahi: Sustainable Forestry is the most cost effective supply-side measure to combat climate change globally https://t.co/f97XJR8M…,133825 +RT @ProtectNUEST: nu'est contributing to global warming by riding in vehicles AND they also don't wear seatbelts :(( #ExposeNUEST https://t…,750622 +RT @nytopinion: Nine Northeastern states are taking an important step in fighting climate change https://t.co/ErIZQdgukg,340947 +RT @sleazy_c_peazy: #YourMCM thinks global warming was made up by China,477970 +Caring for nature doesn’t always mean leaving it alone. Can we engineer climate change away? Should we? https://t.co/gXkVWow4Av,841038 +"RT @ErikSolheim: 'We are close to the tipping point where global warming becomes irreversible': Prof. Stephen Hawking. +https://t.co/dJoh2BR…",331429 +EPA chief: Carbon dioxide not 'primary contributor' to climate change https://t.co/GBm14P9DLO https://t.co/zIIEnhbKK6,861934 +RT @DannyShookNews: Mitochondrial DNA shows past climate change effects on gulls https://t.co/3vhXvQVyaw #DSNScience #ecology,117689 +Storms linked to climate change caused more than £3.5m to cricket clubs: Storms in December 2015.. #breakingnews https://t.co/YS2FG5Qp7L,231985 +.@GMB @piersmorgan Idiot #StephenHawking is either unaware that climate change is a lie or he serves the cabal promoting the lie.,452498 +Global warming causes Alaskan village to relocate. How to stop climate change before it’s too late https://t.co/hxtvIA85mC #betterworld#be…,147151 +RT @brucepknight: Polar bear numbers to plummet by a third because of global warming https://t.co/uQIV9Bz86M #ClimateChange #ClimateAction…,402278 +"RT @Harold_Steves: Horgan says we have the opportunity to end big money in politics, have proportional representation, fight climate change…",515529 +"Percentage of Republicans who believe in global warming : 48 + +Who believe in demonic possession : 68 + +#HarpersIndex (Jan. '13)",816064 +.@Winnie_Byanyima changing climate change and hunger begins with education. New .@UNESCO Whole School Approach. Ten countries meet in Dakar,320416 +"Warmer summers, unpredictable rain: Maharashtra yet to finalise climate change action plan' https://t.co/h61xEkG5Lf",674363 +I fell asleep on my climate change book. Now I have to cram. Ugh,45153 +RT @politicususa: U.S. Energy Department balks at Trump request for names on climate change via @politicususa https://t.co/sW339lboZu #p2 #…,294203 +Balfour Beatty leads on climate change standard https://t.co/dsKjHnZxAM @balfourbeatty https://t.co/LseeHs28fv,69149 +"RT @JordanUhl: left: trump's inauguration + +right: everyone who doesn't want to die from global warming and/or nuclear war https://t.co/LN0D…",892557 +"Trump voters think that institutionalized racism and global warming are conspiracies, but fully believe in #pizzagate and #spiritcooking LOL",714218 +RT @OrganicConsumer: Scientists warn that global warming may be escalating so fast it could be “game over” soon. https://t.co/d2XH2nNA7t…,374533 +"Donald proposed banning an entire religion,encouraged violence at his rallies,called global warming a hoax but yeaa how do you choose 🤔",799765 +just gunna say Obamacare makes it so my mom can keep living her life and I believe in global warming.,406896 +RT @TheDailyShow: Trevor assesses the effects of climate change. https://t.co/b88QCflFb2 https://t.co/HK35KHb2Mc,493645 +Anson: How Al Gore convinced Miguel Torres to fight climate change in wine https://t.co/n9WZsCDdVT,77622 +Everglades mangroves worth billions in fight against climate change https://t.co/ZMhyQAdvB5,351139 +"In rare move, China criticizes Trump plan to exit climate change pact - CNBC https://t.co/DRCIc40QPE",598383 +RT @SteveSGoddard: I'm thinking about starting an intervention service to rescue children from the global warming cult.…,437099 +2017 @UNFCCC Adaptation Calendar features women leading efforts to build resilience to climate change… https://t.co/mcQp7fWSrS,811260 +When the weather is 75 degrees+ in November but you're also worried about climate change. #climatechange #weather… https://t.co/JMJ7lCnCZ0,289021 +Trump to undo Obama actions against climate change - Energy independence order slammed by environmentalists but... https://t.co/Ot4GVPjxcn,411748 +"RT @maryconnor4567: Wonder if Sturgeon will donate £1million to Californian climate change, same as she did to Iceland. After all, Califor…",834122 +"RT @Salon: Donald Trump and Xi Jinping chatted and schmoozed, but avoided talking about climate change https://t.co/A5XpVseWFA",531633 +RT @HuffingtonPost: . @SenSanders tears into Trump’s 'disaster' of a climate change order ➡️ by @lee_moran https://t.co/7U8U5R0I0u https://…,138830 +RT @RedactedGraham: We are called to be concerned about climate change. https://t.co/DptR8Qvd3x,855031 +RT @GMB: #StephenHawking tells @PiersMorgan that Trump needs to tackle climate change if he wants a second term as President…,621398 +"video uses young kids to promote 'global warming' fears -Dear Mom & Dad, climate change could be very catastrophic' https://t.co/882TWXIBgY",591179 +"@PrisonPlanet what about a celebrity doing something bad. +This proves climate change is a hoax. +FAKE NEWS @Independent",665535 +"Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges https://t.co/GnSlz1DUK0 via @FoxNews",625048 +@FoxNews @POTUS - Worried about climate change while creating Isis! 🙄,395927 +@GuyKawasaki motives of those against/ non-believers climate change vs those sounding alarms,819363 +"All the risks of climate change, in a single graph - Vox https://t.co/WXs0aMuN3u via @nuzzel thanks @roarsmelhus",226513 +RT @FinnHarries: Bill Gates and investors worth $170 billion are launching a fund to fight climate change through energy innovation https:/…,230277 +The cost of climate change: Nordhaus...He calculates the social cost of carbon (SCC) at $31 per ton of CO2... https://t.co/nw2WDLNlzC,217668 +Stop worrying and learn to love global warming: Climate alarmists are still running about… https://t.co/PvR3T41fkK,646356 +"RT @Chairmnoomowmow: Before you sit for a lecture about climate change from a california liberal, take a look at the job they're doing.…",585846 +RT @JunkScience: Exxon management has adopted the global warming religion. I am going to fight it. https://t.co/dVuJkjgfeQ https://t.co/Aj4…,320140 +"RT @BBCBreaking: China will honour commitments on climate change, PM says, as US appears poised to pull out of key deal https://t.co/lEVWQ7…",7769 +RT @paigemacp: It's morally irresponsible to make Albertans poorer to pay for a tax that won't make a dent in global climate change https:/…,128883 +"@POTUS @realDonaldTrump YES, and don't let those globalist stooges hiss in your ear about climate change. Biggest… https://t.co/RCqYVPUoAI",930716 +"RT @jswatz: Fixed your headline, WP: Trump says, FALSELY, ‘nobody really knows’ if climate change is real https://t.co/FOHO9s4nXd",52091 +World's biggest fund manager in 'Darth Vader-style' warning to company directors who deny climate change https://t.co/SFoDWgujdj,865029 +@marcorubio Am sad you confirmed DeVos Sessions. Pls don't confirm Pruitt. climate change is real,678269 +RT @KenDiesel: Scientists have overwhelmingly been right about climate change the last 50 years. #FakeGlobalWarmingFacts https://t.co/d9rBT…,646896 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",151820 +"RT @AmyMek: Let's blame it on Russia today, tomorrow fake news, next up global warming! This is getting really old! YOU LOST! GROW UP!😂 #Pr…",126071 +"RT @pipayfay: Bebe @hperalejo dumadagdag ka sa global warming. Sobrang hot mo be! + +HEAVEN AtHubR20",390635 +RT @ParkerMolloy: So... @EPA's climate change website is gone https://t.co/2lbP4RkUTa https://t.co/7l5j2nOCeT,846830 +RT @ChrisJZullo: Scott Pruitt is climate change denier and fossil fuel advocate. Burning of sequestered carbon impacts the carbon cycle #Tr…,903429 +RT @Channel4News: .@LeoDiCaprio calls on citizens to vote for “people who believe in climate changeâ€; @realDonaldTrump has called it…,552575 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,51238 +RT @leducviolet: only under capitalism could climate change become a 'debate' and something to try to devise 'carbon credit swaps' for. jes…,398685 +"RT @MichaelEMann: Oh my that's a low bar you've set Elon... +RT @elonmusk Tillerson also said that “the risk of climate change does exist”",442076 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,245264 +RT @DefenseOne: Not taking action against climate change will put our troops in harm’s way in the future. https://t.co/GpzqZ0nhVw…,1847 +I don't understand how climate change is fake when it has been the goal of the US military to dominate climate sinc… https://t.co/hnl0JC9RDd,800950 +RT @itomkowiak: This #GroundhogDay we are reminded that Punxsutawney Phil is now the only climate change scientist that the Trump regime al…,236737 +"The Trump administration is already defying long-held GOP orthodoxy on climate change https://t.co/v0kfOV5b3T https://t.co/FEelKEB5PV + +— …",371083 +"How the global warming scare began. +https://t.co/PlfxljabAV",288557 +niggas asked me what my inspiration was i told em global warming,645411 +"RT @TwitchyTeam: The HORROR! Chelsea Clinton blames diabetes on climate change, gets fact-checked HARD + +https://t.co/ZwUp6r69gg",582358 +RT @THECAROLDANVERS: everything in the world is depressing... my life... climate change... politics... penguin on penguin violence... ci…,105065 +"RT @nerdjpg: Remember everyone, +The enemy of the American people isn't global warming, oppression or wealth disparities +It's the FAKE NEWS…",105707 +@stephenfgordon I don't believe @awudrick has ever accepted man made climate change as a fact.,487304 +Every time it rains in summer I blame global warming,966654 +RT @SeneddCCERA: We’ve announced the creation of a new expert panel to help scrutinise @WelshGovernment progress on climate change https://…,367823 +"I see your GMO-crazy-crowd, but I raise you climate change, & evolution deniers (especially evolution, the heart of… https://t.co/kmiIA0gnEF",649275 +Drink H20 just not from plastic bottles. 1M bottles a minute: world's plastic binge 'as dangerous as climate change' https://t.co/PPDDJ14AFB,29185 +Meet the unopposed Assembly candidate who says climate change is a good thing that hurts 'enemies on the equator'… https://t.co/xt9p5uXckl,172119 +Former NOAA scientist: Colleagues manipulated climate change data for political reasons - #tcot #MAGA #Trump https://t.co/DNwpIRKmgj,685650 +RT @ClimateCentral: This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/9KDDDAbadF htt…,173254 +RT @JMU_Politics: @nytimes So our Secretary of State who was head of Exxon Mobile says Man made climate change is real yet head of EPA is l…,287735 +"RT @YouTube: .@NatGeo teams up w/ @LeoDiCaprio to explore climate change and prevent catastrophe. + +This is #BeforeTheFlood →…",97811 +RT @thehill: Arnold Schwarzenegger teams up with Macron to fight climate change: https://t.co/IJM5rzUq49 https://t.co/fbAWqsqW60,838235 +RT @ChelseaClinton: These experts say we have 3 years to get climate change under control. And they’re the optimists-The Washington Post ht…,254835 +RT @RuPaul: BREAKING: Russian scientists have confirmed that global warming is most evident on Friday nights at 8PM. #DragRace…,318905 +CDC's canceled climate change conference is back on — thanks to Al Gore https://t.co/Wbpi2HGVDi,259043 +"RT @Voize_of_Reazon: He doesn't believe in climate change, but what his position to living in the closet??? https://t.co/w1vjWSTOdq",381017 +RT @altHouseScience: House Science's @RepJimBanks said “I believe that climate change in this country is largely leftist propaganda.' Wh…,649757 +"The more I read & compare, the more ���� is outshining ���� . Fr healthcare 2 gun control 2 climate change 2 even how we deal w racial issues",529954 +Me listening to older white volunteers talking about not believing in global warming and how wonderful Trump is ��������,663529 +@Laura_Cobanius @sehol @kahoakes @Louisxmichael 1 he's an actor not a scientist 2 all global warming models have been wrong since inception,423720 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,22777 +@GingerConstruct Wasn't she and her husband supposed to save the world by focusing on climate change with her father?,766694 +"RT @leducviolet: I oppose the death penalty, and I also believe that anyone with power who opposes universal health care or climate change…",166583 +if you have a high IQ you would know that china didnt create global warming https://t.co/ekjrNM1xke,282634 +RT @JasonSalsaBoy: friendly reminder that its still hot this time of year bc of global warming brought on by people and possibly even repti…,353764 +RT @Independent: California says it's going to start suing if Donald Trump ignores climate change https://t.co/9NkhOwoaHM https://t.co/tUxv…,461317 +RT @ThugLoveOG: ''Tis the season to realize climate change is real https://t.co/4jXlIGjqnZ,31680 +Even worse are projections on what expensive policies to combat climate change will accomplish. https://t.co/ABHSpUCCHY,998009 +"Donald #Trump’s first staff picks all deny the threat of climate change | By @ngeiling +https://t.co/crVaThJXIJ",491318 +RT @ceed_uganda: Deforestation = climate change join #GuluGoGreenMarathon17 in partnership with @MegafmGulu @FAOUganda @NFAUG…,970330 +RT @VICE: Rex Tillerson allegedly used a fake email name at Exxon to discuss climate change: https://t.co/Doay1W3rFC https://t.co/n4QG5Gq3mc,476860 +@charleshildebr9 It's the BURNING of fossil fuels that causes climate change. Not using it for other manufacturing.,415960 +@RT_com thanks to global warming. one harsh winter and these racist geezers will fall like mosquitoes.,937064 +"RT @matthaggis666: Today on #abcforkids we have IPA's Georgina Downer explaining why climate change isn't real, and how voluntary voting is…",935085 +@realDonaldTrump What about climate change?,863837 +"Trump will roll back climate change policies today. In a symbolic gesture, he'll do it... https://t.co/3Ah5eKfdo2 by #NPR via @c0nvey",166987 +"RT @DrJillStein: The #GreenNewDeal: +👷ðŸ¾ Jobs for all who need work +☀ï¸ 100% clean energy +🌎 halt climate change +✌ðŸ¼ wars for oil obsolet…",65621 +RT @UNDPasiapac: Afghan farmer are suffering the impacts of climate change. The Ministry of Agriculture & UNDP are helping them adap…,486600 +RT @sunraysunray: Fighting climate change requires massive state intervention and shaping capital's investment decisions. Good luck :( http…,389265 +RT @BetteMidler: We are so fucked. Trump picks climate change denier for EPA team @CNNPolitics https://t.co/FmMc1OVZUn,151202 +RT @AstroKatie: Now would be a great time for the rest of the world to find ways to pressure the US on climate change and human rights.,906908 +BBC: Prince Charles co-authors Ladybird climate change book - https://t.co/v6KkVWsJEO https://t.co/JoIK7CQgbk,98725 +RT @AGSchneiderman: President Trump may deny the reality of climate change. But New York is showing the world that we will act. https://t.c…,741135 +RT @ConservationPA: Effects of climate change being felt around the world. States & cities must act b/c the federal government won’t!…,184479 +#trading #forex #binaryoptions BlackRock urges Exxon to disclose more about climate change-related risks - https://t.co/4D83lFyp8j,364623 +‘Study linking climate change and farmer suicides baseless’ https://t.co/EV89AFlSG8,289083 +#Canberra leaves most of Australia behind on climate change initiatives: report https://t.co/YrvgOcnpot,101465 +"RT @BuzzFeedNews: Other major nations will officially commit to fighting climate change — with or without Trump +https://t.co/OweKcgNCqr",877671 +This early winter weather is fantastic. Seasons beautifully crafted and consistent. The fuss of man made climate change painfully academic.,414975 +"RT @Hultengard: Detta är riktigt obehagligt. Söker man på LGBT & climate change på https://t.co/G3TO78nxtP , får man inga träffar. +https://…",819137 +RT @traill1: climate change made very real- how rainfall is shrinking the temperate area of SW Australia... https://t.co/1RgbtC1enc,162715 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,889367 +"RT @RobDenBleyker: If you're hecka white and think 'Trump can't hurt me', consider the fact that he doesn't believe in climate change. We'r…",682050 +"RT @echomagchicago: Our managing editor, @biancapsmith is writing an article on climate change for The Flux Issue #SneakPeek #StayTuned htt…",468148 +RT @Kelseyummm: Ok but how does it not scare people that our President Elect/VP Elect don't believe in climate change,276721 +What sparked global warming? People did. Here’s how. https://t.co/hzWiFPmaGK,809015 +RT @Greenpeace: 10 incredible things climate change will do. Number 6 will amaze you https://t.co/ntqRKwoiO1 #ClickBait…,82904 +RT @KatrinaNation: My take this am -- Trump’s denial of catastrophic climate change is a clear danger https://t.co/rVYrkjAzRu,629958 +RT @ProgressPolls: Are these hurricanes due to global warming or just mother nature? #HurricaneIrma2017,282539 +RT @Sustainable2050: Read in @nytimes article: 'the greenhouse gas emissions blamed for climate change'. What's so hard about writing: *cau…,576641 +"RT @YahBoyCourage: j cole supports global warming, domestic violence, and the cancellation of G-Force 2 which should have hit cinemas July…",721032 +"#NEWS #Armenian Climate talks: 'Save us' from global warming, US urged - BBC News: UN News… https://t.co/RQrF52C3mv",985863 +RT @hyped_resonance: doodlebob needs to fight climate change next,351847 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,102182 +"RT @unsilentspring: We talk about waging war against climate change. Well, 'The war is on. Time to join the battle.' @JSandersNYC…",432256 +"RT @ThisIsWhyTrump: Al Gore is a fraud and refuses to debate global warming +https://t.co/O5EEiUHlt3",810959 +Climate alarmist offers $500 billion plan to stop global warming — by making more ice in the Arctic https://t.co/hktqREYFcl,339263 +"@realDonaldTrump + +Of all the WORLD issues, the most critical is climate change, which could create many many jobs.… https://t.co/HSTVt6Uszk",426325 +Donald Trump's pick for CIA director refuses to accept Nasa findings on climate change | The Independent https://t.co/zbMY4ZBL1L,634147 +"RT @LindaSuhler: I suspect the climate change models are the climate equivalent of the pollster models who had HRC winning... +Libera… ",43694 +Why everyone -and not just liberals- should care about climate change: Katharine Hayhoe: https://t.co/J4GnNd7icF,693219 +Fuck global warming.,840612 +"#ClimateChange: For New York, climate change is an immediate existential threat.: https://t.co/VjNr9RslK0",292313 +"RT @Conservative_VW: Just Think 🎉🤔 + +When Liberals end up in Hell ... + +They'll finally know what climate change is 😂😂 https://t.co/6cS0VAFyVi",459823 +you're literally all sorts of dumb if you think global warming is fake...,458700 +RT @Jackthelad1947: Cities can pick up nations’ slack on combating climate change #C40 #auspol  https://t.co/zdHSaAoP3o @abcnews #wapol #SM…,886294 +California targets dairy cows to combat global warming - Story | WNYW https://t.co/McQrRPVlv6,72399 +RT @jennyk: Coffee as an anchor for rural development & the need to plan for climate change @billclinton #WorldCoffeeProducersForum @GCPco…,838493 +RT @BadAstronomer: The catastrophe for climate change alone the Trump presidency represents is almost beyond measure.,239467 +How comics can help us talk about climate change https://t.co/LbrUyG5wCv via @grist,966716 +RT @LeoHickman: Here's a quick reminder that Gove once tried to remove climate change from the geography national curriculum…,88590 +"RT @jeneuston: THE POPE believes in global warming. +THE POPE. https://t.co/sUe6f3QO29",270660 +#ClimateChange Trump cutting funding for climate change research. We're doomed!!!!!!!!!!��,612857 +RT @SheilaGunnReid: .@sandersonNDP who shld resign? An MLA who said humans aren't the sole cause of climate change or one who called ABs s…,481502 +"Trump won't save us from climate change, but maybe surfers will https://t.co/gjZtgIFE7d via @HuffPostGreen",953534 +"Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges - Fox News https://t.co/qIjeUIxUcq",399293 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,325715 +RT @Arwyn_Italy: @EU_ScienceHub impact of climate change on soil erosion has positive and negative effects but land use change may b…,412226 +RT @UNFCCC: Today is gender day at #COP22. See how @adaptationfund projects empower women in fight against climate change…,817566 +Seeing how ignorant people are to global warming is truly shocking #BeforetheFlood,610516 +"RT @reedfrich: Trump's EPA chief: We need more review & analysis to find out if manmade climate change is real. +Also: We're guttin… ",921902 +"RT @sciam: The effect of climate change on endangered species has been wildly underestimated, a new study has found. https://t.co/da7z2KhB06",279576 +RT @YahooNews: Now I Get It: The hot debate over the Paris Agreement on climate change https://t.co/eQBj13Z2wG https://t.co/PC9Ye0eP3p,164195 +RT @Reuters: U.S. Energy Department balks at Trump request for names on climate change https://t.co/LIVzmdSIB5,233989 +Trump to build wall at Irish resort to protect against effects of climate change #MAGA #Ireland #PresidentElectTrump https://t.co/YfNQlWZRXG,650411 +@pemalevy @ClimateDesk NOAA has disproven global warming through their own measurements of OLR's. Enjoy the cult. https://t.co/h5WOq74gzV,531313 +.@washingtonpost Why does EPA need regional climate change advisers? How this this job impact environmental protection? You may ask.,4333 +RT @vicenews: Trump’s EPA chief isn't sure humans are causing global warming https://t.co/kP1zuWfmc5 https://t.co/byiWuDiRWg,643985 +"Before it eventually does us all in climate change will be decent for a while, can't remember it being this warm in March",556079 +People don't think climate change is real https://t.co/Po4gnB8iA9,362728 +@i_artaza @COP22 @UNFCCC @ConversationUS regarding climate change.,619584 +"#Rahm +Chicago mayor Emanuel posts EPA’s deleted climate change page https://t.co/ylqySjtG3P",498930 +"RT @ReutersUK: Britain's progress on climate change is stalling, government advisers say https://t.co/66c8XAf2lk https://t.co/rzYlCo2Fo7",711047 +RT @DavidPapp: Trump's order will unravel America's best defense against climate change https://t.co/PDhzqCCWkD,280183 +"RT @YEARSofLIVING: 'It comes down to a question of security, what will this lead to? 'Watch NOW to see the link btw climate change & extrem…",710884 +"Glacier National Park is overcrowded. Thanks, climate change.: https://t.co/pTZHB4oRDQ",669728 +@wolfeSt .. kind of conspiracy to convince people that human action is causing dangerous climate change. I don't kn… https://t.co/mBCuFJukwO,873903 +RT @yayitsrob: Kaine asks Tillerson flat-out whether Exxon knew about climate change in 1982 and lied about it. He didn’t answer. https://t…,133051 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,580652 +RT @EnvDefenseFund: Wall Street is pressuring fossil fuel companies to reveal how climate change could hurt their bottom line. https://t.co…,122184 +Rick Perry Falsely downplays human contribution to climate change https://t.co/kEDnagoCNU https://t.co/Azm0KNd6Xj,297918 +"RT @NaomiAKlein: An assault on America's future, but also on the future of everyone forced to share this warming planet with Trump a…",443350 +ur mcm is a contributing factor to global warming,942345 +"RT Canada to gain nice days under climate change, globe to lose: study - CTV News",487311 +RT @washingtonpost: The nation’s freaky February warmth was assisted by climate change https://t.co/2liQi8TVn2,624290 +RT @jgrahamhutch: It is November 1st and the high is 89°. The next person to tell me global warming is a myth better be prepared to catch h…,462841 +@JenThePatriot @pantheis Guess again dear. I study climate change and it's impact on biological systems as part of my work. Try again,682584 +"RT @stealthygeek: @MaxBoot @nytimes @BretStephensNYT The scientific consensus of the reality of climate change is not a 'prejudice,'…",86801 +This happens about once a year in PHX. But I bet it will happen more often as climate change is ignored. https://t.co/VO0hZepXBh,614098 +@RobinWhitlock66 @manny_ottawa @BigJoeBastardi $1000 to you Robin for a peer reviewed study showing man made global warming. I will wait...,71036 +RT @JasonKander: I don't believe one day's weather proves/disproves climate change. But...it's 63 degrees on Christmas Day in KC...with a c…,603798 +RT @PrisonPlanet: Remember this next time DiCaprio lectures us all about carbon emissions & global warming. https://t.co/e0Mljg7wXP,539219 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,571734 +RT @flovverpovver: rt if you think mother earth is....kinda hot (global warming),891254 +RT @BuzzFeed: This is what climate change looks like around the world https://t.co/E3dfjtCfH2 https://t.co/y2lDM7W42V,16967 +"@realDonaldTrump Lost half your staff +Lost over half your supporters +Lost the debate on climate change +Lost interes… https://t.co/zjxmrUUnSm",366465 +"RT @TeenVogue: Dear Donald, most of us DO know that climate change is real/ a real threat https://t.co/yyTy8Yy1ju",468888 +RT @AustralisTerry: Queensland is now fuelling global warming #methane #CSG #LNG #AUSPOL @QLDLabor #CSG https://t.co/amWMGDoxNc,755956 +"RT @tveitdal: Nicholas Stern: cost of global warming worse than I feared +Heathrow’s 3rd runway could be incompatible with Pari…",854237 +RT @homeAIinfo: Researchers look to artificial intelligence to study future climate change - The Deep Learning for https://t.co/gnaMQ6Etnu…,929586 +"RT @LeahRBoss: #IAmAClimateChangeDenier because I believe climate change is a natural, cyclical occurrence. A view backed by millions of yr…",972465 +"@ThePlumLineGS International cooperation to fight climate change will continue, but without US leadership +> all's w… https://t.co/52lb3BeGqU",47414 +RT @CLTMayor: Proud to stand with fellow mayors to combat climate change #uscm2017 #Mayors4CleanEnergy @CLTgov https://t.co/axQz8rj8IJ,237511 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,473045 +Trump really doesn't want to face these 21 kids on climate change https://t.co/MGzeNNFycP https://t.co/0ZW5ire1Az,719760 +RT @PopSci: Four things you can do to stop Donald Trump from making climate change worse https://t.co/V6o9QJSdVl https://t.co/L34Nm7m1vV,3380 +"RT @pollreport: As president, should Donald Trump remove specific regulations intended to combat climate change? +More:… ",915945 +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/qlpINzgAvG,746072 +"RT @AlessiaDellaFra: Food security, climate change and agriculture - Geral... https://t.co/vBI9j9rrg8 #recipes #foodie #foodporn #cooking h…",793658 +RT @TomSteyer: Don't let the Trump administration's distractions fool you. We must remain vigilant about addressing climate change. https:/…,718346 +"RT @nowthisnews: While the U.S. is denying climate change, Europe is building an island to house 7,000 wind turbines https://t.co/ts8obKbQhX",991582 +@climatebrad Would you give experimental drugs to your children that were supposedly validated as the climate change theory.,186975 +"RT @Silvio_Marcacci: US Geological Survey notes hot, early Spring then ties it to climate change. DC's Spring arrived 22 days early. https:…",544544 +"RT @ProSyn: To achieve the #ParisAgreement goals, efforts to combat corruption and climate change must go hand in hand https://t.co/hJAYyD…",598757 +RT @FRANCE24: Scientists disprove global warming took a break https://t.co/gqgtitWk2S https://t.co/yObhlZ1ueJ,352182 +RT @BCAppelbaum: The global warming tweets have now been removed from the @BadlandsNPS feed. Here's the tweet the government does no…,799769 +"@RaymondSTong I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",285144 +"BBC News - Climate talks: 'Save us' from global warming, US urged https://t.co/JYLor2p7IH we can do it if we stick together #oneworld",406272 +RT @ColinJBettles: Farmers in #Canberra this week calling for more climate change action #agchatoz @NationalFarmers @farmingforever…,92988 +RT @Miriam2626: Praying that climate change doesn't exist! #ICouldSpendAllDay https://t.co/rVLmwAMF52,36673 +RT @TEDTalks: Pope Francis is taking climate change seriously. Why his embrace of science matters: https://t.co/98jzIzKwHB…,558989 +RT @CapitolAlert: Jerry Brown thinks GOP’s belief in states’ rights could help him fight climate change https://t.co/KjN9bqPC8a,261633 +"@AlasdairTurner Smart move. You may need it because, the new adminstration has confirmed global warming is a hoax. https://t.co/9IdXBkSOvO",239960 +RT @latimes: The biggest dystopian book of the spring? “American War' imagines an America torn apart by climate change https://t.co/Kr4PBwv…,938879 +Canadian cities hit by climate change https://t.co/XhJSYq816e via @YouTube,638143 +"Enough 'tea and biscuits engagement' - @RajThamotheram panel on climate change, board governance, and inv industry supply chains #rieurope17",162574 +"RT @aerdt: Oklahoma hits 100 ° in the dead of winter, because climate change is real | By @NexusMediaNews +https://t.co/YV0NpZupG1",78388 +"RT @neontaster: Forza Motorsports is fun, but I can't help feeling like my race cars are contributing to global warming. Couldn't t…",966667 +"RT @mehdirhasan: '40% of the US does not see [climate change] as a problem, since Christ is returning in a few decades' - Chomsky https://…",865944 +"RT @DonCheadle: For the first time on record, human-caused climate change has rerouted an entire river - The Washington Post https://t.co/H…",972181 +"RT @ReachMeBC: @VICE isn't global warming because of loss of things in the ocean and trees, etc? @VICE S05E03 @hbo",946851 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,214800 +"Trump's climate change denialism portends dark days, climate researchers say https://t.co/OyrJShtmby",728032 +"RT @oldmanebro: Nah this a lie. +Don't listen to people who affected by climate change right Donald!? https://t.co/bPkFOWyXvU",600651 +"If govt dont start action then see our youth reaction on climate change +@PMOIndia",728584 +I agree with his assessment until he said he will die from climate change which is a weird point to make https://t.co/IayZkA58Au,706681 +"Forgetting all of Trumps other archaic views for a second, I cannot comprehend how the fucking idiot doesn't believe in climate change.",589739 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",450581 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,47561 +"RT @kentkristensen4: #climatechange #polar #Bears let's fight together for the global warming make the planet ready for our #kids +���� +������ h…",401905 +"@reddit @StationCDRKelly @Pontifex +Oh! Glorious space art, with the climate change and political issues occurring in the world these days,",800981 +@crashandthaboys Hm. I make the same face when I urinate. And I urinate every time someone says global warming isn't real. - Jack,589183 +"RT @IMPL0RABLE: #WeThePeople + +Jesse Watters: 'No one is dying from climate change' + +How climate change is killing people: https://t.co/BMX…",222534 +"RT @jumpercross1: What does it take for President Trump to accept climate change, a shark on the freeway ? https://t.co/DTA0TlOyjJ",357670 +"in FEBRUARY. but no, climate change is just an elaborate chinese hoax. ;____; RT @altNOAA: (cont) https://t.co/1kfaBY33Df",923142 +RT @OfficialJoelF: Massive climate change march in Washington DC on Trump's 100th day in office https://t.co/CqOiY1Ddn2,497636 +RT @TheEconomist: Ocean VR: Dive down to discover what coral reefs in Palau have to do with climate change https://t.co/ByzvcPEq1A https://…,443455 +NBCNEWS reports World powers line up against Trump on climate change https://t.co/Un7hSvqQEI … https://t.co/PN7oSPCR34,730705 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,830855 +"RT @Independent: World leaders should ignore Donald Trump on climate change, says Michael Bloomberg https://t.co/kuxK0prhLY",255556 +"RT @MrJoshSimpson: Voting for someone who denies climate change simply because they are Pro Life is, and I'm putting this nicely, fucking m…",961712 +@RTUKnews Far more likely is geoengineering and alluminium being the cause not global warming .,589379 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",956735 +"@CNN 20)Unchecked climate change & a future where they may starve, lacking water and food.",216207 +"RT @armyofMAGA: Is climate change a liberal hoax? #MAGA + +RETWEET to make the poll more representative and accurate!",650019 +"House Republicans buck Trump, call for climate change solutions https://t.co/T9yJdEHjpq",606200 +RT @10NewsParry: What’s #ValentinesDay w/o chocolate & Champagne? Both are at risk by 2050 due to climate change from heat & drought…,753836 +it's cold... where's global warming? ��,847322 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,273226 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,83629 +"RT @BuzzFeedNews: The only way to save the polar bear population is to hit the brakes on climate change, US Fish and Wildlife says… ",226734 +"RT @DavidParis: “we are in the sensible centre on climate change” +“Plz don’t asked me about Adani or other new coal mines plz plz n…",788872 +The bell continues to toll: Record-breaking climate change pushes world into ‘uncharted territory’ #climate… https://t.co/4iO3lKV22s,870974 +"RT @JamilSmith: Lindy West, on living in a Seattle choking on the smoke from nearby forest fires, likely stoked by climate change. https://…",591870 +RT @likeagirlinc: Scientists just published an entire study refuting Scott Pruitt on climate change https://t.co/g0wLCZBr5p,568912 +"RT @kdeleon: For California, fighting climate change is good for the environment and the economy #SB32 https://t.co/J8MBVnAD01",789519 +RT @manny_ottawa: Record cold weather Ottawa this weekend. Yes I know nothing to do with global warming because any contradictory evidence…,731488 +RT @jewiwee: Polar bears. You can thank global warming for this: melting ice sheets interfere with their ability to hunt. https://t.co/j6BY…,244090 +Trump's energy policy includes scrapping Obama's climate change efforts and reviving coal. #climatechange https://t.co/IhQhbKCe9I,735125 +"RT @EricBoehlert: good grief, if you think climate change = 'weather' don't hang a lantern on it for everyone to see https://t.co/ANKiA1dxuL",764484 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",646717 +Why is a VS model teaching us about climate change on Bill Nye Saves the World? Is she a scientist or is she there to get more views?,31157 +@HomrichMSU @pourmecoffee and this never came up in the debates. Skipping global warming was one thing,152232 +RT @BirdwatchExtra: Populations & distributions of 75% of England's wildlife likely to be significantly altered by climate change…,414280 +A group of young people outraged at the lack of response to climate change have won the right to sue the government. https://t.co/SzIYiGZStM,587546 +RT @ClinBioUS: Google just notched a big victory in the fight against climate change https://t.co/O45nywFNdh via @Verge,821756 +fighting for a #resilientredhook! and climate change justice. bringing updates from this South Brooklyn NY waterfront community,373215 +RT @ClimateCentral: Trump called Obama’s view of climate change's urgency “one of the dumbest statements I've ever heard in politics.â€ http…,826764 +@williamnewell3 @descalante97 @MissLizzyNJ lol are you trying to say global warming doesn't exist because you still need a jacket?,733307 +Dr. Tim Davis tells us harmful algae blooms are becoming more common with climate change. Scary! @NOAA… https://t.co/AuCIZpokVK,596788 +I am definitely for this march...there's no 'Alternative Facts' in global warming! https://t.co/g02t6ULMyR,57392 +RT @OnlineMagazin: 🆘‼ï¸⛈⛅ï¸😫 New Zealand: climate change protesters block old people at the entrance of a bank in #Dunedin. Police help. http…,761256 +Biggest pet peeve: Republicans pretending climate change doesn't exist:,586312 +"RT @pagegustofsonxx: #TwitterBlackout bc I don't stand with men who are sexist, racist, mean, and most non believers in climate change. #no…",93389 +Billionaire Richard Branson on Donald Trump: Focus on climate change https://t.co/IfjeKZz3EL via @AdellaPasos https://t.co/PA6C9sPuFy,93917 +Trump meets with Princeton physicist who says global warming is good for us - The Washington Post https://t.co/hkRrL1QEWg,73551 +@Chaosxsilencer Global warming doesnt exist but climate change does,165581 +"RT @AnnCoulter: According to the MSM, all evil is now caused by the Russians or global warming.",156791 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,823794 +"RT @latimes: Obama talks about the need for more action on climate change in his farewell speech. + +Full transcript:… ",63392 +RT @ClimateCentral: Trends in nighttime temperatures are a symptom of a world warming from from climate change https://t.co/h4G9pRPAnC http…,182207 +@LeoDiCaprio Thanks for the great documentary on climate change. It really hit home! Please check out this project https://t.co/fUiwrUtDDA,829750 +RT @Gizmodo: Donald Trump: Maybe humans did the climate change after all https://t.co/P7dLa8lK2I https://t.co/Gq5CUUxHiW,101290 +"RT @davatron5000: A climate change denier as head of EPA. +A creationist as head of Education. +A Nazi-inspired database for Muslims. +Ugh. Th…",639078 +RT @V_of_Europe: Putin says climate change not man-made https://t.co/8QCtKawXl7,960964 +Does Trump buy climate change? https://t.co/hBNAHxdHEY,884242 +RT @hondadeal4vets: Lets use those fidgit spinnas to spin the earth the opposite way and reverse global warming,333194 +"Ocean Sciences Article of the Day - Opinion: No, God won’t take care of climate change (High Country News) https://t.co/1iGTnHrQzp",180605 +RT @Mrsmaxdewinter: Opinion | Harvey should be the turning point in fighting climate change https://t.co/ULrbHtQiCB,724302 +"Amid all the 'agents of doubt' in climate change, you have to get involved https://t.co/Z5FC8Pi8pq",464585 +RT @MrKRudd: When will Turnbull gave the guts to stare down the mad right of his party on climate change. https://t.co/Xo8A77mYO0,857134 +RT @bmeyer56: Urban forestry tactics for climate change. Check them out but consider how they construct human&non-human encounters https://…,289751 +"What's an honest intelligent climate scientist to do in the face of the madness of Left-wing 'climate change',... https://t.co/kAzc8MAAV3",746574 +"Instead of building a pointless wall, how about we focus on important issues like climate change, education, jobs and healthcare. Just sayin",5343 +Koalas don't like water but they're being 'driven to drink' by climate change https://t.co/XClSuR90k4 https://t.co/26yQCmvGlD,477522 +"While the left frets about global warming, an actual threat to water access and availability exists +https://t.co/vyy8Z9HAEn",446879 +"RT @ErikSolheim: 'A conservative case for climate action' +Left, right or centre: climate change affects everyone.… ",546541 +"RT @CNN: Deadly heat waves are going to be a much bigger problem in the coming decades due to climate change, researchers sa…",732463 +"RT @MatteaMrkusic: For the first time at Sundance, there will be a spotlight #climate change and the environment. https://t.co/Cq3SnrZtCb",380608 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,336640 +"@lizoluwi @RangerGinger @JacquiLambie @AEDerocher @MickKime https://t.co/meZ20Sjz0M + +this is a must watch about climate change",52477 +"Not just tropical diseases spread by climate change, but crop & livestock diseases as well. +Lots of costs we're just starting to suspect.",194507 +2016 set to be the hottest year ever recorded - sparking fresh climate change debate - Yorkshire Post… https://t.co/x9X2SyyElX,538733 +RT @shazbkhanzdaGEO: Smog is dangerous.Reason is pollution.we need to act and act now.climate change is the biggest threat to the world htt…,622382 +New York skyscrapers adapt to climate change - https://t.co/Tkl2muOQ1K https://t.co/SIxZdjlHuD https://t.co/pEcwJb1FOv,758067 +"RT @PimpBillClinton: .@algore gotta admit you were right about global warming, dawg. It's November and it's hotter than two chicks kissing.…",969245 +Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/msW25jwaI3,6204 +RT @HillaryClinton: A historic mistake. The world is moving forward together on climate change. Paris withdrawal leaves American workers &…,360927 +"RT @Oliver_Geden: Surprisingly high number of Germans says #climate change biggest concern, left and far right voters below average…",733862 +RT @OGToiletWater: If you from the bay you know damn well the city never goes over 85. Yall still think global warming aint real https://t.…,254831 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",312789 +RT @UNFCCC: #Sundance will shine spotlight on climate change this year https://t.co/cuRgRyiHNK @sundancefest https://t.co/CHZwXCcCDE,683632 +"RT @TimesNow: Pakistani shelling, global warming, and ecological changes triggering avalanches in J&K, says Army Chief Gen Bipin… ",698155 +RT @sara_hughes_TO: Have a look at some of my early findings on implementing climate change mitigation measures in cities! https://t.co/N7u…,581241 +"RT @BelugaSolar: Going green in China, where climate change isn’t considered a hoax https://t.co/U7bshipLUi",685887 +RT @Earthjustice: These are the states fighting to save the earth: The nation's new front line of defense against climate change.…,495618 +"I sorta finished the game, I fought climate change and took a nap with King Ralph. Never left the room. #BestKey @TristinHopper #thanks",98564 +RT @MattBors: Florida. Half the state's going to disappear in ten years due to global warming. They're going for the guy who says it's a Ch…,422534 +RT @SharkMourier: A climate change checkup on spectacular coral reefs. Watch awesome @physiologyfish explaining this crucial issue!…,378882 +RT @Paul4Anka: Sailor of global warming https://t.co/0BJGbnGdtT,175872 +RT @bpolitics: Welcome to the first U.S. town to get federal money to move because of global warming https://t.co/mN5453BJmO,135908 +@latimes @latimesopinion I really hope climate change takes California and all it's cultural sickness out to sea.,840249 +@benshapiro we should blame climate change.,37433 +A supercomputer in coal country is analyzing climate change https://t.co/YRoekNhycx,231996 +@JohnJohnsonson @rohan_connolly Vote PHONy- we'll make sure climate change is the least of your worries!,573211 +RT @stranahan: Leonardo DiCaprio hopes to use Ivanka Trump to push climate change policy – TheBlaze https://t.co/jcFL7a1Cue,703385 +"RT @quinncy: 2017: Humans aren't responsible for global warming, are responsible for not mentioning how they're not responsible…",11101 +#Rigged #StrongerTogether #DNCLeak #Debate #Iamwithher climate change is directly related to global terrorism https://t.co/6SoXS3kdim,819890 +"@southerncagna @POTUS in air force one, no doubt.... that's a pretty penny and what about the climate change 😕",572492 +#researchpreneur #Twitter #Futurism A comparison of what LamarSmithTX21 says about climate change and what science says about climate chang…,120502 +RT @NatureNews: Donald Trump should start his presidency by dropping his pantomime-villain act on climate change…,146930 +"RT @LivingBlueinRed: Gee a bunch of 70 year old rich white guys aren't worried about climate change and the fate of the planet. +Go figure.",913546 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,808868 +Novel new lawsuit on behalf of 21 kids against fed to fight back on climate change https://t.co/T5VyADL9Kq,383788 +"Australia faces potentially disastrous consequences of climate change, inquiry told https://t.co/Xyk1aTHNwH",629338 +Lol if you believe in global warming your an idit @NASA,429250 +@IngrahamAngle @nytimes Obama was liked by globalist leaders because he supported the climate change hoax agenda and retreat of U.S. power.,327253 +Vicki Cobb: The Cheeseburger of the Forest: Evidence of Global Warming: For the climate change… https://t.co/j6Td26KYSa | @HuffingtonPost,233323 +RT @GreenPartyUS: The human cost of climate change is too high. We need to get off fossil fuels and on to renewable energy by 2030 if we ho…,754966 +WAIT!! I thought climate change was our fault ?!? https://t.co/8x9alu051P,5107 +"Some of y'all STILL don't think climate change is real and I just do not understand why + +https://t.co/fMYrDe6DwY",285700 +@realDonaldTrump if global warming isn't real then why is my seasonal depression lasting the whole year?,997597 +Is Game of Thrones an allegory for climate change? Is Jon Snow supposed to be Al Gore? I'm on to something here folks I SWEAR,605325 +RT @BBWslayer666: Im gunna be pissed if the world ends by some lame ass global warming and not an alien invasion or A.I hitman androids,181468 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,921776 +RT @jaboukie: climate change is too real for us not to install solar panels in congress and harness the collective shine of old white polit…,131890 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,727491 +@robinmonotti About turn on climate change - that's a big one.,407368 +"RT @NYGovCuomo: With or without Washington, we're working to aggressively fight climate change and protect our future. #ClimateMarch https:…",720318 +"RT @SafetyPinDaily: Native American tribes reject U.S. on climate change and pledge to uphold the Paris Accord | Via @newsweek +https://t.co…",521215 +"RT @fiscal_penalty: Despite the global warming, Alaska has had very little, if any, warming since 1977 (except Barrow), as shown below: htt…",699505 +RT @kylegriffin1: Dan Rather goes off on climate change deniers—'To cherry pick the science you like is to show you really don't unde…,260605 +"RT @KamalaHarris: Tackling climate change is also about improving our state’s public health. Read more: +https://t.co/ZRU7HJRmVA",4496 +"Trump: climate change is probs fake +Scientists: nope. No it's not +Trump: wish we knew +Scientists: it's REAL +Trump: guess we'll never know :/",162556 +"RT @Grayse_Kelly: 'Polar bears don't have any natural enemies, so if it dies, it's from starvation' +This is for the 'global warming…",283270 +"RT @charliemcdrmott: That our future president does not believe in climate change, or that he does but has personal interests that keep him…",631070 +RT @mark_johnston: Merkel urges bigger fight against climate change after U.S. move https://t.co/35XDGrUgWw https://t.co/DjIV7fDHEU,343853 +#climatechange UW Today Rapid decline of Arctic sea ice a combination of climate change and… https://t.co/iCvPL2bYXe via #hng #world #news,195609 +RT @Greenpeace: Europe is facing rising sea levels and more extreme weather because of climate change https://t.co/TmkUgsMZ6j…,729294 +"This major Canadian river dried up in just four days, because of climate change https://t.co/kFUilhc2vn https://t.co/mlCs32dejK",342029 +RT @MichaelEMann: '#RexTillerson’s view of climate change: just an engineering problem' @ChriscMooney @WashingtonPost: https://t.co/EExB1OS…,31305 +"RT @RepTedLieu: Estimated proportion of scientists that reject consensus of man-made climate change: 1 in 17,352, or 0.000058%. #DefendScie…",974349 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,827385 +.@RepDennisRoss Don’t let our children face climate change disaster! #ParisAgreement #CleanPowerPlan #SaveTheEPA #ActOnClimate #swingdist,110637 +MUST READ THREAD�� Ideologues ignore climate change but DOD recognizes that it's a NATIONAL SECURITY ISSUE… https://t.co/eAdLMF85mU,330981 +RT @beemovie_bot: I predicted global warming.,716213 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,673772 +RT @JonahNRO: I don't think you got the memo that you're not allowed to say anything positive about climate change. https://t.co/p0ok3eV9jJ,533976 +"Well, to be fair to @KamalaHarris, John Kerry did say that 'climate change' is a greater threat than terrorism.",467243 +Top Russian Scientist: ‘fear a deep temperature drop — not global warming’ https://t.co/zqgkOQfYZg via @PSI_Intl,671317 +Chad is the country most vulnerable to climate change – here's why https://t.co/Jh6yjo7Rlu,232183 +"China and the EU could issue a formal climate change statement by next week, ex-UN official says https://t.co/IOzVcTU5T4",489015 +RT @WorldfNature: A supercomputer in coal country is analyzing climate change - Engadget https://t.co/QtVmZdIm4S https://t.co/M5Q3evANNo,356158 +RT @AlexCKaufman: Concussions are to the NFL what climate change is to fossil fuel industry. https://t.co/lE2uCt1b9R,988748 +Is the bridge of Heroin really about global warming I'm shook,240002 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,873392 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,345670 +"Retweeted Inquirer (@inquirerdotnet): + +#PresidentDuterte says he will sign the climate change agreement. |... https://t.co/FySpc7fRg9",356761 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,530584 +"RT @drewparks: Sick of hearing about Russia and tweets and scandals... it's time to talk about Flint, pipelines, and climate change.",177001 +Nice to see the issue of climate change is being addressed by the government..... https://t.co/m9qraM3cys,525148 +@RealJack climate change is nothing new...The ancients migrated out of the place we now call Sahara Desert (from 'Eden' to Sweden).,347083 +RT @JoshBBornstein: Strong contender for muppet of the year. Should stick to climate change. https://t.co/UoHE4L15LI,784269 +RT @CNN: President-elect Donald Trump says 'nobody really knows' if climate change is real https://t.co/BTl3I3w7Cr https://t.co/QNF5ax8DjA,420686 +"Kids (ages 9-20 yo) are gearing up to take Trump to court over climate change +https://t.co/dn7UTh74Q0 via @theblaze",918830 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,550616 +"The left has turned climate change into a form of religious dogma, beyond reproach. The cthlc church killed Galileo over 'settled science' ��",696228 +"RT @Doener: Gates, Bezos, Jack Ma and others worth $170 billion are launching a clean-energy fund to fight climate change: https://t.co/uTM…",861731 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,677852 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,591361 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",962050 +RT @guardianeco: Modern agriculture cultivates climate change – we must nurture biodiversity https://t.co/jcY1WaiE5I,76649 +"RT @MrTommyCampbell: Mike Pence +#ScienceCelebs @midnight + +(Just kidding! He thinks climate change is a hoax, evolution isn't real & homos…",832328 +Hundreds of millions of people are at risk of climate change displacement in the decades a... https://t.co/o0ZEFgOEOZ #globalcitizen,239449 +RT @IndyUSA: Scientists explain apocalyptic effect of Trump pulling out of the Paris climate change agreement…,467995 +Six irrefutable pieces of evidence that prove climate change is real https://t.co/oOEMKHB7eF,467450 +Anthropogenic climate change is absolutely real. Drawing specious conclusions between a freak storm and regular wet seasons is idiotic.,127162 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",477381 +#alberta #carbontax Thanks NDP! You carbon tax is doing magic. Life is bitter cold in AB. Finally global warming is gone by taxing air !,58715 +RT @ClimateReality: We can debate how to tackle climate change – but the science is settled #ClimateMarch #ActOnClimate https://t.co/0QIKSh…,701473 +"Carbon dioxide not ‘primary contributor’ to global warming, EPA chief says https://t.co/qQsNni6clh https://t.co/e5k4kbPMcg",893061 +"RT @Arctic16: this is horrible, when will we wake up to the realities of climate change? https://t.co/h2jMWizKoY",335217 +"Tell me again how you think climate change doesn't exist. +https://t.co/UBwSAr1YfH",909071 +Trump to sign sweeping rollback of Obama-era climate change rules https://t.co/1BgTlOq9QF,471885 +"@eemorana I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",164325 +Caribbean countries get financial help to fight climate change... https://t.co/KOgyqq7gWP,875446 +"26 before and after images of climate change: Since the election, leaders of the environmental movement and… https://t.co/dwcP4DPPku",366749 +RT @Eugene_Robinson: Trump can’t deny climate change without a fight https://t.co/vWgwkE8GTi,625267 +Did you know air-conditioners are 90% rayon responsible and responsible for global warming amazing,805316 +"RT @YarmolukDan: AI utilized for the most critical problems today, climate change, disease, realize the good #AIclimatechange https://t.co/…",779520 +"@deanna_reyess maybe if I pay him, like big oil pays him to deny climate change , he'll show 🤔",967449 +Obama’s “climate change legacy” = dumping billions of taxpayer $ down a well. https://t.co/swF34JRAgS,39093 +aye you believe in climate change @aaroncarter?,306078 +"RT @MikeHudema: Scott Pruitt, head of the EPA, said that carbon dioxide isn't a primary contributor to global warming… ",983065 +RT @Alyssa_Milano: This is huge. Kids suing the government over climate change can proceed to trial: https://t.co/C53TlAEN13 via @slate,106475 +"RT @Cllr_KevinMaton: How to fix climate change: put cities in charge. +Coventry Council must continue its drive in this area https://t.co/c…",380508 +@FSUSarah42 And they say global warming isn't real! https://t.co/k0aN2o13LG,236562 +Finally the year we don't have to make up snow days and global warming decides to be real,589848 +RT @ClimateGroup: Companies like @GM are leading the fight against climate change: @DamianTCG #COP22 https://t.co/SUxE5WE44d,741895 +RT @kentkristensen1: @kentkristensen1 we need to protect our planet the climate change is real and it's fast #climatechange help please 👍 h…,204042 +"RT @WillMcAvoyACN: Yes, the White House website's climate change page is gone. All the policy pages on https://t.co/Ju0da64MI6 have been ta…",238985 +#Wisconsin disaster agency plans for climate change https://t.co/9yzR4DSsDW,468940 +RT @thetommyburns: So we're actually close to electing a dude who doesn't believe in global warming?? Like as if its an opinion or something,467571 +RT @RECOFTC: #ForestsMatter because they minimize the negative impacts of climate change. #ForestActionDay #COP22…,86934 +"@HuffingtonPost Of course he did. Denies sexual assault, climate change, Trump U fraud. This is small stuff to him.",650045 +":: Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/qHyO4ip5gY via @ShipsandPorts",334396 +Ice Age climate change played a bigger role in skunk genetics than geological barriers - https://t.co/k16i38AV4y https://t.co/DXNCohwJcs,308397 +RT @ideas4thefuture: ‘There’s no plan B’: climate change scientists fear consequence of Trump victory https://t.co/U2cQQqHJPR,435631 +RT @CleanAirMoms: Reading: Guardian How Obama's climate change legacy is weakened by US investment in dirty fuel https://t.co/PshDJsiwAe,206312 +I also wonder how all those people who liked the 'I fucking love science' facebook page feel about climate change.,565453 +"RT @BillMoyersHQ: The threat of climate change is pushing environmental law into new territory, writes @LightTweeting https://t.co/wqA5Wsag…",250852 +"RT @350: We have two options. Either we continue down the path towards climate change, or we #BreakFree from fossil fuels… ",511144 +RT @ericcoreyfreed: Anthrax spores stay alive in permafrost for 100 years. Enter climate change. Can you guess what happened next? https://…,985030 +RT @MiriamElder: I've long been arguing that 'we're all gonna die' is a better term than 'climate change' anyway. https://t.co/HJGCRGOohz,5045 +"RT @billmckibben: Hey, a hit of good news: judge allows youth lawsuit against fed govt on climate change to proceed! https://t.co/P4Y11CEbaQ",962371 +"Is this who we really want to be? A nation with a leader who promotes bigotry, racism, anti-women, anti-journalism, anti-climate change?",179695 +RT @aroseadam: Need bedtime reading? Our modeling paper on the effects of realistic climate change on food webs is out! https://t.co/VvaWIo…,571674 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,708517 +"Republican logic: Renewable resources are imaginary, like climate change https://t.co/orN3DfTUZ0",949891 +Financial firms lead shareholder rebellion against ExxonMobil climate change policies https://t.co/KIEfhZJ0Ou,451267 +"RT @De_Imperial: Mahlobo, 'Baba, global warming is caused by Pravin.' +Jacob, 'Iqiniso. Put that in a report.' https://t.co/0SDboKyXKd",463572 +"RT @JamilSmith: Trump’s presidency may doom the planet, and not just because he’ll have nukes. @bradplumer, on climate change. https://t.co…",527910 +"RT @1963nWaiting: Yes, the climate changed and there was a hurricane. When it subsides the climate will change again. Come on Bill, g…",446310 +"The Trump administration's solution to climate change: ban the term + +https://t.co/Me6HJDFyAU",105414 +"RT @FCM_DCausley: The @city_whitehorse is taking action on climate change #cities4climate #CANclimateaction +https://t.co/S1AslONsKH",18138 +"RT @ramonbautista: Numinipis na ang yelo sa Arctic Circle, pati si Santa nangangayayat na. Nakakatakot talaga ang global warming https://t.…",653784 +RT @JackeeHarry: Frosty The Snowman melted because President Trump refused to take the threat of climate change seriously. #FakeChristmasSo…,331838 +Securing a future for coral reefs 'requires urgent & rapid action to reduce global warming.' 'Tis the only solution …,650762 +Aka Similar to climate change Americans prefer to wait until it is too late to do anything https://t.co/1ke5ViqrEX via @bpolitics,826394 +"RT @JonTronShow: I understand skepticism but I really never understood climate change denial, to me it seems entirely plausible",164947 +"#Space #News • Trump's budget plan for NASA focuses on studying space, not climate change - Los Angeles Times https://t.co/nlyTk1otDV",871573 +RT @cskendrick: @gwfrink3 @ballerinaX And both are on the short list of Most Likely To Cease Being Countries thanks to climate change...,737732 +RT @nature_org: Step 1: Identify key landscapes that could native species amid climate change. Step 2: Protect them w/ partners:…,78892 +RT @JeperkinsJune: Where the hell is PETA? Worry about whales and global warming and bears not having ice but quiet when their muslim…,950200 +RT @foxandfriends: POLL: 29% of voters are 'extremely concerned' about climate change https://t.co/9sOCJGiyWD,484870 +Nicely said: 'Financiers are not philanthropists. But (...) allies in the fight against climate change' [in French] https://t.co/5yPUhCdEWW,382863 +"RT @MrStevenCree: Sorry. Maybe I should have been sexist, racist, xenophobic, wall building & denied climate change exists. Is that c…",155451 +RT @FinnWittrock: .@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://…,361880 +RT @CarolineLucas: Very disappointing that @theresa_may hasn't made climate change one of her top four priorities at the #G20: https://t.co…,625561 +"Devastating global warming is inevitable due to inaction of international community, says leading economist https://t.co/lWGaI7ss4i",675442 +RT @POLITICOMag: Now is the time to say it as loudly as possible: Harvey is what climate change looks like. https://t.co/MTvWJ6LRLd,113514 +"RT @aerdt: One of the world's leading experts on climate change is calling for rebellion against #Trump | By @montaukian +https://t.co/lvHZm…",19397 +Gender Action Plan aims to integrate gender into climate change policies and strategies https://t.co/vkOOUzjT5Q via @NonProfitBlogs,718093 +"RT @EllerySchneider: ME: how can I worry about a career when global warming is threatening our very existence? +DRIVE THRU: please just pull…",428411 +"RT @ConversationUK: Rising temps, extreme poverty and a refugee crisis - why Chad is the country most vulnerable to climate change…",908602 +RT @SwannyQLD: The 10 lost years on climate change policy is entirely due to climate change deniers and vested interests #auspol,595852 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",866548 +waste side taxing us throw our leaking roof breaking fedral immgrational and consitutional laws and under Obama for fake climate change,516734 +RT @GuardianUS: Day 49: Donald Trump's EPA director denied carbon dioxide causes global warming https://t.co/kbFJvfuoGV https://t.co/XcyAl4…,203690 +@D1dupre96 They probably won't bring up his past climate change predictions,457889 +Is climate change real?' @CastanetNews mixed the words up - should read 'Climate change is real.' #climatechange https://t.co/l8VIMg0UDd,42699 +You know there's something wrong.when the safety of your country doesn't matter and climate change is more importan… https://t.co/3yDRa9A3um,564817 +RT @brenbrennnn: Let's watch Planet Earth and brainstorm ways to convince our world leaders that global warming is proven science and that…,519244 +"SRSLY WHATS THE RETURN POLICY ON TRUMP? I want a refund, inmediately. I cannot with this climate change denial. Absolutely cannot.",634222 +"RT @benji_driver: Just like @TurnbullMalcolm 'fixed' his beliefs on climate change, and just tossed them out the window? Simply not g…",851947 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,925224 +"RT @WtfRenaissance: When scientists are trying to explain climate change to you, but you don't care cos you President of the United Sta…",776585 +@CivilSocietyOz US 90% population growth 10% emissions growth until now - People want action on climate change and… https://t.co/RNQqxM308C,603969 +Don't let FAKE NEWS tell you that climate change is damaging this country's future. Outrageous!,848121 +@briana_erran feel like it good for the planet to make innovative procedures to adapt to climate change but it shou… https://t.co/zl3vQrNJpr,745737 +RT @BulletinAtomic: Latest Voices of Tomorrow essay by a very young scholar: Nukes & climate change: Double whammy for Marshall Islands…,706675 +NatGeo’s climate change documentary with Leonardo DiCaprio is now on YouTube https://t.co/9F2uNfY6TB by #jokoanwar via @c0nvey,891427 +RT @Papizayyyy: The fact that Trump doesn't believe in climate change is scary asl,311901 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,190297 +RT @TLT16: That's some evil magic right there. Someone pissed off an environmentalist by denying climate change & they got mag…,782363 +How to curb climate change yourself: drive a more efficient car.. Related Articles: https://t.co/36Ia0ZJRQW,44291 +"RT @GreenPartyUS: There is overwhelming consensus that climate change is happening and that humans are contributing, @EPAScottPruitt. https…",370428 +RT @chattyexpat: The article is more about climate change than Syria. It has a great analogy comparing CO2 emissions to weight gain. https:…,899174 +RT @kenkimmell: Outraged that EPA Head Pruitt denies that CO2 causes global warming. Confirms my worst fears. https://t.co/E8s0ZLIAPV,144125 +RT @TulsiGabbard: Together we are raising our voices about what we can do to address climate change. Add your voice through Nov. 6 → https:…,422237 +"From Asia to outback Australia, farmers are on the climate change frontline - The Guardian https://t.co/opXJOeUTDk",554582 +RT @ClimateTruthNow: The myth of man-made global warming has been busted: https://t.co/j6EMk0AGmI #climate,242199 +Makes you wonder how some still question climate change... https://t.co/c7XmtheBHh,232219 +"RT @c40cities: Mayors of Paris & Washington are inspiring global leaders, committed to tackling climate change #Women4Climate…",224076 +The impact of humans and climate change can be seen in this 30-year of Earth evolution. https://t.co/hbHYkgJS2t via @TIME,945898 +Trump to reverse Obama-era order aimed at planning for climate change - The Denver Post https://t.co/INSCSgFsYZ https://t.co/WdpmUdTePS,564911 +Let's hope Obama's last days as President aren't spent trying to prove catastrophic man made global warming. https://t.co/bxoL7YI9fk,343688 +RT @Spaghetti3332: Who would you trust to solve climate change ? ��������,371908 +John Kerry says he'll continue with global warming efforts - https://t.co/CgTdcIaEEq,627574 +RT @hoplitnet: Conservative logic on climate change. https://t.co/xj7EyTwwJX,180485 +RT @JaredLeto: It’s time to change climate change. Join the #PeoplesClimate March today: https://t.co/GoejKrwmj0 #ClimateMarch,249763 +RT @ProPublica: Harvard researchers have concluded that Exxon Mobil “misled the public” about climate change. For nearly 40 years.…,651375 +RT @FactsGuide: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/g6KXAdyLHd,660951 +A 1.5℃ rise in global warming will bring climate chaos. Is the government helping? #HR Found at https://t.co/W3WYUuGz31,657758 +RT @avancenz: This recent wild weather is 'possibly' due to climate change - PM ��,237867 +"A UCLA prof recommends replacing dogs & cats w/more climate-friendly pets in name of global warming. + +https://t.co/TBI2qSeLLK via @ccdeditor",782819 +RT @guardianeco: Conservative groups shrug off link between tropical storm Harvey and climate change https://t.co/f4iQZntpT3,791928 +@chrislhayes If only there were multiple federal agencies that were researching ways to predict/slow/mitigate the effects of climate change,294609 +RT @Forbes: Billionaire Michael Bloomberg pledges $15 million to combat climate change as Trump ditches #ParisAgreement…,850390 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,396547 +No global warming books on my bookshelf! https://t.co/TT9GX2Ns2L,142830 +How climate change could make air travel even more unpleasant https://t.co/hgNy6OL7Td,250983 +"RT @AndreaGorman8: #LNP, and lackey One Nation circus, logic on climate change. The idiots... I mean adults are in charge #auspol… ",443938 +RT @NatGeoChannel: One of the easiest ways to help combat climate change in your daily life is to stop eating beef. Here's why:…,831490 +"Oil extraction policy incompatible with climate change push, MSPs told https://t.co/ddBwAAWkUt",418267 +"RT @drwaheeduddin: Chilly & cloudy April Sunday morning; outside temperature barely 60°F or 15°C in afternoon. +No global warming. CO2…",860398 +RT @RubyandDew: @USFreedomArmy @AbnInfVet the only global warming is all the B.S. From the potus hot air he's blowing out his pie hole and…,763872 +"RT @MehrTarar: Most of them have not even heard of leukemia,lymphoma, climate change,Alzheimer's, malnutrition, stunted growth: AL… ",574726 +RT @CNBC: EPA chief Scott Pruitt says carbon dioxide is not a primary contributor to global warming https://t.co/pYlXvtrIII https://t.co/ca…,142336 +"RT @ClimateRealists: MUST SEE VIDEO: Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges http…",213055 +"RT @marc_rr: Excellent (slightly provocative): +Anti-vaccers, #climate change deniers, and anti #GMO activists are all the same…",455829 +"RT @angel_gif: 2050, after vegans spent decades warning carnists about animal agriculture and climate change but they were all 'lo…",656699 +"RT @davidcicilline: How many scientists reject the idea that human activity contributes to climate change? About 1 in 17,352 #DefendScience…",171902 +RT @sabbanms: Donald Trump's most senior climate change official says humans are not primary cause of global warming https://t.co/OSgptyBN…,350128 +"@Baileytruett_yo @Tomleewalker why do people defend the leading cause of climate change, deforestation, pollution etc get over it it's meat",714025 +"@ikilledvoldy Does it really matter? With climate change initiatives being thrown out the window, they'll sink before they can secede.",17420 +@marx_knopfler Which was caused by global warming. We can expect much more and much worse.,44772 +#diet driving global warming women's shirts online shopping,643168 +RT @tomzellerjr: Shouldn't this headline include the word 'Derp'? 'EPA chief says CO2 is not a primary contributor to global warming…,704610 +RT @RichardDawkins: President Trump may destroy America but maybe we can stop him destroying the world. Sign the climate change petition ht…,820523 +"RT @Greenpeace: If we don't take action to curb climate change, storms like #Harvey will just keep on getting worse. https://t.co/jEdX3s1rWm",37607 +RT @Independent: G7 leaders blame Trump for failure to reach climate change agreement https://t.co/erTgfLdGPe https://t.co/jYt02lRr3f,680087 +"RT @Kloppholic: Imagine trying to convince yourself that global warming isn't real and instead a conspiracy. Wake up, before it's t…",509948 +RT @dailykos: This is what climate change denial looks like https://t.co/lbJ6CYiXwp,938423 +"Arctic voyage finds global warming impact on ice, animals https://t.co/HaSeCV2USJ",476346 +Trump to drop climate change from environmental reviews: https://t.co/MLDOCYTKDO via @AOL,617648 +"RT @reubenesp: After Obama, Trump may face children suing over global warming https://t.co/vFsThxKj5l #copolitics @fractivist",659939 +"RT @amconmag: If liberals could invent the perfect problem to promote their policies, it would be climate change. https://t.co/KhAxDW5z18",510346 +"Longer heat waves, heavier smog go hand in hand with climate change | Ars Technica - https://t.co/DQHhxC30TI",106516 +We might elect a president who doesn't believe in climate change :(,187412 +"The @EPA's Pruitt can disregard the role of CO2 in climate change, but choosing renewable energy can exert market pressure beyond his words.",530662 +RT @waltjesseskylar: @DrMartyFox Tell this to the millennials who dont seem bothered by this but are so focused on the climate change hoax,969059 +"In Peru, droughts give way to floods as climate change looms https://t.co/dhQkk9VZMc",233113 +RT @obamalexi: the concept of headass was created by and for the people who don't believe global warming is real https://t.co/MeAoNNdjaA,881485 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",396578 +"RT @Svenrgy: If Trump wants to create jobs, he should take climate change serious. https://t.co/5hsPm6NXFS",722776 +@ClimateReality Climate alarmists Stop dictating & start debating your claims about climate change in balanced public debates.,69263 +RT @thinkprogress: Trump EPA cuts life-saving clean cookstove program because it mentions climate change https://t.co/CrK3Il8HdM https://t.…,783056 +RT @Greenpeace: We know what global warming looks and feels like. But what does it SOUND like? https://t.co/BrSHYQPqRP https://t.co/vYVPwaW…,29053 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,45878 +EPA chief says carbon dioxide not 'primary contributor' to climate change https://t.co/Vv1RBfXirD,845042 +"RT @Reuters: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/7XPVkzSogY https://t.co/3dslS1o92V",78628 +"RT @MotherJones: The Great Barrier Reef is in peril, and climate change will destroy it https://t.co/0Ufa6zdLcr https://t.co/IaD01WCHcZ",899274 +EPA chief: Carbon dioxide not 'primary contributor' to climate change https://t.co/eTxvp3yNth,485857 +Think about this: China knows more about climate change than Drumpf... #FillTheSwamp https://t.co/37QomzpgqT,914284 +"RT @MS__6: @BBCBreaking National interest? Tories to form with an anti-gay, anti-women's rights, climate change denying party…",590949 +RT @igorvolsky: Trump's White House website has removed all mentions of the phrase 'climate change' https://t.co/H501ML98Uo,286808 +RT @EnvDefenseFund: These 3 charts show how climate change is the world’s biggest risk. https://t.co/DFBYakdVxE,449133 +RT @KellyGraay: People posting pics for Earth Day but they voted for a man who doesn't believe in global warming ��,145375 +Trump's just-named EPA chief is a climate change denier https://t.co/BOryvlXbnz,769261 +"RT @CircularEcology: Stopping global warming is only way to save Great Barrier Reef, scientists warn https://t.co/liE9lLuCFr https://t.co/0…",769524 +"RT @NCConservation: 'Clean energy not only combats climate change, it creates good-paying jobs.' + +NC's Attny General on Trump's EO aga…",968896 +"In race to curb climate change, cities outpace governments..! https://t.co/SRluNLbehh vía @Reuters",313839 +"Great paper - CC attention is usually on av. global temp, but 'climate change most often affects people with specif… https://t.co/0BLYdQnBbn",775822 +"RT @PrisonPlanet: DiCaprio. + +Hangs out with oil tycoons, flies private jet 6 times in 6 weeks. + +Lectures you about global warming. + +https:/…",293312 +@AnybodyOutThar @DonaldJTrumpJr It's climate change from global warming caused by fossil fuels. Stop spreading lies.,495182 +"RT @JaclynGlenn: So excited to have a racist misogynistic climate change denier as our next President!!! Whooo America FUCK YEAH + +kill me",896063 +"RT @UNEP: Our future crops will face threats not only from climate change, but also from the massive expansion of cities:… ",2325 +RT @TheAtlantic: Kaine presses Tillerson on whether Exxon knew about global warming in 1982 https://t.co/MZ0XXs0mL2 https://t.co/I3B2kwKrpg,795486 +RT @MichaelGerrard: Our new easier-to-use website full of materials on climate change and the law https://t.co/MneypsUczM,135329 +"@ksenapathy Yes. Evidence on pro-GMO stance. Trump's ideas on climate change, economy, & almost everything else poor. DT not proscience.",885345 +"Sebagai dampak global warming, musim hujan yang tidak beraturan lebih merugikan bagi Indonesia dibanding Negara lain.",703319 +"RT @1der_bread: Dear republicans, it was 75 degrees 5 minutes ago now it's a thunderstorm, plz tell me how global warming doesn't exist!",595781 +"RT @ClimateReality: The @Energy Dep’t doesn’t want staff to say “climate change.” You can ban words, but you can’t change reality. https://…",243128 +College's break with climate change deniers riles debate over divestment strategies https://t.co/K4BXVd3ZA6 via @HuffPostPol,589175 +I see you global warming 😏 https://t.co/w3wlDZUgWT,473007 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,145261 +"RT @Pappiness: @realDonaldTrump Yes, because the threat of climate change should be reduced to a reality show teaser.",942956 +RT @petefrt: Confirmed: NASA invented global warming by tampering raw temperature records. https://t.co/9on0KbSwnI #tcot #p2 https://t.co/6…,524966 +"Trump team memo on climate change alarms Energy Dept staff https://t.co/CLSAeA3FWi +#faithlesselectors MUST DO YOUR DUTY TO STOP FASCISM.",713766 +How can we trust global warming scientists asks David Rose https://t.co/K7w6P8yr6R @MailOnline,440834 +"@AJEnglish But the rich get richer, congratulations. You are more danger to the world than global warming",94839 +@realDonaldTrump even more so: the voice of our planet needs to be heard. Global warming and climate change are real. RESIST.,730063 +RT @nobby15: IDIOT IN ACTION - One Nation senator Malcolm Roberts asking about the connection between penises and climate change…,120270 +RT @miraschor: *This* is his idea of infrastructure & he's doing nothing to allay climate change. The man is a danger to humanity…,73612 +"This #climatechange research mission was cancelled due to #climate change +https://t.co/raDajcHDxN +#ActonClimate… https://t.co/XqWJqeAIkv",432813 +"RT @AmericanAssh0le: okay after gaining the knowledge that this exists i'm rooting for global warming. end this planet, Sun. https://t.co/5…",317254 +"@spongmai_0 da kho paky environmental use ko,, os me envirmtal engg slides katal no global warming paky raghy . ma v che yad she rata ������",149855 +Gov. Jerry Brown on the Paris climate change accord: 'Trump is AWOL but California is... https://t.co/LPheH9SY2H https://t.co/GYR3eESH06,588233 +"RT @reclaimthepower: Another reminder that #fracking and climate change go hand in hand... + +https://t.co/zqVZ8VoB4C",860852 +RT @RVAwonk: The Trump admin just removed the EPA's #ClimateChange page. Apparently they think that will make climate change dis…,762132 +"@davidgraeber I suppose, but I'm incredibly trepidatious about what Trump will do when faced with challenge. Also, climate change.",694699 +"2 hours in, climate change gone.... #Inauguration #Trump https://t.co/c0eDz3NYsz",357323 +RT @washingtonpost: This is the other way that Trump could worsen global warming https://t.co/09ocSab4B1,617071 +"So what I'm saying is, I believe that anti union folks are not racist, alt right, climate change deniers. But you should not trust them",909332 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,460019 +RT @NatureNews: Donald Trump should start his presidency by dropping his pantomime-villain act on climate change…,175290 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",845224 +RT @ClimateReality: Our oceans are also becoming more acidic due to climate change. That’s a nightmare for coral reefs https://t.co/68jVgLE…,77234 +"RT @SteveSGoddard: If everyone saw this video, global warming alarmism would disappear. Please pass it around. +@AtmosNews +https://t.co/bOr…",337929 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/u1btqtz5s5 https://t.co/COPRxAMPvh,846396 +RT @NPR: 'We believe climate change is real.' -- Shell CEO Ben van Beurden https://t.co/MAptcRkHwe,515567 +And ya all say global warming dont wxist smh https://t.co/EIqG3RyLFS,365305 +"Hopefully, no global warming alarmists got frostbite https://t.co/FGaM5Kz8Zm via @dailycaller",410068 +"#bbcbreakfast 20secs on climate change - no opinion / reaction, 40 secs + disdain on dave worm, #weakbbc",123198 +RT @UN: 12 #globalgoals are directly linked to climate change. The #ParisAgreement is crucial to achieve them.…,287376 +It actually amazes me how some Americans still don't believe in global warming wtf lol,799250 +These politicians that deny climate change are poisonous and corrupt,744900 +Just commented on @thejournal_ie: New US environment chief questions carbon link to global warming - https://t.co/9JzXeFSA40,505135 +so Trump's apparently 'open minded' towards global warming and isn't going to incriminate the Clintons. That's interesting,380314 +#global warming sex free toons sex https://t.co/YbWAO6Lksw,272452 +"RT @AfDB_Group: 1) climate change, 2) unemployment, & 3) poverty make Africans vulnerable to extremism, esp. youth in rural areas - @akin_a…",164506 +"2016's 'exceptional' weather proves that climate change is real, say scientists https://t.co/smVpfHuZPb",825234 +Trump's pick to lead the EPA is suing the EPA over climate change: https://t.co/pNFwq2KlbJ https://t.co/MJXNtAbsca,959388 +"RT @mitchellvii: Funny, the other leaders at the G7 want to talk about fictional climate change. Why? Because it's a US wealth redistribu…",502275 +RT @UN_Women: Souhad has seen how climate change disproportionately affects women in her village. Let's take action:…,663775 +RT @GT_bd1986: The beginning of the end of the religion of global warming money machine https://t.co/LRJtbQYbaf,515364 +RT @golzgoalz: When the weather is nice out but u still believe in climate change: https://t.co/ZXfI5LP0Lu,29777 +"Actually climate change has caused poverty, that has helped recruit people to terrorism. https://t.co/JizSnJCpft",857998 +RT @NRDC: More than 70 percent of Japan’s largest coral reef has died due to climate change. https://t.co/i7Av7I0zBF via @washingtonpost #C…,930993 +"system change, NOT climate change! https://t.co/dGiaF5gxLL",225367 +".@RogerGodsiff pls publicly oppose DUP views on abortion, same-sex-marriage + climate change #DUPdeal",299046 +RT @angelafritz: Here's what the AMS has to say about Rick Perry's denial that CO2 is the primary driver of climate change. @ametsoc https:…,54060 +#EarthCareAwards is for excellence in climate change mitigation and adaption. Join here https://t.co/h3duliTBZW @TheJSWGroup,153537 +Farmer suicides have disrupted India's countryside. New findings suggest climate change is playing a role… https://t.co/iFVypH1Dlp,77959 +"@realDonaldTrump climate change is real, you are not. https://t.co/tQ5mUThHMk",238755 +RT @peta2: Meat production �� is a leading cause of ☝️ climate change �� water waste �� & deforestation ���� Stop #ClimateChange: #GoVegan,913486 +RT @DrDeJarnett: It's vital that the public health community addresses climate change- via @Climate4Health's Tabola #APHA2016 https://t.co/…,14443 +RT @AltHotSprings: Even Santa is at risk of climate change... https://t.co/y5X0eG6MA8,604691 +"The, 'world problem' of global warming is that people are sold there's global warming. #RedEye",56693 +"RT @s_colenbrander: Bankers can save the world from climate change - if only to protect share prices & asset values. + +~Roger Gifford, @SEBG…",397430 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,292158 +RT @ramanmann1974: Effects of rising temperatures from climate change would likely reduce #Rice yield by 10% by 2050. https://t.co/3jAhsabb…,263045 +RT @ShenazTreasury: Trump really doesn't want to face these 21 kids on climate change - Mashable https://t.co/mu6tMvYiZX,686702 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",111969 +Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/7o4t4C89I5 via @voxdotcom,575864 +RT @thinkprogress: What happens if the EPA is stripped of its power to fight climate change? https://t.co/NLqS5AvfiF https://t.co/PkpcJ23YKL,592714 +"Malcolm Turnbull must address the health risks of climate change, for the health & well-being of all Australians https://t.co/XOUbQY2Vkp",788130 +EPA chief doubts climate change science – Sky News Australia https://t.co/vLgrY0UzJu,283215 +"RT @ShiftingClimate: If who won World Series were climate change + +'Media bias!' +'Players given grant $!' +'Fake outcome sports scandal of c…",463455 +RT @lSABABE: goodnight to everyone except to those who don't believe in climate change,84395 +Look at the climate change data on NASAs website! @realDonaldTrump 22,111750 +"RT @nytclimate: Most Americans know climate change is happening, but then things get complicated. Climate opinion maps show splits: https:/…",930512 +RT JoyfullyECO 'Creating awareness is one of the biggest parts of preventing climate change #actonclimate #gogreen… https://t.co/cjtetBB9RO',582792 +"RT @MichelleRogCook: @SocDems I am so aware of your commitment - at climate change conf in Maynooth, @CathMurphyTD was ONLY TD in attendanc…",172215 +"RT @aravosis: Evolved? So you now don't believe in climate change or marriage, and you think Trump treats women well? https://t.co/Pic1Pael…",856082 +RT @XHNews: Will Merkel and Trump clash on climate change at the upcoming G20 summit? Follow us to find out!,788739 +RT @LIONMAGANEWS: BREAKING NEWS: After Trump cancelled global warming payment US has already saved 55 million. Do like his decision?…,509947 +"RT @YEARSofLIVING: 'Isn't it frustrating, the lack of political will in America to address [climate change]?' @iansomerhalder #YEARSproject…",407486 +"RT @BeastCaucasian: @LucasFoxNews @JLuke300 Cold War? More like luke-warm war am i right, ha global warming and what not ha",93916 +Study: Earth cooler now than when Al Gore won Nobel Peace Prize for global warming work https://t.co/7Ja2xmjfe4 https://t.co/4PYtgWBq6b,49777 +"We are all blaming the greenhouse effect gasses of provoking the global warming, when actually @pitbull is the main cause of this issue",794018 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,448173 +My salty ass is writing a 750 story on climate change rn and that shit is due tomorrow,461282 +#SNOB #Rigged #HillaryHealth #Debate #DNCLeak climate change is directly related to global terrorism https://t.co/6SoXS3kdim,44346 +"#Injecting sulfur dioxide into the atmosphere to counter global warming +#Hacker #News #Headline https://t.co/061tLkZA0X?",505510 +Pakistan ratifies Paris Agreement to fight global warming https://t.co/s4P1f16qvB,782839 +RT @Independent: Here's a new side effect of global warming that makes it even more terrifying than we thought…,104045 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,568580 +"RT @nature_org: 600 Conservancy scientists work around the world to address issues like climate change, clean water & resilient cit…",758553 +RT @NBCNews: John Kerry says he'll continue with global warming efforts until the day President Obama leaves office…,53400 +@CNN Guess what..... climate change is ALWAYS happening! I'll give you one guess as to what happens to the temperature between ice ages! ��,441214 +RT @Treaty_Alliance: Great example of what we mean when we say that climate change - and the #tarsands pipelines that fuel it - threaten…,953386 +"RT @BNONews: Fiji, most at risk from rising sea level, appeals to Trump to abandon his position that climate change is a 'hoax'…",143711 +RT @SteveSGoddard: Chicago is now officially a sanctuary city for global warming refugees. https://t.co/0zk2eATq69,120075 +"RT @MartinSchulz: You can withdraw from a climate agreement but not from climate change, Mr. Trump. Reality isn't just another statesman yo…",215972 +RT @SpaceWeather101: 'Energy Department climate office bans use of phrase ‘climate change’' https://t.co/JzIbIxx7O2 via @wattsupwiththat,439116 +@sjclt3 @washingtonpost The acceleration of climate change is the troubling part. Man is the likely factor. Promises to Noah by god are shit,186431 +TV media has failed our families in not talking about #climate change--a global threat. https://t.co/v38O9l9H6U @CleanAirMoms #debates2016,593449 +We are all breathing a sigh of relief. Can he put a word in with the Big Guy re climate change or maybe the looming fascism? #PopeFrancis,607278 +RT @NYTScience: White House budget proposal on climate change: 'We’re not spending money on that anymore.' https://t.co/3apxI63Gms,582945 +China will soon trump America: The country is now the global leader in climate change reform,922510 +Al Gore may be a scam but climate change is real. https://t.co/cpt27CS1lo,767792 +RT @voxdotcom: A new book ranks the top 100 solutions to climate change. The results are surprising: https://t.co/U6Zic2udiA https://t.co/l…,795952 +@RobertKennedyJr First require Utilities to pay Solar homeowners $0.49 Kwh for Solar to stop global warming.,944860 +"If you don't believe in climate change, how sure are you? How much are you willing to risk on that belief without any caution?",444063 +@amcp BBC News crid:499b9u ... to the shadow minister for energy and climate change. British gas say they were selling electricity ...,865922 +@cpyne it's no revelation coal contributes to climate change but ur party members bring it into parliament & have a laugh. #auspol,752668 +This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/Etb4J2Ll24 …,977914 +"The US tangles with the world over climate change at G20 +https://t.co/yoApY9tJdx https://t.co/Iek0spqpwL",252208 +"RT @mattmfm: Trump doesn't believe in climate change, is taking health coverage from 24M people, and under FBI investigation, but sure, foc…",772954 +"@JuneGotDaJuice_ Jill stein Green Party she's the only one who cares about the environment, climate change and saving oil I don't believe",254837 +RT @PinkBelgium: Truth Hurts! - WATCH: Al Gore refuses to give direct answer when confronted over bogus 2006 claims on climate change https…,237616 +RT @WorldfNature: Trump's win is a deadly threat to stopping climate change. - Grist https://t.co/1t5Oza192g https://t.co/BxvfMVnrDy,371131 +RT @the_fbomb: Swedish politicians troll Trump administration while signing climate change law https://t.co/pc3QaLLZWw via @HuffPostWomen,343754 +Jack Kerwick - “Climate Change” and Fake Science https://t.co/a3QshK9Ky8 The name change from global warming to climate change is due to,449316 +RT @kamrananwar1973: Farmers know climate change bc they can see climate change. Literally. https://t.co/7ptooaBfsg,185570 +RT @floridaaquarium: How #sharks can help combat #climate change: https://t.co/8tzeJFYoKA https://t.co/k86cruhAUe,47008 +RT @nytimes: A British swimmer is enduring extreme cold waters to promote awareness of the threats of climate change https://t.co/fp00ZdAxIq,19133 +"RT @SierraRise: In 2009, the Trump family, including Donald, took out a @nytimes ad urging international action on climate change.…",375376 +RT @Jezebel: Michael Bloomberg is picking up the climate change slack & Trump is gonna be so mad https://t.co/c510q3z3oV https://t.co/uebDc…,578099 +"#worldnews: Climate talks: 'Save us' from global warming, US urged | https://t.co/siUxFtZXlQ https://t.co/67dDATewRF",763558 +"RT @michikokakutani: Harvey, the Storm Humans Helped Cause. How climate change aggravates heat waves, droughts & possibly Lyme disease. htt…",162367 +"RT @AnonyOps: Badass Badlands National Park Twitter account [@BadlandsNPS] in South Dakota goes rogue, tweets climate change info… ",690491 +"RT @DavidCornDC: Hey Florida, nice little Everglades you've got there. Thanks for voting for a climate change denier. See you in hurricane…",698617 +"RT @electricsheeple: When someone asks me to say the prayer, I just explain climate change in a steady, monotone voice like I memorized it…",620254 +"Retweeted CECHR (@CECHR_UoD): + +Morocco plants millions of trees along roads to fight climate change... https://t.co/CmEwgIBkBO",217118 +RT @JamilSmith: Trump isn't just 'destroying Obama's legacy' on climate change. He's doing the opposite of what most Americans want. https:…,232363 +A third of the world now faces deadly heatwaves as result of climate change https://t.co/fDpj3R4mna #Environment,816170 +"Over 31,000 scientists now recognize that there is no convincing scientific evidence of man-made global warming. #climate",449825 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,672636 +RT @NotJoshEarnest: POTUS condemns the heinous attack in Istanbul. It's a stark reminder that we can't take climate change lightly.,179091 +"�� Memo to the Resistance 'We will Fight? Rampant inequality Costly healthcare Unjust immigration policies +Accelerating climate change + -",231038 +More fiddled global warming data: US has actually been cooling since the Thirties https://t.co/GhvCHV3BQH #tcot #teaparty #pjnet #nra #p2,291804 +".@Reuters Trump doesn't believe in global warming, CHINA is even telling him he's wrong",710495 +RT @nowthisnews: The head of the EPA doesn't think CO2 is the main cause of climate change https://t.co/TllH9Z2j01,553086 +"RT @RealMuckmaker: Badlands National Park goes rogue on Twitter, defies Donald Trump on DAPL and climate change https://t.co/80xLuyIZmx via…",323962 +#realDonaldTrump tornados. Tons of tornados. But no climate change or problems. #loser. #climatechange,581600 +"RT @edutopia: MT @NEAToday: 5 ways to teach about climate change in your classroom: +https://t.co/WGxb04TK0q. #earthscience https://t.co/bqC…",704427 +RT @AP_Politics: Energy Department rejects Trump's request for names of climate change staffers: https://t.co/kdFzOW5n3j https://t.co/FbsPW…,438734 +Wisconsin’s Department of Natural Resources site no longer says humans cause climate change https://t.co/wWoSob8j3o via @Verge,209379 +“Do you believe?” is the wrong question to ask public officials about climate change https://t.co/u3X6O106TL,415615 +The 'debate' Rick Perry wants to hold on human-caused global warming is total BS https://t.co/pOTxCMAjEA,284806 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,310499 +"RT @thefoodrush: Ever heard of a climate change farm? Well now you have :) +https://t.co/PN8knCIeyw #climatechange #farming @OtterFarmUK @…",346116 +RT @barbarakorycki: ok moving past your bigoted social views.... how can you vote for someone who doesn't believe in climate change,771257 +"I love my dad, but trying to explain basic science concepts to him makes me see why some people don't believe in climate change",129670 +RT @CatherineForNV: I believe in science. I believe in climate change. Let's protect our precious resources including the air we breathe &…,532461 +RT @GillJeffery13: Lets look after our country for the future generations by taking climate change seriously #IAgreeWithTim #itvdebate,847765 +"RT @blowryontv: So @BillNye closed re: climate change with @Lawrence by saying, 'May the facts be with you.' As if he wasn't already in ner…",541807 +"RT @LeoDiCaprio: Want to stop climate change, @UWM? See #BeforeTheFlood at your University #BeforeYouVote. +https://t.co/ubMubJMbkv",151102 +Tornado swarms are on the rise — but don't blame climate change https://t.co/dRUsZWaW4r https://t.co/hWkBZEznCf,301061 +RT @johnupton: The White House is 'actively hostile to what local governments are trying to do” to adapt to global warming.…,920481 +"In the U.S., trees are on the move because of climate change - Mashable https://t.co/pKpOBdNk6S",223008 +climate change editor vice news: This position is the chief creative voice for our climate coverage… https://t.co/70omd8WnPQ #ClimateChange,804457 +@hannahwitton global warming messing with weather patterns,577544 +RT @stevebeasant: We must fight against climate change deniers like Trump and climate change ignorers like the Tories https://t.co/laQZgLEh…,724299 +RT @TomiLahren: Liberals DEMAND President Trump accept the climate change apocalypse is science. Ok. According to science we have 2 biologi…,615253 +See climate change is is the no1 danger in the world. https://t.co/LAY0pxFKyI,414925 +"RT @MikeBloomberg: Amid shifting political winds, cities are stepping up and making bold moves to fight climate change. https://t.co/StdNQp…",905949 +Study: Stopping global warming only way to save coral reefs https://t.co/TEITKtyWay,633508 +RT @CatchaRUSSpy: Also who needs ice breakers when you have global warming. https://t.co/GmrHDy4mLQ,270235 +It blows my mind that some people truly believe that climate change isn't real,560973 +"yeah fuck the wage gap, police brutality, gun violence, global warming, presidential scandals, etc, let's focus on… https://t.co/2TEbv7gHCP",337725 +Join LeoDiCaprio as he searches for answers on the issue of climate change. #BeforeTheFlood starts now! https://t.co/F9qQbLKpAa,307063 +"#PostCab Radebe now on climate change - he says it can be felt through inconsistent rainfall, drought & excessive heat & flash flooding.",248899 +RT @RachCrane: 97% of climate researchers say global warming is result of human activity. Climate change denialist Scott Pruitt named head…,693471 +RT @AnjaKolibri: Not enough to avoid extreme #climate change!!! Only 3 EU countries pursuing policies in line with Paris agreement: https:/…,32083 +Two billion people may become refugees from climate change by the end of the century https://t.co/1pOwv54AOs,581827 +It doesn't matter if Donald Trump still believes climate change is a hoax https://t.co/BNccabWrJz #Tech #Technology https://t.co/xE7AA7nW1q,447640 +RT @Salon: The Weather Channel debunks Breitbart’s bogus claim that global warming isn’t real https://t.co/wOBz3jCBQn,862171 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",263238 +"RT @techmemsye1: People often ask for clear signs that global warming — sorry, sorry ... https://t.co/Nj0yg6RT6B https://t.co/rQWZ0d28Bd",177423 +"there's this thing called climate change, my friend. not entirely surprised you don't know about it though consider… https://t.co/7Yr7KkUbMs",556777 +Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/sDUbCVxbNL https://t.co/zMDwFMVdFa,814230 +"RT @RepStevenSmith: If you take $65,000,000 from countries that produce nothing but crude oil, you're not the 'climate change' candidat…",34166 +"@GuardianSustBiz @realDonaldTrump Jesus said, climate change would happen at His return to earth to save the Jews & the Nation of Israel",355856 +"RT @Zamiiiz: 'pft, climate change isn't real though, trump said so. fuck science' +#climatechange https://t.co/ciaa8FpYxn",961882 +"RT @eazyonme: @Toxic_Fem If I ever made a Paul Joseph Watson video, I'd proly focus on his depression and climate change stances.…",762704 +"CEOs donate to Repubs who reject climate change, somehow shocked, shocked when same party rejects climate change --> +https://t.co/ZCYMYWwAcK",602494 +How climate change helped Lyme disease invade America https://t.co/9fMLaNnTIV,34702 +"I will always stan Ben & Jerry's smh they got a whole section on their website talkin about race, lgbtq issues, climate change, n more",715552 +@SteveSGoddard agree. After a foot of hail last week here in Tennessee climate change hit again last night https://t.co/DP3vvC9lfF,355679 +"Budget calls cuts from State, USAID +Proposal would scrap climate change fund, refugee assistance https://t.co/iKQGBjsohL @NafeesaSyeed",854686 +"My grandson n I have a global warming bet that, even tho it'll be 70+ all next week, we'll still have one more freezing spell by mid April.",171389 +RT @RobGMacfarlane: For 'climate change' read 'intense weather events': on the Trump administration's insidious re-namings.…,820375 +"RT @SenSanders: LIVE NOW: Join me and @joshfoxfilm for a conversation on climate change, fracking and transforming our energy system +https:…",752605 +"RT @MissEllieMae: Exxon discovered climate change in 1981, covered it up, spent $30m+ on climate denial, then factored climate change… ",923279 +RT @RichardDawkins: It’s one thing to be a denier. But an Orwellian ban on the very WORDS “climate change” in official communications? http…,150302 +RT @GreenPartyUS: There is only one Presidential ticket taking the biggest threat to our planet - ðŸŒ climate change ðŸŒ - seriously:…,444048 +RT @JacobWhitesides: I think that's global warming not christmas https://t.co/VVAzjVXH6w,772347 +RT @LizHadly: Cities are on the front-line of climate change. They must adapt or die | World Economic Forum https://t.co/9o4X1Rc5Fo,707363 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/Sl95BTD4Km,43036 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,31741 +Ecological networks are more sensitive to plant than to animal extinction under climate change,902354 +@iansomerhalder The land unfortunately is rebelling all the exploitation for oil global warming we should all do something thanks,732442 +"Where climate change is threatening the health of Americans +https://t.co/ZozOFxNaLI",691266 +If global warming is real why is it only 3 the grease sell see us outside❓❓❓❓❓ checkmate libreals,115042 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,522188 +RT @PopSci: How we know that climate change is happening—and that humans are causing it https://t.co/D8Tn3W1aG5 https://t.co/n5vmLFDpqu,815935 +@rd7612 climate change is real. Unemployment is not 36%. All regs are not bad.,621337 +"https://t.co/3VYW0sVhrL scrubs climate change, LGBTQ and more from official site moments after Trump took office. https://t.co/Ar2qKY7kuf",933944 +RT @Bruceneeds2know: The Abbott/Turnbull Govt's failure to deal with clean energy and climate change will have real practical consequenc…,545889 +"RT @joshjmac: Pope Francis gives @realDonaldTrump a copy of Laudato Si', his encyclical on the environment and climate change",639168 +RT @MRFCJ: On Human Rights Day listen to why climate change is a threat to human rights. #Standup4HumanRights https://t.co/6Uj0Cgoh5g via @…,655821 +Donald Trump signed an executive order aimed at undoing climate change regulations introduced by Barack Obama.... https://t.co/v8Q7bLHlGX,217577 +RT @AnthonyByrt: Former leader of Greens charged for protesting against oil exploration when NZ about to be barrelled by climate change eve…,988338 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,310934 +RT @mikefarb1: Seas are rising due to climate change and the fisherman still deny it. Was Trump a Fisherman.? https://t.co/9FHFWN2VB4,384173 +RT @ApafarkasAgmand: Anthropogenic global warming has just reached the Saudi desert ... ;-) https://t.co/Js0MlVRYTg,850427 +Climate change: Fresh doubt over global warming 'pause' https://t.co/4rCwNE7gsK,614699 +"RT @nia4_trump: Aww how cute look future DREAMers, MS-13 kids from El Salvador. Poor kids, probably just victims of climate change.…",146362 +Health threats from climate change can be better managed with early warning & vulnerability mapping… https://t.co/eZfMto5VAJ,58112 +RT @adamnagourney: “I don’t think we’re going to have to put on hair shirt & eat bean sprouts.' Who said this on climate change? Yes. htt…,466658 +RT @DeSmogUK: Sanders rips Pruitt over climate change comments | @thehill https://t.co/KVSutWNsvm,798525 +RT @JulianBurnside: Try to watch Before The Flood on YouTube. Leonardo Di Caprio shows why we have to take climate change seriously: right…,569963 +Does Perry know what the DoE does? He also doesn't believe in climate change.... https://t.co/HtzhgfG2QS,434900 +"#IWantAmerica to focus on reducing income inequality, combating climate change and to invest in a green economy infrastructure revolution",51794 +RT @riotwomennn: AG Schneiderman: Trump's Tillerson used name “Wayne Tracker” to conceal ExxonMobil emails regarding climate change https…,373733 +RT @Wokieleaksalt: This is being completely misinterpreted. They were pointing out *other peoples'* climate change conspiracy theorie…,78426 +Gore warns of climate change risks at Atlanta conference - The Gazette: Eastern Iowa… https://t.co/DX1f3eXRvv,591624 +"@therealtrizzo 1 generation has plundered social security, created insurmountable debt and denied climate change...it's not the millennials",376278 +"RT @ChaseCarbon: foxnews: 'Merkel urges EU to control their own destiny, after Trump visit, climate change decision' https://t.co/jmAm93t5ou",881145 +RT @HuffPostPol: Tillerson used email alias at Exxon to talk climate change https://t.co/mWLPjX8dH6 https://t.co/whvDp1oHN6,423932 +"RT @PriceOnIt: “I’m looking for a solution to climate change. It needs to be big, and it needs to be now' -- @NikkiReed_I_Am… ",154517 +RT @CarbonBrief: 196 countries to Trump: UN must tackle climate change | @KarlMathiesen @ClimateHome https://t.co/WJnW28bIf6 #COP22 https:/…,809256 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,592760 +RT @MikeBloomberg: We can stop climate change by empowering citizens and cities to take action today—Climate of Hope shows how. https://t.c…,326267 +"RT @TheRichWilkins: 24. @BarackObama got deals done to normalize relations w/Cuba, a bi-lateral deal with China on climate change, the Pari…",557614 +The unsung hero in tackling climate change: girls' education https://t.co/hZt4QdRlRx #membernews from @Camfed https://t.co/v1lYK0Qfxq,657699 +RT @spincities: Spin is proud to stand with others fighting climate change & proud to help cities replace cars with bikes.…,792471 +"RT @CBCPEI: 'The sea is going to win': P.E.I. must prepare for climate change, says expert https://t.co/E13FpdgMBx #pei https://t.co/N8DDMy…",687325 +RT @RealKidPoker: To any/all millennials who care about climate change but didn't vote cause 'they both suck' I hope you understand what yo…,184414 +RT @WorldfNature: Growth vs the environment ... climate change a challenge for China's authoritarian system - South China Morning Pos…,160393 +RT @ImwiththeBern: #NO BlackSnake -- Simple ways to fight for climate change mitigation https://t.co/F8YTcT2IEI,846792 +@lucas_gus_ was playing Christmas music at 12:01 AM. Well jokes on you Lucas it's 73 out rn and global warming is coming before Christmas,615738 +RT @LindaPankewicz: @Reuters Scott Pruitt is an idiot when it comes to human caused global warming But then he want's to be. It's all abo…,988164 +RT @thehill: EPA shuts down program helping states adjust to climate change https://t.co/sVFWhW69mV https://t.co/ctOa9T3gui,487047 +@ChristiChat It's 20 global warming degrees right now! 😬,469101 +#ElectionNight #Florida can't afford 2vote 4 a man w/ such hate for its population & rabid denial of climate change https://t.co/9XuFi3Zis7,804088 +"RT @MarkDiStef: Yes really, Australia’s senate set aside one hour to debate “the disputed theory of global warming' https://t.co/71ryMJkDbX",981726 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/JchYL2Jyfy https://t.co/SUsiLOmFDV,661325 +"RT @stubutchart: One author of our paper received an emailed death threat from a climate change denier, can you believe it? https://t.co/ZH…",395935 +Western politicians have not and will not make any genuine effort to prevent climate change - nor will the majority of ordinary people.,404054 +"@busybuk Merkel maintains growth through financial crisis, jobs, huge real wage increases. Also fights climate change. = Doomed?",336290 +RT @TreeHugger: Children win right to sue US government on climate change inaction https://t.co/ov6p4rMw7r https://t.co/GmSRBSqYlC,458596 +RT @hhill3060: I can't believe I'll be living in a country where our president and vp don't believe in climate change but do believe in con…,721106 +RT @tveitdal: Exxon shareholders back 'historic' vote on climate requiring the company to assess the risks from climate change.…,837210 +"RT @StratgcSustCons: 24hrs of climate change warnings from @guardian - get the messages out there to push for real, long term action… ",370613 +RT @thehill: California governor named special advisor to UN climate change conference https://t.co/MnjjszmOfv https://t.co/0YKYrrQ0pG,123115 +RT @ScienceNews: CO₂ released from warming soils could make climate change even worse than thought. https://t.co/47ZqWnWlWa,306643 +RT @indcatholicnews: Holy See calls for 'intergenerational solidarity' to deal with climate change https://t.co/4GGaWQiNrG,666144 +"RT @politico: Energy Department climate office bans use of phrases: +- 'climate change' +- 'emissions reduction' +- 'Paris Agreement…",108718 +If you really care about preventing climate change you've gotta reduce your meat and dairy consumption first and foremost init,319332 +A remarkable man and his work on climate change is so impressive more people need to see it... https://t.co/JtpuX9QYFv,579193 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,358166 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,141738 +"RT @NPR: Trump plans to cancel billions in payments to UN climate change programs & use money to fix America's water, environmental infrast…",260609 +"RT @immigrationcom: The idiots who rule us denying climate change || + House Contempt of Science Committee gets rolled https://t.co/vrVXLP83…",581967 +Weather Channel destroys Breitbart over BS climate change story ➡️ @c_m_dangelo https://t.co/lnop5R69A6 via @HuffPostScience,132595 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,488092 +RT @jryancollins: A climate change stress test of the financial system https://t.co/y7J0MHYd1i,392202 +RT @qz: A scientist explains the very real struggle of talking to climate change deniers https://t.co/unhACDmRAe,315476 +"@BethBehrs That smile could make global warming find a cure for itself, saving all of mankind because you are just… https://t.co/nU6hVP9OYX",205530 +RT @climatehawk1: Here's how long we've known about #climate change https://t.co/c0RmkYokAV via @khayhoe @EcoWatch #ActOnClimate…,659291 +"Suddenly, global warming sounds like an inviting prospect. https://t.co/8mm8pCFDOB",436218 +"RT @heavymetalkop: I'm all for fight against climate change.And this is in no way a rant against trees. But in my opinion, planting tr…",90685 +"RT @GCSCS_RuG: Leonardo DiCaprio reveals the complexity of climate change, and emerging resource conflicts. Watch it, seriously: https://t.…",142415 +"RT @MarkHBurton: Good so far as it goes but despite 4 mentions of ecol. challenges, 3 of climate change, nothing on #Limits2Growth (1 +https…",24934 +RT @audubonsociety: Audubon volunteers are counting bluebirds and nuthatches to better understand climate change.…,409382 +Al Gore: #climate change threat leaves 'no time to despair' over Trump victory https://t.co/0cmJLqrZgi via @guardian,920431 +RT @WGNOtv: What vanishing bees tell us about climate change https://t.co/IpKwxgNrGk https://t.co/iu1jfIeaNr,796763 +RT @LadyWhiteWalker: The real motivation behind climate change deniers https://t.co/x0g1R3hP6V,845251 +"This is why Trump won't be the president who failed to stop climate change, just the one who made the collapse ugli… https://t.co/12qeuauk21",388243 +"RT @AmyMek: Russia today, tomorrow it can be fake news, next up global warming...This is getting really old! YOU LOST! GROW UP! 😂 #Sessions",604797 +@bbcquestiontime @CarolineLucas Also supports Abortion as it's good for fighting climate change . Less people = less waste.,152641 +RT @DrMaryanQasim: Yes @SagalBihi climate change will cause even more extreme weather. We need to come up with long term solution for…,248936 +"RT @GlblCtzn: Trump's EPA deleted climate change data, so the city of Chicago reposted all of it. https://t.co/0C80q9aqDl https://t.co/VWBx…",938144 +RT @nytimes: California is holding itself out as a model to other states — and to nations — on how to fight climate change https://t.co/9a9…,424611 +RT @akari_anschluss: You know what's the best thing about global warming? Sundresses https://t.co/wFEQ3cgjc6,329124 +"RT @Thomas1774Paine: Anti-Trump actor fights global warming, but won’t give up 14 homes and private jet https://t.co/g5MzLpH2g5",665784 +Is climate change real? Let's hope not... https://t.co/4xRWFPgj8k,640825 +"@kilovh We are an organization trying to combat climate change. +https://t.co/RA0LgtbpfL https://t.co/TL1asq4LJV",163428 +RT @IFLScience: Atmosphere scientist slams climate change deniers in brilliant viral post https://t.co/IcIM4vMPtp https://t.co/Is10X01C1j,556966 +"On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/Nk4AtAv7ha",462236 +RT @van_camping: Now there is LITERALLY no hope for making an advance on climate change and the environment so enjoy moving to Mars in 50 y…,940585 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",836959 +"RT @BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is at stake. https://t.c…",203375 +RT @girlhoodposts: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus … http…,254557 +"RT @MalinMobjork: Listen to @dansmith2020, @JohanSchaar and myself explaining why climate change matters for peace and security. https://t.…",980954 +Bloomberg urges world leaders not to follow Trump's lead on climate change #BellevueGazette #LatestNews https://t.co/BboPdC1Vea,24797 +"RT @LimesOfIndia: ISIS decides to go green to counter global warming, says will only kill people by knife and won't use bombs, grenad… ",281199 +Smart cities will be centers of excellence for sustainability and climate change achievements https://t.co/IGBPN1s6KW via @FSEP78,574766 +This coming from the guy who thinks climate change is a hoax invented by the Chinese. https://t.co/BQ4EtuBXNk,887404 +😅😆 DOE won't provide names of climate change staffers to #TRUMP https://t.co/juZcJAalAo,291525 +"RT @AstroKatie: In case you were wondering: no, 4 years of US-led inaction on climate change will not go well for the planet. Now is when i…",649648 +Rahm Emanuel revives deleted EPA climate change webpage https://t.co/mKsWOLvFEG https://t.co/5yZP9woio4,753473 +The yall president don't believe in global warming and he still hasn't done shit but cause havoc since he's been in… https://t.co/N82AgWnEAR,305074 +Insurers count cost of Harvey and growing risk from climate change https://t.co/rMrLJmZfqI,328063 +"RT @manofmanychins: @80smetalplayer @TrustyGordon Yep, and using 'the fight against climate change' to redistribute western wealth to the n…",567452 +RT @GoddessEm_: so y'all ready to admit global warming is an issue? winter really lasted like a week,195871 +"RT @Total_CardsMove: 'It's so warm outside because of climate change.' + +HA don't be naive. We all know it's because the Cubs are in the WS…",540520 +"RT @UN_PGA: It's official: #ParisAgreement on climate change enters into force 4 Nov. 10 countries + European Union join, see:…",875626 +RT @TPM: Democratic state attorneys general warn Trump faces litigation if he scraps climate change plan…,672918 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,17142 +"RT @sadposting: If global warming isn't real then explain why Club Penguin is being shut down + +Checkmate",644643 +RT @JinkxMonsoon: 1.) climate change is real. 2.) trans people are people (who deserve the same rights as anyone else.) - 3.) the world is…,558196 +Tell the people in london to calm down..climate change is a bigger threat.. nothing more to see here,718420 +How to immunise yourself against fake news on #climate change: International Business Times https://t.co/QS3FTP0IS6 #environment,941514 +This week's New Scientist focuses on climate change and being on the brink of change. Read more on: https://t.co/vYPiVPi1aa,142228 +RT @EcoInternet3: City initiatives are key in #climate change battle: Financial Times https://t.co/rxJ5WT64rS #environment More: https://t.…,114046 +"@CassandraRules That is funny, unicorn promoting climate change.",201727 +Some good guidance from @AGU_Eos on talking about climate change https://t.co/BwJSQfAIP0 #scicomm,432369 +"RT @MRodOfficial: I'm so tired of the climate change argument, in the end it doesn't hurt anyone to thrive for a cleaner environment, it's…",387738 +"RT @ahlahni: person: 'omg the great barrier reef & bees tho! climate change needs to be stopped!' + +same person: *still eats meat* https://t…",199691 +RT @RVAwonk: This is one of many reports documenting how climate change is creating the conditions for terrorism to thrive.…,180304 +"RT @librarian_nkem: For Africa to survive the impending drought occasioned by rise in population & global warming, we must learn to conserv…",673181 +@JohnFromCranber @ByronYork @MZHemingway @FDRLST Trump has secret island where he is making climate change accelerator!,146042 +"@Restoration 2/2 I hope you'll consider buying a copy. Two chapters explore climate change science objectively, you may like it! Best, Matt",558321 +RT @Slate: Bret Stephens’ first New York Times column is classic climate change denialism: https://t.co/u6rX7WcoBp https://t.co/4VyfISJd9m,486158 +#RRN https://t.co/Vy7M0kDUHd /u/AFineDayForScience describes a great way to change the rhetoric in America regarding climate change denial…,656852 +"@ryan_kantor @QuackingTiger Pft. I'll admit climate change is real before I believe this garbage! Am I right, guys?",746973 +"On climate change, Scott Pruitt causes an uproar — and contradicts the EPA’s own website USELESS ! https://t.co/bxFup0qkqf",443873 +@gtiso Perhaps it is intended to represent what all of Wellington will look like soon given her Party's attitude to climate change.,946854 +Al Franken shutting down Rick Perry over climate change is everything & more. https://t.co/kRQ6VcwTCD,206666 +"Animals I eat that i hate so im cool with eating them: +Cows (bad for ozone layer, global warming, desertification) +Pigs (invasive species)",329798 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,494754 +RT @scifri: Subjects were inoculated against anti-climate change rhetoric if they were warned that the information could be politically mot…,964787 +ã€ShanghaiDaily】 UN warns of global warming tragedy https://t.co/ObRP6qh3eq,992585 +70's in November? I officially believe in global warming,626550 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,338140 +"RT @FoEScot: New poll -> More Scots want stronger action to tackle climate change https://t.co/iMaegp651r + +Now's your chance: https://t.co/…",86710 +"RT @NatGeo: Forest loss not only harms wildlife, it’s 'one of the biggest contributors to climate change.' https://t.co/bLTRy45F33",880166 +Exercises to contain climate change will become futile. https://t.co/1GB0qZMvzD,461185 +"No, climate change is NOT a ‘natural cycle.’ +10 ways we can tell humans are affecting it: https://t.co/VXlRfpyi7u",840127 +"RT @JonRiley7: Not only is Trump not fighting climate change, he's banning agencies from even preparing for climate disasters. ��…",909823 +RT @evelyman: The kids suing the government over climate change are our best hope now: https://t.co/JnHNbZAscF via @slate,347835 +RT @maura_healey: We are prepared to act on Trump EPA on climate change. We will fight any efforts to undo or repeal needed regulation. #AG…,41851 +Environment drives genetics in 'Evolution Canyon'; discovery sheds light on climate change https://t.co/aVMOFoDwy4… [1/2],429019 +RT @josefgoldilock: PSA: Our president has ordered the EPA to delete their climate change page. The President is ordering facts to be delet…,822696 +rl feels like global warming llz,398282 +"@TexCIS Well see, proof positive of - global warming...err...climate change...err...global climate disruption. ;) Stay safe and warm.",939362 +RT @orlandosentinel: Tillerson in focus as Exxon climate change investigation intensifies https://t.co/VvmzwuqLqt https://t.co/Vlepns9dPb,44160 +RT @NatGeoChannel: One of the easiest ways to help combat climate change in your daily life is to stop eating beef. Here's why:…,193712 +RT @Greenpeace: You're never too young to change the world. This 9-year-old is suing her government for inaction on climate change…,628281 +The new Captain Planet? Bill Gates starts $1B fund on climate change https://t.co/KbPk0qRcxJ via @usatoday,489292 +The conversations we’re having about climate change are more important than ever. https://t.co/MLbMRtApuo #ClimateChange,616565 +RT @latimes: Kerry tells climate conference that the U.S. will fight global warming — with Trump or without…,347410 +@ScottWalker Polluting that air again ... still denying climate change ?? https://t.co/N4kgvq4aUJ,17963 +RT @mariannethieme: BanKiMoon:'massive waves of migration will come if we dont tackle climate change asap. We have no right to gamble with…,76228 +Harry is introducing someone to the dangers of global warming every single day,601837 +"climate change... what climate change. smh Colombia: 193 dead after rivers overflow, toppling homes - ABC News https://t.co/XLcnZsqnbp",569634 +RT @Masao_Sakuraba: 'What a powerful theory ... climate change can be averted by just increasing your taxes.' https://t.co/V2j9UIeT1n,57381 +RT @dmedialab: Scale and urgency of climate change must be better communicated - Lor... https://t.co/mRauyGIlnX via @risj_oxford https://t.…,120440 +RT @climatehawk1: Extreme weather flooding U.S. Midwest looks a lot like #climate change | @InsideClimate https://t.co/hm1FxpsCBd…,34596 +"British kids ‘most afraid of Trump and climate change’, GMB hears https://t.co/DJiXv86UFi ^MetroUK https://t.co/iC5UKeh0Sb",28256 +"Check out the new documentary at @NatGeo's youtube channel: Before the Flood. On climate change, with @LeoDiCaprio https://t.co/2SailYFiy4",499154 +"France, U.N. tell Trump action on climate change unstoppable https://t.co/D6Kwp6IZaC",352917 +RT @RVAwonk: Trump's inaction on climate change will worsen VAW. And the global gag rule will prevent victims from getting help. https://t.…,642374 +RT @NatGeo: We are really only beginning to understand many of the potential disease implications from climate change https://t.co/VOiRduE3…,597069 +"RT @maggieNYT: 'I think there is some connectivity' between humans and climate change, Trump says.",830957 +THE HILL: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report … https://t.co/9ZgBJGlhks,317312 +RT @nzherald: US government bans use of term 'climate change' https://t.co/vn47N9T1jP,827075 +RT @Wil_Anderson: And I am guessing Gen Y are done with your 'racism' 'homophobia' 'climate change denial' and 'owning a home' https://t.co…,588394 +RT @sierraclub: Trump denies climate change. @HillaryClinton has a serious plan to fight it. RT if you're a #ClimateVoter! https://t.co/Bid…,706639 +3 signs that the world is already fighting back against climate change https://t.co/11NchSs4Wv via @wef,182537 +"So here's my advice to Dems: climate change goes to the bottom of the agenda, or at the very least is done in consultation w/others. 13/",16854 +"RT @stubutchart: Most ecological processes in terrestrial, freshwater & marine ecosystems now show responses to climate change…",443398 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,434602 +Trump transition team seeks DOE climate change advocates’ names https://t.co/Mjk90tfhnY,554528 +RT @relientkenny: 'your husband is killing us all because he thinks climate change is fake news' https://t.co/iTlWQ9uCA3,30214 +"RT @mahootna2: Libs lie. They lied about the wind, about coal, the NBN, Medicare, TAFE, climate change, Centrelink, the carbon price and mo…",171137 +"RT @PrisonPlanet: Leo: Hangs out with oil billionaires, flies private dozens of times a year. + +Lectures Trump about 'climate change'. + +http…",875060 +RT @CNTraveler: 11 places you need to visit before they are lost to climate change https://t.co/TJ0L0LiOLH https://t.co/tJGtF2JYSW,961114 +"RT @CraigRozniecki: 'EPA head Scott Pruitt says carbon dioxide is not 'primary contributor' to global warming' + +Ruling: False +https://t.co/…",246680 +"RT @ossoff: If we walk away from our #ParisAgreement commitments to reduce carbon emissions & help fight climate change, histor…",244205 +RT @DrJamesMercer: We are the 1st generation to feel the impact of climate change and the last generation that can do something about it. #…,552594 +"RT @GPN14: #EPA #Poll +Do you think that carbon dioxide is a significant contributor to global warming (if there is global warming)?",726305 +"If climate change really is a conspiracy created by 'the Chinese,' China just fucked up Houston and we've got a war on our hands.",354750 +Change climate change - Sign the Petition! https://t.co/WwvL2YVg9e via @Change,71830 +RT @_courtneigh_: If 60 degrees in the middle of winter in Louisville isn't enough to make people accept global warming as a real issue idk…,345645 +Kayleigh. You support and defend a man who thinks climate change is a hoax created by China. This is hypocrisy at i… https://t.co/3sdJPtaSlD,212044 +"RT @UN: Addressing climate change is up to all of us. +On #SustainableSunday & everyday be part of the solution:…",200267 +NRE 199 class working on posters for group projects on various climate change topics. https://t.co/yUMKaQ1Ol9,942846 +China drills Tibet glaciers for climate change study https://t.co/dv6qz2iHPq via @Orange News9 : Latest News,174493 +Google:A new wave of state bills could allow public schools to teach lies about climate change - VICE News https://t.co/lUlaBanpLI,333002 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,146187 +Tillerson led Exxon’s shift on climate change; some say ‘it was all PR’ https://t.co/M9cpMdtzkX,793908 +"RT @cathmckenna: Can't figure out if most #CPCLdr candidates don't believe in climate change or think if we do nothing, it will magically g…",496143 +"RT @NickKristof: My column & video look at a crisis linked to climate change: As Trump Denies Climate Change, These Kids Die of It.… ",966647 +"Tackling climate change will boost economic growth, OECD says https://t.co/p0sIYbiuyX",323 +"RT @meljomur: While Theresa May is selling more weapons to the Saudis, here's our FM dealing w/climate change. https://t.co/ahO9SUuzUp",803875 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",402047 +Mr. Ridley's scientific contributions (including being a climate change skeptic) have been questioned by many scien… https://t.co/kCBttMnJtR,534219 +"RT @BillNye: 'They' don't want you to be concerned about climate change, but @djkhaled & I want you to be. Major ��/ Major �� https://t.co/gK…",703000 +"Mike Pompeo, Trump's CIA pick, evades questions about climate change and global instability https://t.co/TPzl33TqrV https://t.co/BHYxZFpNBs",671584 +"RT @SolarScotland: Scientists issue ‘apocalyptic’ warning about climate change + +https://t.co/5c5pzM1bSx +#climatechange #renewableenergy htt…",559320 +"National Geographic asked photographers to show the impact of climate change, here’s what they shot https://t.co/CAue5T1L6W",188050 +RT @FeelTheBern11: RT SenSanders: President Trump: Stop acting like climate change is a hoax and taking our country back decades by gutting…,887516 +"RT @kelkulus: Irony: Florida, a state in danger of being washed away due to rising sea levels, just elected a guy who denies climate change…",645866 +RT @Slate: China very kindly explains to Trump that it didn’t invent climate change as a hoax: https://t.co/wqQuPCgbeH https://t.co/2bFJ4wL…,466328 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,415728 +".@TAudubon next up: Westway oil terminal, climate change, 2017 priorities, creek restoration, listing endangered species",503003 +Palm oil kills thousands of animals & is disastrous for climate change.I hope the outraged #vegans & #veges are as… https://t.co/J6DKlUqWJC,298164 +"RT @adamkokesh: It's June. It's Arizona. It's hot. It's not proof of global warming! (When you push stupid crap like that, it shows how wea…",633000 +"RT @heyjudeinbris: scaring Aussies half to death about terrorism while ignoring climate change, the biggest threat to everyone on earth +#Au…",512067 +RT @vicenews: Bill Gates and other billionaires are launching a climate change fund because Earth needs an 'energy miracle'…,235641 +Scott Pruit is a coward who would rather hide behind the forged 'uncertainty' of climate change than tackle it head on,343381 +"RT @BillMoyersHQ: Al Franken might be the best tool Ds have to fight climate change deniers in DC these days, writes Joe Romm https://t.co/…",733240 +RT @openculture: California will bypass Trump & work directly w/ other nations on climate change. https://t.co/2ddgR5JCGI #jerrybrownismypr…,136832 +@ficci_india @moefcc Mr Ranjan speech has given an envision assurance for us that India will contribute well on climate change,389026 +@d2ton what was global warming years ago? A conspiracy. What is it now? Real life.,852347 +"@NASA not to be dense (pardon the pun), is this something new, and if so, is it related to climate change?",25002 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",294027 +Spicer dodges question on whether Trump still believes climate change is a hoax https://t.co/YuRjertjyl,648266 +Makes a free movie to raise awareness about climate change https://t.co/yv8GQi36UK #9GAG,810469 +"RT @JonathanFPRose: Those who deny climate change also deny us the benefit of better paying jobs, healthier lives, and independence from g…",224435 +RT @TheBaxterBean: REMINDER: Republican Party (now controlling 3 branches of fed govt) is the only climate change-denying political pa…,952397 +RT @jmaehre: @semisexuaI @megswizzle This is similar to 'if there's ice in my drink how can global warming be real?',12004 +@Andoryuu_C effects on human health. It's also important to mention animal agriculture is the leading contributor to climate change.,185013 +RT @painhub: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus o…,486832 +RT @robmanuel: For anyone worried about their A-level results remember that it's too late to stop climate change & most of you will die fig…,86045 +RT @DrStillJein: This New Year terror attack in #Istanbul has nothing to do with Islam and everything to do with climate change. #Turkey #i…,133514 +If you think global warming isn't real you a dumb ass bitch lmao,799864 +RT @WRIClimate: Mayors and Governors many in states that supported Trump determined to continue #climate change policies and plans https://…,781356 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,866735 +"RT @SafetyPinDaily: Trump's plans to cut climate change protections are worse than feared, leaked documents show | Via @independent +https:…",788791 +But not on climate change.... yeah https://t.co/o2F0ejHsix,907298 +@WasserL @kylegriffin1 Really so him saying that global warming is the greatest threat we face wasn't truth? Please… https://t.co/WFrKUWHEiV,930620 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,580848 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,438124 +"So, Pruitt denies climate change. Does our planet have to be destroyed on the ignorance of this fossil fuel idolator?",400009 +What a joke! Yep that's right a joke. First climate change now they're going after our Natural Treasures by opening… https://t.co/THqBWBhqKT,956741 +@Antena67 @Holly4humanity @FeistyPrincess4 A Trump tornado on 11/8 destroyed deplorable candidate Clinton. That's serious climate change!,748695 +"RT @WernerTwertzog: Toxic masculinity, as we all know, is the leading cause of climate change.",831576 +"China says #DonaldTrump is the hoax, not climate change. https://t.co/9nkwjrE8Xb",683218 +RT @SenBobCasey: The time is now. We must act on climate change. #ActOnClimate #ClimateMarch https://t.co/ja3I2GVoN9,531715 +Unprecedented Antarctic expedition maps sea ice to solve climate change mystery https://t.co/7aOE3rea7c via @physorg_com,555874 +For anyone teaching about climate change and the environment! https://t.co/qITQFuHTxz,672398 +Why don’t Christian conservatives worry about climate change? God. https://t.co/6WYqchTThU https://t.co/fRIXr7YUKS,293081 +"RT @KatiePavlich: They preach to us about open borders, gun control and climate change while living in gated communities with armed g… ",506419 +CBSNews: New federal climate report shows impacts of climate change are far more grave than the White House lets o… https://t.co/L3QSkNsaMN,776853 +@NilVeritas @nopepenocry @ramzpaul @RichardBSpencer lol socialism has already done more harm to humanity than climate change will ever do.,857439 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",860763 +RT @RawStory: ‘Is that a hard question?’: Megyn Kelly badgers Trump spokesman for hedging on climate change stance…,169809 +RT @KenDiesel: I notice the same people telling us that manmade climate change is a fact are also telling us men can be women. #StepsToReve…,410150 +"RT @ShoebridgeC: Interesting article: how global warming risks release of pathogens that in some cases dormant for thousands of years +https…",776743 +RT @theonlyadult: The people of Florida elected a guy who think climate change is a Chinese hoax. I'll sit here laughing when they dr…,830459 +RT @LibyaLiberty: Empowered Muslim females AND climate change awareness? This headline would make Trump's head explode. https://t.co/6xWXPQ…,612043 +Isn't the record high in NYC for this date 68 degrees set in 1876? Was global warming driving that too? https://t.co/8zxrYN3qdk,247011 +RT @habibisilvia: Whales are doing a better job of fighting climate change than humans are https://t.co/AtIg98xnMG by #djoycici via…,404518 +they say what inspired ya i said global warming,997644 +RT @NewScienceWrld: Here’s (another) study that will give you global warming nightmares https://t.co/tFt5kQcDks https://t.co/YVZJEp9PJc,111741 +"RT @business: Stopping global warming could make the world $19 trillion richer, report says https://t.co/uNtwhg76rs https://t.co/wqhs0UWi3I",921727 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",921922 +"RT @AnjaKolibri: Toxic slime, bloodsuckers, 'code brown' & company: 8 disgusting side effects of #climate change: https://t.co/5hVhtZeCAQ v…",349946 +"For the first time on record, human-caused climate change has rerouted an entire river by @azeem https://t.co/A8YrbUTkox",632649 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,10315 +RT @MeganNeuringer: if u think pizzagate is real but climate change is fake you truly are a dumb dildo,448017 +You guys global warming is reallll ������������������ just yeasterday it was 100 degrees outside,561814 +"RT @Arauz2012: Hey, maybe this is why the Obama admin can't find any 'scientists' who disagree with them on global warming https://t.co/XGr…",88851 +@TIME Trump must be #DeSelected as POTUS-elect. Disavowing climate change is committing crime against humanity. https://t.co/2ojo7dXVa2.,317861 +RT @market_forces: Legal liability - the jolt super funds need to take climate change seriously #ActOnClimate https://t.co/zee6gkmHzg,419424 +RT @val_hudson: No but plenty of time to give a voice to climate change denier Nigel Lawson #R4today https://t.co/UboabyNpsj,185650 +"In the midst of Trump's chaos, don't forget climate change as scientists marvel at extreme Arctic warmth +https://t.co/D8t1bae55o",931895 +RT @ObsoleteDogma: That’s one way to make climate change go away https://t.co/sNoz3PJn7Q,893553 +"RT @ESPMasonU: Boosting global access to water is critical, with climate change bringing decreased rainfall, rising temperatures. https://t…",159886 +https://t.co/umvOqAWVw3 The real facts on climate change! MUST WATCH,48509 +"@condokay yep and it's going to get worse , I think it's this global warming & apprently the sea is getting hotter to",697646 +"RT @MaryCreaghMP: This article, published in a New Zealand newspaper in 1912, was one of the first warnings about climate change… ",260134 +RT @onherperiod: Only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scientists,958366 +"Exxon knew of climate change in 1981, email says – but it funded deniers for 27 more years https://t.co/8SlvD7tGse",497671 +Or maybe it is just that the global warming nuts are being given a sign. Enlist with us at https://t.co/oSPeY48nOh.… https://t.co/mYYAHV6vj6,890683 +"Bye unions, bye new federal minimum wage of 12-15$ an hour, bye climate change, bye gay rights, bye Roe vs Wade, bye free college.",219061 +UN chief urges action on climate change as Trump debates https://t.co/k9TUHrlauf,50736 +"RT @LOLGOP: Except if it involves climate change, trans kids, adding sweet notes of coal ash to river water or anything that do…",742031 +"RT @India_Resists: End of debate. #Demonetisation was actually for tackling climate change. + +#ObjectiveOfDemonetisation",431195 +"We are winning the battle against #climate change, #fossilfuels . + +Join us. https://t.co/8BuTrwyzTE",159717 +RT @kimmelman: My series for @nytimes on climate change and global cities kicks off with Mexico City today. https://t.co/L3kpEbGTLg,641424 +RT @business: Donald Trump's win deals a blow to the global fight against climate change https://t.co/DJKduvISTR https://t.co/e6tusL6QNT,423512 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,229137 +"RT @FlaDems: In South Florida, climate change isn't an abstract issue, and definitely not a 'hoax,' despite what Trump believes…",798844 +"RT @pablorodas: Energydesk: Without the Congo Basin rainforest, efforts to tackle climate change are dead in the water … https://t.co/aiBLD…",693406 +RT @EnvDefenseFund: Red states are acting on climate change -- without calling it climate change. https://t.co/vg2MhhRaJd,371036 +@ja_herron most likely. I've yet to see a movie or play about climate change that doesn't want to make me pull my eyeballs out,211835 +"(Snows in September) REPUBLICAN: lol global warming am I right? +(60 in February) DEMOCRAT: anyone wanna fist fight bout thermometers bihtc",757133 +How climate change could make air travel even more unpleasant https://t.co/rAFnUfxhyo,937342 +Zika’s link to climate change https://t.co/EiGGMWXl3D,977747 +RT @TimWeisAB: Canada not ready for climate change: University of Waterloo report https://t.co/lHK1y5sWIz,333823 +RT @samisglam: @ghostmanonfirst more people will be starving and dying if we don't pay attention to climate change & the many problems it c…,669775 +Experts fear “silent springs” as songbirds can’t keep up with climate change. https://t.co/ZVahfAfHJY,260295 +RT @BCAppelbaum: Why are people pretending Trump's views about climate change are some kind of mystery? He's answered the question p…,677043 +@princegender Plz I remember back in high school I didn't deny climate change bc I understand how facts worked but… https://t.co/ypiGTmu0jn,477036 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,194820 +"RT @R_opeoluwa: @DebsExtra climate change ni , Nottin more",833593 +RT @politico: The Weather Channel calls out Breitbart for climate change skepticism https://t.co/EMHfB16IDv https://t.co/lksMqakEd6,737103 +Err:501,838487 +RT @treubold: The connection between meat and climate change. Great visual explainer by @CivilEats https://t.co/DnwJRtvmtI,14362 +"RT @amiraminiMD: So much for his Al Gore meeting on climate change. +So much for his interest in'crystal clear' air & water. +So much for Ame…",433532 +RT @CreeClayton: Teachers urge $175 billion pension fund 2 flex muscle on climate change https://t.co/mfV33X8w4M via @NatObserver #Keepit…,375715 +"RT @waglenikhil: India diverts Rs 56,700 crore from the fight against climate change to Goods and Service Tax regime https://t.co/wQ5JOkxJG…",274541 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,115978 +RT @CCLsaltlake: .@SLTrib Op-ed by @DSFolland: Students take lead on #climate change because they face the consequences... https://t.co/PfR…,905000 +RT @TODAYshow: Melting glaciers are causing real damage in Florida. Is climate change the culprit? https://t.co/gORGQM2sNi https://t.co/nE7…,343053 +apart from their beauty and entitlement to life birds are a terrific barometer to climate change. they enrich our l… https://t.co/Ui44jAcda8,168437 +RT @dmeron: Finding ways to handle climate change: Israeli scientists create heat resistant fruit trees https://t.co/vT22rbYp9w,794305 +...what? The head of the EPA knows less about global warming than a highm https://t.co/XPLUKM44YK,149132 +For anyone who thinks global warming isn't real: weather does not equal climate you g'damn moron,255482 +RT @yungbarbrab: How can you ignore the signs? 'There is no scientific proof of climate change' we have a blind president https://t.co/fmyJ…,786652 +"RT @maximumleader: @JoanOfArgghh It doesn't just fight climate change, it fights so many other social ills! (Has anyone seen Logan's R…",18795 +Mapped: The climate change conversation on Twitter https://t.co/RerRDSLL90,261144 +"RT @vondanmcintyre: If we have four years of dismantling climate change research, doing nothing, adding more greenhouse gases, maybe our wo…",2575 +RT @350: 'We are now in truly uncharted territory” @wmo reports on how record-breaking climate change is pushing the planet…,477704 +"History will show @realDonaldTrump was most influential person to ignore threats presented by climate change, and was responsible for crisis",645226 +RT @WorldfNature: Warren Buffett faces down climate change in weekend votes - Washington Examiner https://t.co/cgXhiiCvvS https://t.co/loC6…,613988 +One of the most troubling ideas about climate change just found new evidence in its favor https://t.co/KnyZRU4p0b,141972 +RT @washingtonpost: Here are pictures of John Kerry in Antarctica to remind you global warming is still happening…,863542 +RT @guardian: Global 'March for Science' protests call for action on climate change https://t.co/Q3GNVsD4nz,922667 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,419431 +@creekbear One whose highest point is about 10 feet higher than high tide. Because climate change is a hoax.,960388 +BBC World News: Badlands on Twitter: US park climate change tweets deleted https://t.co/yYrHMolsBZ,853322 +RT @Zorro1223: #EarthDay Because global warming bears can't find there food on solid ice. https://t.co/4d5GxUeVkd,622813 +@joanbehnke unfortunately there is plenty of evidence that global warming is real & that we aren't doing enough about it,785330 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,810188 +"RT @callout4: Countless scientists, decades of research. And @realDonaldTrump says 'nobody really knows' if climate change real https://t.c…",53815 +gago climate change 😂,818404 +"RT @CBSNews: Rex Tillerson grilled on ExxonMobil conflicts, Russia sanctions and climate change at Senate confirmation hearing:… ",747464 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",754308 +RT @SoReIatable: if global warming isn't real why did club penguin shut down,128943 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,996229 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/UsYkte8nKU,964585 +RT @DLCNGOUN: Main theme for #COP22 should be how #agriculture and budgets can be mainstreamed to migate climate change&encourage developme…,959469 +"RT @woolleytextiles: Can't believe how some American's, including @realDonaldTrump don't even believe climate change is a thing! Everyon…",354761 +Al Gore’s ‘Inconvenient Sequel’ brings climate change debate into the Trump era https://t.co/rBFlm7UaXL via @usatoday,102989 +RT @pauljac94662323: What effect will climate change mean for hop production in the Yakima valley #climateontap,67926 +RT @c40cities: 'Reneging on the #ParisAgreement is shortsighted and does not make climate change any less real.' - @ChicagosMayor…,122021 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,549342 +"RT @Newsweek: Former astronaut Scott Kelly tweets about earth, climate change as Trump pulls out of the Paris accord…",446441 +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/z37Nk9Cb1g,196355 +"RT @ForeignAffairs: Paris will survive, but Washington’s failure to lead on climate change will hurt the United States and the world. https…",589487 +RT @theAGU: AGU's President responds to EPA administrator's statements on climate change: https://t.co/Ch3Kh9P2nZ,70611 +RT @taylorgiavasis: Do you guys actually care about climate change or are just mad Donald trump doesn't believe it's real,683684 +RT @mmurraypolitics: Reminder from April 2017 NBC/WSJ poll: A combined 67% of Americans back action to combat climate change https://t.co/2…,978725 +This climate change is no joke and us millennials will experience a future financial crisis.,13287 +"RT @factcheckdotorg: Have a question about GMOs, climate change or other public policy issues?Ask SciCheck, our latest feature: https://t.c…",809747 +"Like, the entire conservative argument against dealing with climate change is 'but God'.",838185 +World leaders duped by manipulated global warming data https://t.co/KJfYCyP6q3 via @MailOnline,647188 +Humans don't cause climate change... but the cows. It was always the cows. #cowfarts,616174 +RT @samsteinhp: FWIW. we have probably lost the battle against climate change tonight,754798 +RT @NYUWashingtonDC: 'The solutions for climate change are the solutions for social issues' @maxthabiso with @PPrettitore @WorldBank…,620739 +"@wfaachannel8 @David_in_Dallas this global warming sure is getting out of control, the celebrities, the pope, and obama are right, it's hot",644772 +"Bill Nye on climate change, his new film, and bravery in science https://t.co/pC3Saz7V8s via @nbcnews",96841 +"Asshole Leo dick-crappio made a climate change film(yawn). No one cares. Still, I put him on lifetime shunlist. https://t.co/LYYIJDsSD1",818549 +Scott Pruitt: climate change denier and bedfellow of polluter lobbyists. Reject his nomination as EPA administrator https://t.co/FYSvxdxhPk,24845 +RT @Independent: Emergency campaign launched to convince Trump climate change is real https://t.co/obbXYhFxNS,397713 +RT @JohnFugelsang: & Donald Trump wants you know this proves NASA's part of that whole Chinese climate change hoax. https://t.co/Mc7346asP1,924727 +Three ways the Tory manifesto falls short on climate change and the environment,164077 +Yellow cedar could become a noticeable casualty of #climate change: Digital Journal https://t.co/8e6OuPQ9HE #environment,442722 +"RT @rebleber: Tillerson: 'I don’t see [climate change] as an imminent national security threat but perhaps others do' +The others: https://t…",583077 +RT @Hope012015: Exxon to Trump: Don't ditch Paris climate change deal https://t.co/2g23192RxB via @CNNMoney,840571 +RT @mtavp: BBC froze me out because I don't believe in global warming: David Bellamy reveals why you don't see him on TV now. https://t.co/…,415337 +RT @nowthisnews: Bernie Sanders and Bill Nye talked about how fighting climate change can bring jobs to America https://t.co/8Hu43hSCm6,148578 +@OxfordUnion @CLewandowski_ Is it because ur an expert & have convincing facts that climate change is a hoax? U have no idea what ur saying,239214 +RT @CNNPolitics: Hillary Clinton discusses Hurricane Matthew in North Carolina: I'll work to limit damage by taking on climate change https…,521908 +RT @PicsGalleries: Here you can see who the victims of global warming are... https://t.co/VGcNpIi5Z3,947679 +".@realDonaldTrump, the US military thinks climate change is an imminent threat. Listen to them. #100Days #KeepParis",227844 +"@alexborovoy1 so basically yes, hurricanes will continue to happen like always but global warming only intensifies them.",701507 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,617736 +"RT @JeunesMacron: �� #MakeOurPlanetGreatAgain �� +Today we are determined to lead (and win!) this battle on climate change. https://t.co/kWBB…",509196 +RT @brianklaas: Man who cited 1 day of weather in 3 locations to claim climate change is a 'hoax' may torpedo Paris climate accord. https:/…,585430 +"RT @sys_capone: Me: Omg global warming is so scary. It's warm in winter. This can't be good. +Winter: *behaves like winter +Me: https://t.co/…",839425 +"RT @NRDC: Trump is deleting climate change, one site at a time. https://t.co/uRekDeg8th via @guardian",414230 +"RT @containergarden: If you believe in climate change, vote. #ImWithHer https://t.co/GwzX0SfdAo",916592 +"RT @BigJoeBastardi: Earth to Shepard Smith.No one denies climate change is real,we question mans extent Show me the linkage in the ent…",705572 +RT @herbley: Residents on remote Alaska island fear climate change will doom way of life https://t.co/v4tryrx93Z via @usatoday,282147 +@DayBlackTheGod It's gonna be too hot for people pretty soon I swear �� global warming got y'all,201741 +"RT @tveitdal: Why the research into climate change in Africa is biased, and why it matters https://t.co/SpgIbbrpjS https://t.co/vJqRMYnYYW",464689 +"RT @bpmart0: Is climate change THAT bad? So we lose FL & polar bears, would you really miss them? It's 70 in mid-Nov! #itisactuallybad #cli…",506099 +"RT @daveanthony: btw, if you’re in Arizona right now. Don’t walk your pets. And enjoy climate change. https://t.co/cKwBKZTBrS",315331 +RT @emilapedia: Could u imagine Trudeau attending the Stratford festival and get lectured by the cast on govt spending or climate change?…,258435 +"Also, organic, local & sustainable agriculture is a good alternative to current models. The thing is, due to climate change, agriculture",910541 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",394712 +USFreedomArmy: RT USFreedomArmy: Now we know the real reason for the climate change hysteria. Enlist with us at … https://t.co/xFbLGHqgt3,424092 +RT @NatGeoChannel: Join @LeoDiCaprio as he searches for answers on the issue of climate change. #BeforeTheFlood starts now! https://t.co/qc…,204080 +"RT @CECHR_UoD: The smart way to help African farmers tackle climate change +https://t.co/1w5OKwLo84 #foodsecurity #Knowledgeispower https://…",744870 +RT @ClimateCentral: Peru's floods follow climate change's deadly trend https://t.co/0dCEZgRab0 via @insideclimate https://t.co/b1dBEbKFoj,644004 +RT @henrikkniberg: The fact that global warming is caused by humans is actually positive. Means we could do stuff about it. Otherwise we'd…,107636 +"RT @kelkulus: Irony: Florida, a state in danger of being washed away due to rising sea levels, just elected a guy who denies climate change…",661174 +Polar bears for global warming. Fish for water pollution. https://t.co/jscxJNw7Js,19909 +RT @AdamBandt: Do we really want to be Deputy Sheriff to a racist climate change-denier? Time to ask serious Qs about how slavishly we'll f…,927163 +How will California battle climate change? A new proposal revs up debate over cap-and-trade program https://t.co/cqNrgYPmLH,358829 +"RT @CBCNews: Trump win a 'disaster' in the fight against climate change, scientists and environmentalists say…",186937 +"RT @sgphil: I'd like people to eat less meat, fish, dairy and eggs to be kinder to animals and reduce climate change…",98072 +RT @NatGeoChannel: Join @LeoDiCaprio as he searches for answers on the issue of climate change. #BeforeTheFlood starts now! https://t.co/qc…,43449 +"RT @mitskileaks: want to specify that $ is donated to orgs that work on climate change,women's rights, immigration,+other causes.in… ",996972 +Honestly whether climate change is real or not why would you not wanna take care of the earth? So much to see out there.,365705 +RT @GavinNewsom: Once again Trump proves that he believes facts don't matter by appointing a man who doesn't believe climate change is real…,27742 +"RT @Logic_Argue: Apparently global warming is going to cause problems by.. making the North Atlantic colder, what hold on, what? @SteveSGod…",165638 +RT @qz: NASA released a series of climate change images just as Trump heats up his attacks on the EPA https://t.co/asqDeb5WVd,419439 +RT @Reuters: Vatican says Trump risks losing climate change leadership to China https://t.co/efWR3ktlIl https://t.co/U6JraHOUEo,254018 +Obama is spending another $500 million to fight climate change before Trump can stop him. https://t.co/vEJtPuSIyl,980316 +RT @Independent: 11 images from Nasa that show climate change is real https://t.co/0U2eRHeEVF,849752 +@EnviroNews can't tax us for this it's not climate change,601238 +#global warming #shatter #glass #ceiling #NoWallNoBan #NoamChomsky #earth #EllenDeGeneres #traveller #with #a… https://t.co/iS3jn6pDdl,763081 +RT @ShawnaRiddle: Can we talk about climate change now? #harvey #hurricaneharvey,767129 +Coverage of new thesis: National coordination for successful climate change action https://t.co/ZCcsrDLzdz,292040 +RT @FastCoIdeas: 'Our children won’t have time to debate the existence of climate change. They’ll be busy dealing with its effects.' https:…,800470 +"Real talk England. The north used to snow at Christmas, and now it floods. It's insane to think climate change isn't involved.",408830 +RT @AP_Politics: Trump's pick for EPA chief says he disagrees with Trump's earlier claims that climate change is a hoax.…,902403 +"RT @Polish333: For someone who doesn't believe in science, climate change, etc., surprised he is doing this... https://t.co/HBVG9HSffb",495974 +RT @NBCNews: BBC series 'Planet Earth II' shines light on climate change https://t.co/Pez4UwsMym https://t.co/DyoY7OrJWs,97966 +"RT @COP22: #COP22 Action Agenda: learn why #cities are so instrumental in tackling global warming #cities4climate +https://t.co/0IRw3UTxNk",612358 +RT @nytimes: A British swimmer is enduring extreme cold waters to promote awareness of the threats of climate change https://t.co/10lOYj3L0Y,601862 +"@OOOfarmer I went to a trial where the prairie plot was losing overall C from depth. No tillage, fert but less C. They blamed global warming",484009 +World leaders duped by manipulated global warming data https://t.co/qLFQlG2pdQ via @MailOnline,24147 +"Record-breaking climate events all over the world are being shaped by global warming, scientists find https://t.co/X9S3QZmWAN",545781 +RT @NBCNews: French President Macron invites Americans to move to France to research climate change https://t.co/6fCyRmPa6P https://t.co/D7…,404273 +"RT @katzish: Apparently 'Wayne Tracker'--Tillerson's other Exxon identity--had a lot of communications about climate change, per…",459068 +RT ScottAdamsSays: I invent the term Cognitive Blindness and apply it to the climate change debate: https://t.co/XTwm6PFagP #climatechange,706804 +"RT @Earthjustice: 'We are not imagining future climate change, we are watching the rising waters.' –President Remengesau of Palau…",570687 +You are told that the world will be destroyed by global warming unless you accept crushing taxation and government control over your life.,611072 +"My latest: A closer look at how the seafood we eat might play a role in climate change, and how climate change may… https://t.co/lqoZyhYwSl",985616 +"Topics: On unity vs. division, shared goals, on climate change, terrorism, UK elections, Basic income as one of the future solutions.",164701 +RT @VanJones68: Want to resist Trump taking America backwards on climate change? Sign up for the @GreenForAll Action Network. https://t.co/…,599031 +"US: Politics, culture or theology? Why evangelicals back Trump on global warming. @SightMagazine #climatechange + +https://t.co/6JuHOgHZwJ",291016 +"Thanks. Imaginary climate change is seriously triggering to me. + +@JenaFriedman @GreenPartyUS + +https://t.co/tqvpU1dElD",871590 +"RT @NRDC: #ICYMI: Yesterday, Scott Pruitt said CO2 is not a primary contributor to global warming. https://t.co/QZxinB1dSB via @Grist",375923 +"Fighting climate change isn’t a ‘waste of money’ — it’s a good investment +https://t.co/AFiMt270IE https://t.co/MmejhjHOG6",625713 +Trump's threat on climate change pledges will hit Africa hard - The Conversation AU https://t.co/R3b3FE2oha,544267 +"Welcome to America, where a groundhog tells us if its still winter but refuse to believe scientists when it comes to global warming.",597520 +RT @sean_spicier: The President rolled back Obama's climate change regulations. You will now be allowed unlimited exhales per day. Make Bre…,201908 +RT @Vegan_Newz: Vegan in the Region: Taking real action against climate change - https://t.co/qDDOXxEykk (blog)…,779450 +"RT @CauseWereGuys: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https:/…",41388 +"By 2080 vector population is supposed to increase by 200% due to climate change, start taking care of Earth peeps.",324210 +"RT @azeem_tuba: Ideas on climate change +@PUANConference @PakUSAlumni #ClimateCounts @usembislamabad https://t.co/VKQiwlA8lx",527518 +RT @Reuters: Trump team memo on climate change alarms Energy Department staff https://t.co/YgMQr7tZtN https://t.co/oFaaIdKeHk,995095 +Who cares u ar a LIAR and have not really done anything for climate change.. all what u did was damage.. https://t.co/tG2XYEISEP,68508 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,645526 +"@ludichrisspeed Definitely the climate change extinction, sexy lady.",803925 +"RT @CNN: Former New York City Mayor Bloomberg: +Trump's refusal to acknowledge climate change is real is 'embarrassing'…",310865 +IMAGE: An Al Gore global warming get together... https://t.co/fGd2wLmX1m #algore #climatechange #hoax #liar #libtard #tcot,243590 +RT @e3g: It’s time to respond to climate change in a way that protects & promotes public health! @LancetCountdown…,739831 +RT @_richardblack: Some climate change advice from Lord Farage... https://t.co/4YEiTozX66,838039 +RT @ajplus: Trump picked a climate change skeptic to head his EPA transition team. https://t.co/3Odv7hO57P,93918 +RT @nytimes: California is holding itself out as a model to other states — and to nations — on how to fight climate change https://t.co/exU…,115526 +@chrisrgun That awkward moment when IQ heritability has stronger scientific consensus than global warming… https://t.co/qpUnis5ZY9,164262 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",727311 +RT @jennjacquelynm: Friendly reminder our next president believes global warming is a Chinese hoax & hair spray can't escape your home beca…,735220 +@MarketWatch 4/5- Pope & Obama attributed hurricanes destruction to man-made global warming & pollution: Of course… https://t.co/ougeG9ejCJ,468210 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,689122 +Massachusetts court orders ExxonMobile to turn over 4 decades of its climate change research https://t.co/Xd8afJCSwh,53596 +How prepared are the world's top coal-mining companies for the business risks arising from climate change?… https://t.co/z4xHU98BwT,799186 +RT @JulietMEvans: Can discuss with people about EU but climate change deniers are beyond the pale. https://t.co/cTh4oa8w0S,101084 +@parthona98 @ValaAfshar I have studied earth science climate change would best served by millions of trees filtering carbon in the air,30439 +"@kelownagurl @TheGoodGodAbove the scary thing Barb is that their actions take us all down! Between climate change, electing Trump, guns, etc",810252 +"Shareholders force ExxonMobil to come clean on cost of climate change +Fμ©€ Trump & RexTillerson +https://t.co/qiKZ5cZlab",821303 +RT @Seeker: Researchers are highlighting the importance of marine reserves in combatting the effects of global warming. https://t.co/zzxESB…,292964 +"RT @AbbySmithDC: Last year, Stepp ordered info on human contribution to climate change scrubbed from her department's website, causi…",302407 +"On climate change, Scott Pruitt causes an uproar — and contradicts the EPA's own website - Washington Post https://t.co/Ztnvsql2O0",271892 +"RT @PopMech: Before the Flood: Watch this riveting, terrifying documentary on climate change https://t.co/w74QbFVLnC https://t.co/lvHxUyx6om",732321 +@elonmusk I don't believe the decision was based on climate change but rather no realistic changes for good from China or India,447410 +@latimes But...but...but... climate change & global warming! Could it be @algore was full of shit the entire time a… https://t.co/hot7uELEiX,803265 +Opinion: American executives who disagree with Trump over climate change ought to stand up for what they believe https://t.co/tqyIQva72K,196513 +"Well once the ocean's conveyer belt shuts down thanks to global warming, all of north america will be covered in snow/rice. +@way2snug",365268 +"RT @Chief_Tatanka: * + +Stop +climate change +before it +changes you. + +~Tȟatȟaŋka + +* +. https://t.co/F7R1NPyyot",202213 +Global investors urge G20 leaders to stand by climate change pact .. https://t.co/GKOMctjDds #climatechange,325954 +RT @ScienceChannel: Injecting calcite particles into the stratosphere could repair the ozone hole and slow climate change.…,969878 +They cut support for public transit users. Now liberals cut climate change investments. https://t.co/S1JGujw8DF,626863 +RT @fravel: China warns Trump against abandoning climate change deal https://t.co/kX3dApg9RD,549662 +RT @jo_moir: English says Govt doesn't spend much time linking dots between climate change and recent natural events. Concentrating on mana…,583897 +Birds are victims of lethal dehydration from climate change https://t.co/nMwtB8V2fD #yourworld #globalwarming #climatechange #birds #sos,81079 +"RT @grantsamms: #Pruitt: CO2 'is not a primary contributor to global warming.' +Me: Based on what? You're oil industry payments? +https://t.…",74615 +Conservatives can be convinced to fight climate change with a specific kind of language - Quartz https://t.co/KRdGKK33t5,390771 +RT @Europarl_EN: From agreement to action: the #ParisAgreement means limiting global warming to well below 2°C. Read more â–¶ï¸…,921683 +"#Science - EPA boss: Carbon dioxide isn't cause of global warming, The incoming head of America's Environmental P... https://t.co/IdoMvUAk62",260545 +Checks the weather for global warming,746062 +RT @DclareDiane: Renowned professor exposes the money-making global warming gravy train https://t.co/d6N6yHPYp0 via @ClimateDepot,523766 +"When a geologist denies climate change, find out if he by any chance helps oil companies find oil. One use for a geologist.",369387 +"@DavidAFrench Build a wall, Muslims banned, women objectified, deny global warming, VP supports conversion therapy - sounds lovely",387902 +▶@GreenPartyUS: We need to start taking climate change seriously. It should be part of every policy discussion.... https://t.co/pBv1nAWdoW,407975 +FEDERAL COURT: Trump EPA must enforce Obama climate change rule #MAGA #TCOT https://t.co/BmVkGre8HO,843647 +RT @nytimes: Ivanka Trump will meet with former Vice President Al Gore to discuss human-caused climate change https://t.co/bQwoCembug,668518 +"According with the recent claims, the very fact from the global warming is groundless. Are there any scientific proofs for this sort of sta…",259924 +RT @guardianeco: Bird species vanish from UK due to climate change and habitat loss https://t.co/SvIyL8HMus,823007 +RT @GlobalWarming36: Antarctica's Larsen C ice shelf: The latest climate change wake-up call - Minneapolis Star Tribune https://t.co/jkVqvw…,133194 +RT @kengarex: This sculpture by Issac Cordal in Berlin is called “Politicians discussing global warming.” https://t.co/8liiF1PWul,999383 +RT @jeonglows: not to be fake deep but this vid of jungkook being a cutie reversed global warming and ended world hunger #BTSBBMAs https://…,844853 +"RT @SteveSGoddard: People keep telling me to leave politics out of the global warming discussion. +That would be impossible, because it is p…",811166 +@pickledxokra @HandsomeAssOreo It's literally on his campaign website that he believes climate change is man-made https://t.co/L7bWGmUSfC,700248 +Biodiversity redistribution under climate change: Impacts on ecosystems and human well-being https://t.co/YGh9W28MyS,312802 +RT @GOP: The attention to climate change hasn’t changed. The attention to American interests has. https://t.co/N6IxjyQLVs,703577 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,842529 +RT @krystalkaufman_: When it starts snowing but global warming doesn't let it stick,133240 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",637996 +"In rebuke to Trump policy, GE CEO Immelt says ‘climate change is real’ https://t.co/pC95ppds5k by #LeoDiCaprio via @c0nvey",242561 +Donald Trump's environmental protection chief Scott Pruitt 'not convinced' carbon dioxide causes global warming… https://t.co/F8ZEkW5yjg,970006 +@artstanton lol. And I was thinking global warming is now in effect,651603 +"I'm sorry for my children, they are the ones who will suffer the effects of climate change'...hmm you should doubl… https://t.co/ryQYh2zVOC",339673 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",675644 +RT @Greenwood_Pete: @GeorgeMonbiot Protestors trying to ensure we meet or climate change commitments are now labelled as extremists. https:…,793976 +RT @obamolizer: Vox - Posts | A deep dive into the Obama climate change... https://t.co/7sx1eZOWKY https://t.co/Xv0hNKVpmN,162961 +RT lorac22allen 'RT crusaderkeif: Don't tell Europe Trump was right about the climate change hoax! https://t.co/EaR6CLsKzh',469570 +RT @jen_keesmaat: A new modular tile promises to help reduce flooding in cities hit by increased rainfall due to climate change. https://t.…,681176 +@Acosta @michaelshure I bet that most americans are FOR the paris agreement on emissions and climate change. Trump… https://t.co/nFDXIEzPXS,887401 +RT @KetanJ0: Why 2℃ of global warming is much worse for Australia than 1.5℃ https://t.co/Ul73YphNsl,891406 +Minority of Americans see consensus among climate scientists over causes of global climate change… https://t.co/WQZ8d7815R,751950 +"RT @Bentler: https://t.co/asaz0Sdfhg +In challenge to Trump, 17 Republicans join fight against global warming +#climate #policy…",965377 +"@LeadingWPassion I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",773946 +"RT @SenGillibrand: We only have one earth, so let's keep fighting for it—from protecting our air and water to combatting climate change. Ha…",84122 +RT @JolyonMaugham: A PM desperate for a quick deal; and a climate change denying opponent of state healthcare. What could go wrong? https:/…,845066 +RT @ThisWeekABC: EPA chief Scott Pruitt's language on climate change contradicts the agency's website. https://t.co/vEkHpebYII https://t.co…,389748 +"RT @Bamafan_forlife: @MariaTCardona funny how we have evidence of global warming but they don't believe it, no evidence of wire tap but yet…",837821 +"RT @abcnews: Scientists reset #DoomsdayClock to its closest time to midnight in 64 years due to climate change, nuclear fears https://t.co/…",967629 +RT @HeerJeet: Shouldn't Tillerson recuse himself from any decisions involving climate change & fossil fuel -- i.e. everything? https://t.co…,864765 +"RT @IMDb: Watch the #exclusive trailer for #IceAndSky, the story of the scientist who broke ground on climate change research… ",266087 +#climatechange Analysis|Most Americans support government regulation to fight climate change.Including in Pittsburgh https://t.co/277vlndjoZ,41710 +"The HORROR! Chelsea Clinton blames diabetes on climate change, gets fact-checked HARD https://t.co/lzuDJNOoYs",112134 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,513080 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",452254 +Bernie Sanders calls Trump climate change denying climate chief 'pathetic' https://t.co/bF40NmBg5P,564272 +@Cherlyn_Felle it is... global warming is no joke lol,876098 +"RT @ma_macneil: Stopping global warming is only way to save Great Barrier Reef, scientists warn https://t.co/5XrqaWzrL2",273845 +Grant of DKK 2.4M landed by @ASStensgaard to study climate change's effect on snail-borne parasites… https://t.co/ijG7gdhMG7,343129 +"RT @Adel__Almalki: #news by #almalki: New York, other states challenge Trump over climate change regulation https://t.co/gLIKqzXgeN",622330 +RT @ajplus: Trump picked a climate change skeptic to head his EPA transition team. https://t.co/3Odv7hO57P,296515 +RT @lOsergRrrl: happy earth day climate change is real and bad,199651 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",265010 +The head of the EPA just made another dangerous comment about global warming https://t.co/Q1FahdFe3F,124863 +"RT @WesClarkjr: US, in push for mass extinction, forces G20 to drop any mention of climate change' in joint statement #tytlive https://t.c…",619557 +The U.K. Government 'tried to bury' its own alarming report on climate change - https://t.co/TrflSk2xEt,500287 +RT @_NNOCCI: Informal science education centers are stepping up to talk climate change with guests. WE are the solution! https://t.co/NYXQT…,366450 +Eight foods you should invest in due to the White House blowing off climate change. �� #food #climate https://t.co/8bfJhjrY97,626887 +"RT @PeteOgden: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/bO9SkZynBc via @Reuters",426254 +You're not an inventor or a thought leader or anything much at all unless you invent something that stops climate change. Go. Do it.,535685 +"The curious disappearance of #climate change, from #Brexit to #Berlin': https://t.co/KwaQmACVR9 #politics #news",617761 +Rex Tillerson says in hearing the 'risk of climate change does exist' https://t.co/iLQEjMlKq0 https://t.co/9jl086Fmn0,616786 +"RT @BBCr4today: Nigel Lawson's claims about climate change are 'not true', says Met Office's @StottPeter #r4today @BBCRadio4 https://t.co/D…",863271 +EPA chief: Carbon dioxide not primary cause of global warming - Wisconsin Gazette https://t.co/geYJEZBMoG #GlobalWarming,516407 +Trump picks climate change denier for EPA team - CNN https://t.co/oZxljOWeS1,148449 +"RT @SarcasticRover: NASA Earth Science provides critical data, not just on climate change - but national security, emergency planning, agri…",849472 +@AyoAtitebi covfefe thinks climate change is covfefe... He's a big mistake,665945 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,479060 +RT @BrianKarem: So Rick Perry did not understand my question? Seriously? Is man responsible for climate change?,736724 +RT @TweetLikeAGirI: Only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scientis…,288008 +Looking forward to a lil climate change and location switch up these next 2 days!! #RoadTrippin ✌️,638394 +RT @therealroseanne: climate change is a bullshit concept that means poor ppl bear the taxes to clean up rich people's water.,779022 +RT @Bill_Sutherland: Evidence review: climate change impacts observed in 80% of ecological processes underpinning ecological function. http…,951766 +"RT @nytimes: In a hotter world brought on by climate change, people will get less sleep, a new study suggests https://t.co/G1JzpgIDsg",535506 +#MyPresident 😍😍😍😍😍 All the man made climate change idiots: Google moraines. And how they were formed by Ice Ages. https://t.co/OEQKfokBtJ,202738 +"RT @ClimateCentral: A new, interactive map shows where climate change has affected extreme weather events https://t.co/okFZS69VdU",863224 +"RT @ChrisJZullo: #NotReallyAPartyUntil you realize we elected Vice President who believes global warming, evolution, and gravity doesn't ex…",870370 +RT @nowthisnews: Bernie Sanderrs & Bill Nye had a wide ranging discussion about climate change on Facebook Live https://t.co/mVTNQfPaTi,721194 +RT @argus27: Michael Bloomberg and Mark Carney: How to make a profit from defeating climate change | The Guardian https://t.co/JYESztYj8U,981141 +RT @sil: I like this reformulation. Not 'this damages the credibility of the climate change agreement' but 'it damages the c…,252336 +"RT @INDIEWASHERE: scientists: *have logical&valid proof tht climate change is causing extreme weather* +republicans: iT'S THe GaYS THa…",77169 +RT @therightblue: New York skyscrapers adapt to climate change https://t.co/hJJGCdEC9s,68528 +"RT @ChrisJZullo: #IWantAmerica to focus on reducing income inequality, combating climate change and to invest in a green economy infrastruc…",38903 +"RT @TalkingHeadsAfr: Why the research into climate change in Africa is biased, and why it matters https://t.co/J6aAJEvBOV",256464 +"No, Trump hasn't embraced the science of climate change. Yes, it matters. - Washington Post https://t.co/2SWQzpNV39",11425 +RT @UNEP: More and faster support needed for climate change adaptation https://t.co/we5QevbWJq https://t.co/JIP54AmY0W,898966 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,860813 +"Before you vote #GreenPartyUS remember that if trump wins we will have no path forward on #climate change, we can't lose 4yrs #actonclimate",873715 +RT @derekhandova2: How climate change will affect supply chain management https://t.co/VUJJmyO7NX @lhusiebing @hiasaelsa @pauloise14 @sanit…,81184 +RT @leahmcelrath: Trump has said climate change is a hoax created by the Chinese to make U.S. manufacturing less competitive. https://t.co/…,106630 +RT @APTNNews: The latest news on global warming for the arctic isn't good reports @tfennario It only got worse in 2016…,203802 +RT @climatehawk1: Flooding New Zealand storm due in part to #climate change - expert | @radionz https://t.co/3fWYUqLftp #ActOnClimate…,904553 +EPA chief still doesn't think humans are the primary cause of climate change https://t.co/3XzjhGNraa via @HuffPostPol,793878 +RT @IrishTimesOpEd: Breda O’Brien: breaking the silence on climate change https://t.co/bMToS5JfYG,727291 +"@summit1g ban on Muslims, deportation of undocumented immigrants, stop and frisk, doesn't believe in climate change, general ignorance",659013 +"RT @ReillyRick: If you care about climate change, religious freedom, gun sanity, women's rights + racial harmony, this is a terrifying nigh…",170414 +Bloomberg urges world leaders not to follow Trump's lead on climate change https://t.co/LDG3XQ2FWm https://t.co/uZgB1rQV2V,545030 +"Before the Flood is a documentary about climate change and global warming, narrated by Leo DiCaprio as UN's messenger of peace (not actor).",935399 +"RT @7piliers: FAQ on climate change and disaster displacement; it is not a future hypothetical – it’s a current reality; @Refugees +https://…",720843 +RT @Independent: Emergency campaign launched to convince Trump climate change is real https://t.co/obbXYhFxNS,24407 +Am I the only one that gets sad when they think about people who do not understand the adverse effects climate change has on this planet?,368110 +"RT @ScreamngEagle: From the party that believes in global warming, looks like they treated Philly pretty bad last night ! Just like Hi…",503818 +@bradcarlson_ not denying climate change lol I'm saying the weather does this every year and no reason to blame trump,556178 +"RT @PeterGleick: It's straightforward. As #climate change raises temperatures, extreme heat events become more frequent. And that's…",905326 +Machen Sie alle öffentlichen Parkplätze kostenpflichtig! Acting on climate change! https://t.co/s9yVDcSkR0 via @ChangeGER,337724 +RT @GisellaGsba: @singsingsolo. A climate change denier is not worse than someone aware of it who sells #fracking to the world.,69700 +RT @EcoInternet3: In-depth: What Donald #Trump's budget means for US spending on #climate change: Carbon Brief https://t.co/QX0MRfHylm #env…,114542 +"RT @Supreme: 2010-2017, so sad what climate change has done to the Grand Canyon... https://t.co/MWaRh3kW7o",160079 +RT @1Iodin: @Amy_Siskind Millions of Americans do not want to know USA was hacked. Similar to denying climate change. Deny so one does not…,903579 +RT @Harvard: Harvard environmental experts forecast a complex mosaic for climate change policy in the years ahead https://t.co/DNrfqB7rR9,646349 +"RT @SteveSGoddard: 100 years ago, the father of global warming said Siberia would become the greatest farming country on Earth. It is…",161942 +"RT @GhostPanther: Quickest IQ test: do you believe in man made climate change? +If no, is it because u run an oil company? +If u answered no…",598614 +RT @DeadStateTweets: Kind of ironic how Jill Stein helped elect a climate change denier.,663644 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,329622 +"RT @RahulKohli13: I love that there are people who deny climate change. I deny calories, not gonna stop me from getting tits though is it?",263883 +"RT @yo: A rodent predicting the weather is acceptable, but climate change is a crazy idea? Sounds legit. + + #GroundhogDay",296398 +Trump may not snuff out renewable energy industry despite his doubts on climate change - CNBC ☄ #vrai777 ⛱ $v ℅ #G… https://t.co/J193AmOi6P,566777 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",158516 +RT @postgreen: Trump meets with Princeton physicist who says global warming is good for us https://t.co/iVCJwDfPF1,764934 +"EPA chief Scott Pruitt doubts carbon dioxide the key culprit in global warming. +...https://t.co/Mn4D9HItOm",404621 +Trump climate change: 'He wants to get rid of a very large part of Obama's environment legacy' https://t.co/QiYkF66Mdv,803119 +RT @WorldResources: Reading - China will soon trump America: The country is now the global leader in #climate change reform @Salon https://…,610999 +"RT @ULTRAVlOLENCE: Interviewer: 'What do you think about global warming?' +Melania Trump: 'Hello... He's kind he's strong, he's a great... c…",737690 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,312628 +@BloombergDotOrg @MikeBloomberg Yea climate change for all citizen and the world.,712615 +Kenyans turn to camels to cope with climate change https://t.co/d5H3KQYOCf via @dwnews,188749 +yay it's snowing!! even tho today had a high of 69!!! that just proves climate change isn't real!! it was all an elaborate hoax!!,814343 +RT @kvnpkrwrd: @Jackthelad1947 only global warming can save us from their ilk.,988637 +Mixed feelings about global warming bc it's nice af outside but only February,880191 +"RT @GayJordan23: I'm in full support of the phrase 'climate change is a hoax' if hoax stands for Hot, Old, Anal, X-rated & 'climate change'…",280042 +@PDChina Its global warming..,630479 +RT @BuzzFeed: There’s only one way to save the Great Barrier Reef: stop climate change https://t.co/nibV8UIdjB https://t.co/WiUItxcTkB,46849 +"@AhavatOlam18 @Nordic_Fascist @sallykohn climate change may be happening, but what % is caused by humans?",667139 +"Vulnerable to climate change, New Mexicans understand its risks https://t.co/A0OIeHo7Gm #savedfor later #feedly",445425 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,136052 +African leaders in Morocco to unify stance on global warming https://t.co/DFxBIyqlZ5 via @Biz_Africa https://t.co/6T48BVLmes,811010 +"Facing a President who denies the reality of climate change, we need to mobilize together. Join me. https://t.co/iBchZeMj0b",170283 +"The doomsday vault, protecting the world's seeds from catastrophe, just flooded due to global warming.",900662 +It sas 70 degrees on Wednesday and it's snowing today. These climate change denying politicians really think that w… https://t.co/AOixJv1rL2,493441 +"Britain's Prince Charles has co-authored a basic guide book to the problems posed by climate change. + +The book... https://t.co/Z5NTcd2XNo",94212 +RT @climatehawk1: Eyes wide shut: Trump slashing programs linking #climate change to U.S. national security https://t.co/5f5JV25e1B…,753640 +RT @washingtonpost: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/velLNqKi…,312169 +@OMGTheMess we said no to climate change crap under Tony. What gave them the power to ignore us. It was a mandate?,202533 +"RT @c40cities: To adapt to climate change, the cities of @BeloHorizonte, @nycgov & @Paris are leading the way with innovative plan…",102614 +"RT @coreindianness: 'We must build pipelines so we can fund our fight against climate change.' + +These people run your country.",619990 +#SolarEnergy: Embracing renewable energy is the key to solving the challenge of climate change PM ... https://t.co/xSfDNMnlbD,86350 +"@realDonaldTrump I truly support and respect you, but I have one issue. You can't keep denying climate change please I'm begging you.",63121 +yesterday was a nice day and today feels like i have entered a new hell called Cold Hell. good thing trump doesnt believe in global warming,121852 +"Ignoring climate change, pulling out of Paris, more fossil fuels -- the new future? https://t.co/SGXBpj5x8A",600352 +"RT @BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is at stake. https://t.c…",124929 +"RT @Gingrich_of_PA: Finally, a president who directs NASA to do something to prevent extinction (Hint, it ain't climate change) https://t.c…",75897 +"From Asia to outback Australia, farmers are challenged by climate change Anika Molesworth… https://t.co/EaoQicd35p",574497 +"RT @paul__johnson: Gove back in: Environment Secretary. +The minister who tried to remove climate change from curriculum https://t.co/U1VA…",24804 +There is SO MUCH more evidence for human imposed climate change than there is for your God yet you consider the latter an undeniable truth??,596222 +@BrianPaulStuart This guy needs more than erectile dysfunction drugs to survive earth's climate change we are already in,906004 +RT @CatherineForNV: I believe in science. I believe in climate change. Let's protect our precious resources including the air we breathe &…,539619 +Keeping the holiday tradition of ruining christmas twitter by reminding everyone that global warming is real,110125 +"MWASIA - China's 'airpocalypse' a product of climate change, not just pollution, researchers say https://t.co/wOxfcEXn6J",448051 +RT @termiteking: Trump doesn't care about climate change but we outnumber him. He won't do anything about it but WE will,790726 +"RT @GalloVOA: Asked whether Trump believes human activity contributes to global warming, a senior White House official says: 'That's not th…",822650 +RT @BBCWorld: Rex Tillerson 'used email alias' at Exxon to talk climate change https://t.co/xEQFCKBpmw,381243 +RT @60Mins: Casting a shadow over all this beauty is climate change & the amount of carbon dioxide fuelling the rise in air & s…,730979 +"Terror, Russia and climate change top G7 agenda https://t.co/lcuNm2hCHz via @YouTube",936649 +RT @hyped_resonance: before global warming causes sea levels to rise at an alarming rate anybody want to admit they got a crush on me ? �� ����,587095 +Investors with $2.8 trillion in assets unite against Donald Trump's climate change denial https://t.co/5G883Vd7uu via independent.…,612202 +So upset climate change is about to be ignored,429050 +RT @DavidTooveyKGL: Well deserved award for #Rwanda's climate change mitigation and adaptation efforts given to Pres. @PaulKagame.…,700694 +@donttrythis So how can you demand science be the basis for climate change proof but not the gender of a human? That's not how it works.,851416 +@LeoDiCaprio happy birthday. 😊Thank you for being so inspirational for many of us for a long time. 💋keep fighting for climate change,547091 +I emailed my pension fund manager and told them to back this historic climate change motion for @ExxonMobil's AGM https://t.co/g9DEKzblYB,51713 +RT @fivefifths: Here's a reminder that we completely blew it on climate change https://t.co/UvJYWGtzuc,125090 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",81094 +RT @CNN: The Trump team is disavowing a climate change questionnaire sent to the Energy Department https://t.co/gQKQUaQxuW https://t.co/f1S…,46987 +"@Reuters Please don't,global warming is a hoax.",10385 +Oh my. Not 'bowing to the alter of climate change'@realDonaldTrump* is a mere fraction of his crazy. He's seriously… https://t.co/jbInSNmLLh,660879 +"RT @billmckibben: Hey, a hit of good news: judge allows youth lawsuit against fed govt on climate change to proceed! https://t.co/P4Y11CEbaQ",815867 +RT @jilevin: Donald Trump to mayor of island sinking due to climate change: Don't worry about it! https://t.co/Hxv38V9Yoa,182651 +@cnnbrk Very sad for those who were impacted. This is global warming & u see it happening all around the world but WH & @GOP don't believe,13152 +RT @sasencios: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/M1XnzzHqny,612985 +RT @sfchronicle: Gov. Jerry Brown promises to “fight” President-elect Donald Trump over climate change. via @joegarofoli…,668026 +RT @Shanghai_Metal: Trump has often said climate change is a hoax. Would Mr.Trump as President hinder the future of renewable energies? #Im…,286216 +RT @JessicaPenney_: Stating an Inuit women's personal narrative is unrelated to climate change is ignorant of Inuit conceptions of self/com…,872878 +"RT @nbcbayarea: With #DonaldTrump in White House, California will not back down from its climate change fight, @govjbrown says. https://t.c…",346203 +RT @sleepyverny: 36. did u know jisol could actually stop global warming w how cute they are https://t.co/lUcGsuuISh,717045 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",118481 +I experienced climate change yesterday one minute i didn't need a hat the next I had to put a hat on,67795 +"RT @FiveThirtyEight: If the world decides to fight climate change without the U.S., there could be economic repercussions. https://t.co/v9B…",965112 +"RT @DrMoriartyY: Effect of historical land-use and climate change on tree-climate +relationships in the upper Midwestern United States https…",942456 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",49607 +"Top story: ‘There’s no plan B’: climate change scientists fear consequence of T… https://t.co/CA8wTmEONV, see more https://t.co/bwHa7pqv9O",336321 +"RT @_AlexHirsch: Simple. I believe in climate change, a woman's right to choose, gun safety & the wealthy paying their fair share. T…",220175 +"RT @laurenduca: Today's Thigh-High Politics is on the Times hiring climate change denier Bret Stephens (folks, they pulled a Comey): https:…",218973 +"Or...not spending enough on fighting child poverty, climate change, investing in rural econ diversification, elimin… https://t.co/tJcNiCpQ5Q",458027 +RT @goIdcigs: if global warming isn't real why did club penguin shut down,932536 +RT @thehill: California governor named special advisor to UN climate change conference https://t.co/loC6WTTg0I https://t.co/iBDT0IN6R5,239165 +"RT @matthaig1: If you don't have a science degree, and think climate change isn't real, ask yourself why you know better than scie…",473283 +"@OregonWild I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/nZCxr5XRhU ?",10468 +"RT @NWOinPanicMode: Great seeing so many people awake to the con artist Al Gore. +Sequel bombs. Should of blamed climate change on Russi…",965411 +This date in #climate: 2013 - #Pakistan launched its 1st national climate change policy. https://t.co/ayqwsjTgSu,733655 +"SomeCallMeLaz: RT WeNeedEU: #Brexit is tied up with Trump, racism, tax avoidance, climate change denial, the works. It is just one front …",383468 +Trump’s innovative solution to climate change: Don’t mention climate change https://t.co/jytaXF5ebz https://t.co/6LKdsrQFcL,796762 +RT @emilynussbaum: “Baby It’s Cold Outside” is a deeply offensive song about climate change denialism.,184596 +"RT @JD_Hutton: If a PM says he believes in climate change but approves new oil pipelines, does he actually believe in climate change? + +#kin…",327092 +RT @rgatess: We are seeing similar anomalies from the oceans to the stratosphere. Rapid climate change underway as net system e…,158124 +RT @guardian: Rio's famous beaches take battering as scientists issue climate change warning https://t.co/XG5tVwjkcl,998269 +Oh global warming does not exist at ALL https://t.co/MT3ok1F9CM,332356 +RT #Could Rudolph and friends affect climate change? Reindeer grazing increases summer albedo by reducing shrub ab… https://t.co/ojMRMUSh2d,495084 +RT @YEARSofLIVING: Each problem of climate change has a solution that makes society stronger. #ClimateofHope https://t.co/hazsA5lnfR https:…,610404 +RT @DevonESawa: Just dawned on me: Trump thinks global warming is a hoax created by china. No seriously.,478417 +@Atten_Deficit @jenkiesss_ global warming real,599073 +Tennessee Wildfire is ‘Unlike Anything We’ve Ever Seen’ https://t.co/v0JToHqSV6 … via @ClimateCentral Stop climate change! #GPUSA,476278 +"RT @NatGeoPhotos: Though visually stunning, this colorful view of a snow cave sheds light on our warming planet:…",433925 +RT @MotherJones: Every insane thing Donald Trump has said about global warming https://t.co/Ok7MhCCzj4 https://t.co/qCyR49JPb3,184487 +RT @fancynancysays: @ABC @NHC_Atlantic You were saying about climate change?,899620 +Trump administration begins altering EPA climate change websites https://t.co/XUA4bAVIAl,237593 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,637818 +Glaciers for global warming https://t.co/oZH6LGNse5,487541 +Trump targets Obama’s global warming emissions rule for cars https://t.co/9F7MxyO03p,323186 +ur mcm thinks climate change is a hoax,767342 +Canada's hope to get climate change into NAFTA could prove difficult https://t.co/0Syrus5W33 via @NatObserver,897943 +RT @Carbongate: Sturgeon derides Trump over climate change.. yet takes six helicopter rides in a day https://t.co/qfGUKMBR5j,893076 +"RT @docrussjackson: Wars, climate change, gross inequality, corrupt corporations & bankers & not a single western leader will criticise…",227111 +"RT @Harlina__: @cafedotcom @tedcruz the whole POTUS is a joke . Declining education , climate change and congratulating people for being si…",484479 +RT @jed_heath: Discussing climate change. https://t.co/8x2umKZcmg,142536 +nytimes: Opinion: The intensity of this summer’s forest fires in Europe is a harbinger of what climate change will… https://t.co/2BoflibjNg,511856 +No longer can the US claim that climate change is not real. - Jean Su of @CenterForBioDiv at the presscon on… https://t.co/41ybYNxCho,486621 +RT @fightdenial: Any politician who refuses to acknowledge the reality of climate change & refuses to act is putting their constitue…,793118 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,350625 +RT @TIMEPolitics: Republican congressman says God will 'take care of' climate change https://t.co/NyPvaAqIBJ via @mahitagajanan,875997 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,520873 +The Energy 202: We asked Texas Republicans about Harvey and climate change. Only one answered. https://t.co/oHNlzsf2IA,980231 +"RT @BernieSanders: Trump's belief that climate change is a 'hoax” isn't just embarrassingly stupid, it’s a threat to our entire planet. htt…",486454 +"RT @bobkopp: Unchecked, climate change will cost US economy equivalent of hundreds of billions annually by end of the century.…",790783 +RT @BernieSanders: Believing in climate change is not optional at this point. Neither is taking action to save the planet.,119066 +"RT @Labour4Ken: #FactOfTheDay +Ken pioneered action on climate change +His ambitious Climate Action Plan inspired global mayors to act https:…",795590 +RT @World_Wildlife: Protecting our forests is key to curbing climate change. Shop smart: https://t.co/rOJ1XgIa6v #COP22…,703949 +"Don't let Trump censor fact about climate change⚡️ “Badlands National Park defies Trump’s gag order, gets censored” + +https://t.co/0gwQ8MAITv",226753 +RT @shutupstephan: It sucks that global warming feels so good outside. #guilty,497219 +"Donald Trump doesn't seem to understand climate change, so we thought we'd help him out. https://t.co/Ern4VoBcFA",133965 +"RT @StFrexit: 'Hey White people, make sure you save the planet from global warming so you can get stabbed with a knife in 2050's…",108181 +@Atrectus @CNN On the very beginning. His comments are disgusting for a president. He even thinks global warming is a false Chinese's idea,574156 +@amcp Briefings - James Comey crid:45j6h3 ... decided to take direct action. The women's ... they had a climate change rush on Polomat ...,510374 +RT @WorldfNature: Film examines climate change as national security risk - The Columbus Dispatch https://t.co/Z3YBwDyiUG https://t.co/hvMAY…,547861 +"RT @winter_frost1: ë°”ì´ëŸ¬ìФ Surviving a virus +ì´ìƒ기후 Survival during climate change +ì¸ì²´ Survival in body +갯벌 Survival in tidal flat +심해 Survival in…",154116 +75 degrees in StL on last day in October. I am all for this global warming hoax!,445954 +"RT @AlexSteffen: Given what we know about climate change, plummeting clean energy prices+economy of the future, we shouldn't build another…",997533 +RT @RJSzczerba: Clever concept for pool in Mumbai that looks like Manhattan flooded to raise awareness of climate change. https://t.co/MbjZ…,624946 +"RT @NateSilver538: Americans' concern about global wamring, and belief in global warming, is at record highs. https://t.co/RlNzK6X3eN",463357 +"RT @joshscacco: Science can tell us the best viewing spots for the #SolarEclipse2017. Science also has answers on vaccines, climate change,…",912071 +RT @baublecrow: the night king just wants to end global warming you guys,789575 +RT @dmason8652: @WayneDupreeShow Guy who founded the weather channel says global warming is a hoax based on faked data. 'Listen Up'…,733504 +"People, if you want to be in the know about climate change, here ya go. Amazing journalists on this list. Thanks… https://t.co/vDxbD42fii",921494 +123 million Americans live in coastal counties' --> at risk from sea level rise from human-caused #climate change https://t.co/MHvzy2Y4tU,182771 +"Disgusted with NY Times. 'Debating' climate change? Then let's debate if the world is round. +https://t.co/40RfGCtvY4",577188 +RT @dustopian: You know the reason the snowstorm isn't as bad as predicted will be global warming.,77565 +A strong advocate @jonkerbl for climate change trying to influence @JoshFrydenberg - engage with local MPs,13576 +@sjhamp12 'global warming isn't real',850213 +• Inhabitat: Watch Leonardo DiCaprio's riveting new climate change documentary 'Before The… https://t.co/XuH1Hw8rMM,233403 +RT @thehill: White House attacks NY Times for corrected story on climate change report https://t.co/1QD5YSacxc https://t.co/saCaTyZpwq,158376 +RT @TreeHugger: Children win right to sue US government on climate change inaction https://t.co/ov6p4rMw7r https://t.co/GmSRBSqYlC,42715 +RT @EcoInternet3: Exxon ordered to hand over Rex Tillerson's secret emails to #climate change prosecutors: Independent https://t.co/v12o5ty…,125277 +@TheFacelessSpin @fahimnawroz But but Tim Flannery said our dams would never be full again. Evidence to throw all that climate change in bin,794752 +RT @jongaunt: Trump has our generation of snowflakes in a tizzy because he doesn’t believe in the MYTH of climate change - Pod 3 - https://…,738883 +"RT @Forthleft2: The outages in SA were down to extraordinarily vicious storms which are part&parcel of anthropogenic climate change. +So: mo…",646317 +"RT @ilsanglow: @soohaotwt judi is literally the hottest person to exist, the cause of global warming, the reason soohao exist",908688 +"RT @rudahangarwa: Soil, Land & Water for climate change adaptation and mitigation. +https://t.co/5GK66LkuNG by @FAOnews https://t.co/MLdOPMZ…",767328 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",771691 +UCSD scientists worry Trump could suppress climate change data https://t.co/OyQPrH1ua7,259880 +RT @LockedGateLancs: British scientists face a ‘huge hit’ if the US cuts climate change research https://t.co/k0IexJgXGD #WeSaidNO #frackin…,825122 +China sees a diplomatic opportunity in Donald Trump's opposition to steps to limit climate change. Here's why: https://t.co/pOrlvP5jhD,884467 +And they wonder why we don't trust them....Federal scientist cooked climate change books ahead of Obama presentation https://t.co/VMANvraVKC,787682 +Russian President Vladimir Putin says climate change good for economy https://t.co/uIh2gxH2Ol,609778 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,737682 +"RT @Dory: me: Leo come over +Leo: i can't im busy +me: my friend said global warming isn't real +Leo: https://t.co/uwSmoQsRG0",908388 +@CBSSacramento Gak! Just look around; climate change is real and we all helped.,424425 +@EricIdle So you determine who is right or wrong? Man made climate change doesn't exist... climate does change though (re: weather),323128 +RT @guardian: Farmers in Sudan battle climate change and hunger as desert creeps closer https://t.co/qkIGz896EP,628679 +To deal with climate change we need a new financial system #EmoryEE2016 https://t.co/AASFboqkSd,678862 +"A storm in March does not prove 'climate change' here in NY it happens alot, I remember the big Ice storm we had in April of '91 #thatsNY",838507 +RT @jamisonfoser: There’s a simple explanation for this: Donald Trump knows climate change is real but does not give a shit about you. http…,205713 +"@vicenews there is no climate change per sec Pruitt, throw him in!",681150 +RT @EH_4_ALL: The burden of climate change on children is worse because their bodies are still developing #ClimateChangesHealth,7572 +Definitely looks like there's room to apply to work on cultural #heritage and climate change #MerciMacron! https://t.co/ROVvBKelNe,941573 +"RT @nontolerantman: >Have fewer children to fight climate change +>'Oh no! we need migrants now, no one could have predicted this!' +>Han…",274509 +"@duckyack @100PercFEDUP End of global warming, shrinking sea level within one year +Incredible Invention: costs only… https://t.co/Vmwszd9DTO",684872 +RT @Energydesk: Siberia's growing 'doorway to hell' offers clues on climate change https://t.co/B2f5e0HrEw https://t.co/lVR5YIWFAw,370024 +RT @shazbkhanzdaGEO: Smog is dangerous.Reason is pollution.we need to act and act now.climate change is the biggest threat to the world htt…,291351 +An Inconvenient Sequel: Truth to Power review – another climate change lesson from Al Gore https://t.co/Owo2b3XVQ4 https://t.co/CMwaLCsKBv,155280 +"RT @PlanetNewsSpace: #Science - EPA boss: Carbon dioxide isn't cause of global warming, The incoming head of ... https://t.co/IdoMvUAk62 ht…",493518 +"Everyone who denies climate change should go swim in a reef while they still can, and see this magical world disapp… https://t.co/7yY5UKFnXK",955736 +@joerogan @YouTube I just don't see how government action can put a dent on climate change. We are not that signifi… https://t.co/OkZZWPjmSG,475150 +New administration's stance on climate change caused CDC to cancel conference https://t.co/sKMNJc8V7q,814784 +RT @businessinsider: EPA chief claims carbon dioxide is not a primary contributor to climate change https://t.co/78VBcvJYky https://t.co/Uo…,934550 +"RT @climatehawk1: Nearly half of Trump voters believe #climate change happening, support climate action - @YaleE360… ",236229 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,868776 +"A cool breeze on a March morning in #Mumbai, isn't good. Very bsd sign of global warming. #ElNino @RidlrMUM",724046 +RT @SkyNews: Record-breaking temperatures driven by global warming have bleached two-thirds of the Great Barrier Reef https://t.co/b8K0sTv9…,948949 +RT @CoralCoE: 'We’ve got a closing window of opportunity to deal with climate change” @ProfTerryHughes join's elite #Nature10…,383876 +"RT @KFILE: In interviews, Trump's EPA pick questioned climate change, said Obama EPA rules would be undone https://t.co/4FDGKH30sx",131974 +"@sandyca500 he also stopped Iran's nuclear enrichment program,a climate change deal was reached under him, America's reputation was restored",986064 +"RT @djrothkopf: Don't care about human rights, press freedom, democracy, alliances, global warming, diplomacy, development..it's a… ",428108 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,926841 +RT @Igbtxmen: how exactly would it sink anyways? where are the icebergs to sink it? global warming snatched all of them https://t.co/IXPWRP…,494582 +"RT @CharlesMBlow: But, but, but climate change is debatable. �� We are going to be standing in 2 feet of water in Manhattan and they s…",781163 +"RT @nytimes: On Trump's 100th day in office, thousands in Washington protested the administration's climate change deniers https://t.co/OBx…",92910 +"@johncardillo @KurtSchlichter @Scaramucci What about tomorrow, when he joins them on gun control and global warming… https://t.co/YJ7uAlqhN0",486 +@PaulCobb_OCCIAR does your kid get paid to model climate change? I want in.,491939 +RT @mashable: Stunning photos show how climate change affects our own backyards https://t.co/mjLomQzbOT https://t.co/ttyJcLu149,53227 +RT @wef: 9 things you absolutely have to know about global warming https://t.co/YIk2wbbi3m #EarthDay https://t.co/I9rqm5gOsi,800250 +RT @EricHolthaus: More than 90% of excess heat from global warming is stored in the oceans. An add'l 100+ zetajoules of energy have b…,253165 +"@MarietjeSchaake Min 40% of funding should go to renewable energy,energy efficiency &climate change mitigation… https://t.co/vRT5xCq4Rw",31100 +"Everyone should take the time to watch @NatGeo climate change docufilm with Leonardo DiCaprio, time to be about it and stop talking about it",457211 +@Pontifex gave @realDonaldTrump a book about climate change. Pope Francis is officially my favorite person on the planet,164443 +Russian President Vladimir Putin says climate change good for economy https://t.co/Qmi2hJmEk8,646128 +"@kurteichenwald If someone could convince him of climate change, enough of the country would believe it for it to matter.",26297 +RT @ClimateReality: The conversations we’re having about climate change are more important than ever. https://t.co/C0fW10XAD5,641969 +RT @Leek3seventeen: 2017... day 193 of 365 ... a state sized chuck of ice broke off a solid continent & ppl still deny global warming.…,593800 +Polar bear numbers to plummet by a third because of global warming https://t.co/TmVpLRjGOK,256579 +RT @Daniel63556494: @MrBravosBioClas Humans are a big cause of global warming 82% of human C02 emissions are from burning fossil fuel #MrBr…,805014 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,418189 +US diplomat in China quits 'over Trump climate change policy' https://t.co/6kHj1fp6ao https://t.co/7aPGssWAkj,640885 +"RT @washingtonpost: We only have a 5 percent chance of avoiding 'dangerous' global warming, a study finds https://t.co/2jvJX5T5ZI",497723 +@BreakfastNT @GerHerbert1 good old pretend global warming. All a big fad to generate more tax for the government,627483 +RT @AcostaAdella: Do you believe in global warming?,654700 +"RT @fml: Today, my country elected a man who thinks global warming is a hoax. FML",237079 +RT @EnvDefenseFund: The coming battle between the Trump team and economists over the true cost of climate change. #ProtectAndDefend https:/…,432087 +"RT @UN: Transport is part of climate change problem, #SustainableTransport is part of solution! Find out how in this new…",572031 +RT @WorldResources: Trump's #climate policies are 'wrongheaded'- even the Pentagon has called climate change a 'threat multiplier'…,962862 +Pakistan ratifies Paris Agreement to fight global warming https://t.co/vX3Tk20ZoZ https://t.co/vdDA5bJ1ht,73015 +We have BIG goals for 2017 to prevent climate change in Waltham. Want to find out more? Tweet us or email WalthamMO… https://t.co/Jv7l45jxWt,308754 +RT @THECAROLDANVERS: liberals are so annoying... have fun working to fight climate change w/ a person who believes climate change is a m…,686614 +"RT @UnvirtuousAbbey: For those who think that the biggest problems we face aren't climate change, income inequality, or health care, but im…",620529 +Earth hour tonight from 8.30-9.30.. Turn all your lights out to show support for climate change ��,342626 +@schestowitz And it seems like you're saying there was no climate change before the scientific method was described so....,875135 +RT @climatehawk1: How do we know humans are causing #climate change? Nine lines of evidence | @EnvDefenseFund https://t.co/e7nyhXgMza…,135651 +RT @latimes: UCSD scientists worry Trump could supress climate change data https://t.co/vhTEZbadUh https://t.co/0I71V4BaPl,566883 +@realDonaldTrump @foxandfriends Seriously WTF is your mental disorder? You are an enemy of climate change and the planet. You are sick.,708737 +"RT @ECOWARRIORSS: In Greenland, a once doubtful scientist witnesses climate change's troubling toll https://t.co/tX897022WE",771565 +"RT @taebeingtae: i still can't believe this gif of taehyung saved the human race, stopped global warming and watered every plant on… ",146085 +US SENT $221M TO PALESTINIANS IN OBAMA'S LAST HOURS-including $4M for climate change programs and $1.25M for U.N. https://t.co/Gt02OCVafB,713094 +"The coastline, for when we cross it, it is an early warning sign that climate change-fuelled flooding will kill us… https://t.co/M0JO1aafIW",540959 +Agriculture victim of and solution to climate change - https://t.co/eCXURF620v https://t.co/lt5cOBDIwV,824998 +"RT @JamesSurowiecki: Bizarrely, even Kim Jong-Un is more realistic about climate change than Donald Trump is. https://t.co/AVkQwiy979",387636 +"Left: climate change will kill us +Right: climate change will not kill us +Centrists: AI will kill us",6977 +the earth is flat global warming is fake ghandi is still alive keanu reaves is immortal,581176 +"RT @azprogress: Anyone who denies climate change, is not fit to hold public office. #EarthDay",272574 +Also climate change and this city drowning,312899 +"RT @GeorgeTakei: Trump's M.O. is to raise hopes to distract, then do the opposite. Like meet with Al Gore, then appoint a climate change de…",405772 +Absolute moron - #EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/Ooh2UyUZkE,423226 +RT @Pat_Riot_21: @TrumpkinT @ProducerKen @ChelseaClinton I gotta pee ... can't decide if it's because of global warming or the Russians,15617 +Is it really global warming or climate change? Antarctica has been a 'hot spot' lately... #Antarctica… https://t.co/gR5xzqIJHD,73801 +"Much caused by a climate changing, which it is, whether or not you believe global warming. +Only fools do not listen. +https://t.co/zxovz4NvbJ",581076 +RT @DHeber: New study confirms NOAA finding of faster global warming | John Abraham https://t.co/oJ8ZEecc2U,763519 +RT @risj_oxford: ‘Digital media are shaking up reporting on climate change’. James Painter on his new RISJ book: https://t.co/LpcypTnoqo @T…,916909 +Yeah larries are also the reason for global warming... what's new https://t.co/QCLPDry5HG,646077 +RT @barbosaandres: Humans causing climate change 170 times faster than natural causes https://t.co/age7bxUxct,551261 +RT @business: The U.S. has a lot to lose by not leading on climate change https://t.co/ismxnHhzpI https://t.co/0AMv4TtALJ,182472 +RT @ramadeyrao: Climate change-@HillaryClinton Taking on the threat of climate change and making America the world’s clean energy s…,180047 +"In shift, Trump says humans may be causing global warming... #News #Seattle https://t.co/3b7pqkfqAS",986479 +"RT @dangillmor: Why cable 'news' sucks, Part 35,754: who's gets to discuss climate change on TV? Not scientists. https://t.co/sV0YtnimA7 /b…",238659 +RT @VICE: This guy is walking across America barefoot to protest climate change https://t.co/eXVuKBMtfy,76266 +"RT @thenoahkinsey: First Donald Trump chose a climate change denier for EPA, then a public school hater for Dept of Ed. + +What next- Voldemo…",98479 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,177204 +RT @PopSci: How algae could make global warming worse https://t.co/CrMjm8TaEb https://t.co/bhW9IRGagH,298152 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,328729 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,297260 +"RT @hurricanetrack: Shortly after Trump signs order to unravel climate change regs, I'd like it if WH staffers turn thermostat way up - jus…",567264 +RT @erunyueng: Still cant believe America elected someone who said global warming was a hoax.,329437 +RT @businessinsider: A new study just blew a hole in one of the strongest arguments against global warming https://t.co/Aexecc5ruf,985621 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,789426 +RT @cnni: The kids suing Donald Trump over inaction on global warming are marching to the White House https://t.co/XH83XpBJdX https://t.co/…,246326 +"RT @guardianeco: New coalmines will worsen poverty and escalate climate change, report finds https://t.co/4EHmQn1Z3t",933736 +Clown preaches fear from the altar of man-made global warming: https://t.co/JhoNOLPXKg #climate,378617 +RT @gelliottmorris: The earth is *literally* melting and we have a President-elect that claims climate change is a Chinese hoax. That’s…,254499 +RT @kwilli1046: Guy who founded the weather channel says global warming is a hoax based on faked data. 'Listen Up' - Liberals https://t.c…,174922 +Pleistocene Park Russian scientists fight climate change with woolly mammoths https://t.co/FCSSvEIeYH and then...... https://t.co/4tUKSgACFy,312720 +RT @tjfrancisco74: 25 senior military/national security experts: climate change presents a significant risk to U.S. national security https…,568863 +Overfishing could be the next problem for climate change https://t.co/FibMSv5D0P https://t.co/70waVsLZ1b,903966 +RT @AlexCKaufman: A majority of Americans we polled disagree with the White House's hardline stances on climate change. My story:…,730989 +Trump admits 'some connectivity' between climate change and human activity - CNN https://t.co/x4fRHCezws,191303 +Venice could be underwater by the end of the century - thanks to global warming https://t.co/RfCstyItiA,261053 +"HuffPo's rendering of Dan Rather's climate change denier monument a great burial marker for journalism - +https://t.co/MTwXBKAXo3",179969 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,411209 +"RT @NationofChange: New study confirms findings of faster global warming, despite what the #GOP claims https://t.co/Te1HjrXSjr #ThursdayTho…",293338 +RT @YaleE360: NASA’s world-renowned research into climate change will be eliminated under a Trump administration.…,224041 +Green News: How a rapper is tackling climate change https://t.co/iiGvnoM6pz,627912 +"Seeing film #Lincoln sad that #Republican pty that abolished slavery now threatens earth w/arms race, climate change denial & lunatic leader",763334 +RT @jonny290: Reminder that the main anti-climate change argument has shifted from 'It's not real' to 'We didn't cause it so we d…,769155 +RT @climatehawk1: .@BillMcKibben talks #climate change battle on 'Real Time' - @RollingStone https://t.co/yXJMVR5SLp #globalwarming…,93337 +climate change is real in cannes https://t.co/BNNdg9SVr5,802385 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/6yxcm94Xsk via @Reuters",42183 +RT @thinkprogress: Republican remains a town hall no-show as climate change claims spotlight in Virginia https://t.co/jT44WfINxP https://t.…,407596 +"RT @nay3ni: As climate change heats up, #Arctic residents struggle to keep their homes #Arctic #Arctic https://t.co/DFhKKHHrLp",368054 +"RT @tomjwebb: Can we now stop asking public figures if they 'believe in' climate change, and instead ask them whether they 'under… ",618952 +"RT @goddersbloom: The irrepressible Mark Carney has set up a Stability Board to harass businesses on 'plans for climate change' +FOR GOD'S…",648741 +"@Litsaki97 Lie: it's just bubbles; think Disney +Truth: global warming",877147 +"And you're one of the idiots as there's no such thing as global warming !!! Please resign Trump, you stink !!! https://t.co/VC0nRl6Gv6",996306 +RT @BBCEarth: Images of polar bears can only go so far to instil an understanding of the consequences of climate change (Via @qz)…,154289 +"RT @fiscal_penalty: Despite the global warming, Alaska has had very little, if any, warming since 1977 (except Barrow), as shown below: htt…",333682 +"RT @CountessMo: 'We’ve known...climate change was a threat since...'88, & the US has done almost nothing to stop it. Today it might…",746454 +RT @fuckincody: im just not alright with a president not believing in climate change and his vp believing electroshock therapy will 'cure'…,504683 +RT @velvet_rope: Ciara did not invent physics eleven years ago just for y'all to come and deny climate change https://t.co/XX1R089RrA,455348 +WHEN will the christians realise this is global warming not jesus,744762 +Donald Trump says global warming is a Chinese hoax. China disagrees. https://t.co/ozJkxQlswQ via @MotherJones,153848 +RT @ianbremmer: You know who doesn’t care about climate change? Everybody. #GetReady https://t.co/3CgxfwUGPp,429721 +RT @dwtitley: Don't suffer from a failure of imagination. Noah Diffenbaugh a leader in attributing wx events to climate change. https://t.c…,460217 +RT @SarahBaska: when ur at a party and u remember ur president doesn't believe in climate change https://t.co/N1m9PCfiEY,622753 +RT @postgreen: The coming battle between economists and the Trump team over the true cost of climate change https://t.co/PgmOwuVDbK,925836 +RT @seaintlsilvia: It's official: Americans voted @JimInhofe as the nation's worst climate change denier. RT to congratulate our #ChampionD…,140313 +"RT @RealJamesWoods: '...an alternative to cremation, which critics say causes pollution and climate change.' #ClimateNumbskulls https://t.c…",498154 +Very interesting on communicating climate change. Via @dbcuervo 'Global warming sounds scarier than climate change' https://t.co/da5O80zatr,848278 +"RT @SaysHummingbird: Trump be like...climate change is still a hoax. + +(via @trumpenings) https://t.co/7sWehgTbjL",694120 +"RT @BloombergNEF: Asset manager asks for transparency on climate change impact on business, as it is a significant risk to many https://t.c…",614569 +Drinking ICED FUCKIN COFFEE lovin life shouts out to global warming,511015 +"RT @NBCAsianAmerica: For these Pacific Islander women, global warming is an immediate threat. https://t.co/pGzsjAlHtd",56117 +"RT @americanzionism: The person who wrote this article is a member of JVP, a hateful org that blames Jews for global warming, & is try t…",97915 +Why Severe Turbulence On Flights Could Be Much Worse In The Future https://t.co/JZhTDc45Rx The practical impacts of climate change,684968 +"@malmahroof37 #ScottPruitt claims CO2 is not a primary contributor to global warming? Which is worse: is Pruitt a liar, an idiot, or joker?��",290122 +"RT @UNDPasiapac: Nepal & @UNDP begin work on new climate change adaptation proposal to reach 100,000 vulnerable ppl…",896238 +RT @megan_styleGF: Could reporters stop asking if political leaders 'believe' in climate change and start asking if they understand it inst…,105501 +The most damaging part of Trump’s climate change order is the message it sends https://t.co/J50mZhmvf8 via @voxdotcom,155182 +"RT @simoxenham: I was certain this award would go to climate change, but this has to be the scariest graph of 2016 via… ",243396 +@FoxNews @EPA @EPAScottPruitt he is smarter than the scientists that have studied global warming! Hey look it is the earliest spring ever!,425069 +RT @motherboard: The hits keep coming: Trump's choice for Secretary of the Interior thinks climate change is 'creative writing'…,3804 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,92161 +Discussion about global warming: story of Tangier Island is a reflection of the decisions we will be making over and over again. #METal,360732 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,850932 +China warns Trump against abandoning climate change deal - https://t.co/1g91ZyA9TR,20149 +"RT @SierraClub: The EPA deleted any mention of climate change from its website, reflecting Trump’s “priorities.' https://t.co/8AWJ71n51s #…",695895 +"RT @Tombx7M: Political correctness could use a little climate change. +#wakeupAmerica #tcot #ccot #morningjoe https://t.co/30fBcx0Tqp",972635 +"RT @WalshFreedom: Obama took a private jet to Milan, then drove in a 14 car motorcade to give a speech on climate change. + +Ok. https://t.co…",986282 +RT @renyuwe14: You're so 🔥 you must've started global warming. 🙊 https://t.co/MShno2y1js,568549 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,434652 +RT @CarolineLucas: The moment the Government accused me of 'lacking humanity' for mentioning climate change policy in relation to Hurr…,507521 +RT @bengoldacre: Green politicians' weird anti science thing really is tiresome and unhelpful esp given their climate change desires https:…,263473 +RT @bengoertzel: Clinton functionaries unethically tried to suppress science skeptical of climate change orthodoxy https://t.co/KWtY9v0Enu…,267646 +RT @awhtiman: LL Bean making the most of climate change https://t.co/Epxoz2zx3b,149939 +"RT @Bergg69: Exxon knew of climate change in 1981 & still funded deniers! +https://t.co/YaGNdjvYuz +#cdnpoli #onpoli #abpoli… ",274077 +RT @worldnetdaily: 'The 'climate change' mantra has always been about promoting two things – global governance unaccountable to the... http…,776304 +RT @AndyBengt: Vi ska inte glömma vem som är vice president. Mike Pence anser att homosexualitet är en sjukdom och att 'global warming is a…,370879 +@RWPUSA And climate change is a bigger threat than Russia.,404861 +RT @Recode: Elon Musk says he talked to Trump about the travel ban and climate change https://t.co/YsLRwWIGon via @Recode https://t.co/NVcV…,204227 +"RT @WhiteHouse: “Without bolder action, our children won’t have time to debate...climate change; they’ll be busy dealing with its e… ",819486 +RT @JuddLegum: Secretary Zinke told 5 lies and 1 sad truth about climate change in 3 minutes https://t.co/18QPNGtIdH https://t.co/h2qZvsMEjr,142966 +RT @SenSchumer: Tillerson won't lift a finger on climate change & won't rule out Muslim ban. I won't vote for him. https://t.co/GwBl1Aps7M,818701 +RT @annemariayritys: 'Paris Agreement 2015/Art.2: Aims to strengthen the global threat of climate change.' https://t.co/nb9jer5Vrs…,274044 +RT @ClimateChangRR: Look at all the climate change deniers vying for jobs in the Trump administration https://t.co/F0XEEEFgbS https://t.co/…,665722 +@washingtonpost Because Rick Perry doesn't actually KNOW what a human being is or what climate change is or that th… https://t.co/kyXRdNJiN2,421305 +EPA head stacks agency with climate change skeptics: https://t.co/gw2sdOspBy https://t.co/UAh9518FT3,704236 +"RT @climatestate: Christians, as stewards of the Earth, have a moral obligation to do something about climate change and the threat... http…",349774 +RT @jnthnwll: you could've hosted a cookout in Antarctica today but your President thinks global warming is a joke,635513 +"RT @Valeria_DelCC: Please watch the documentary, Before The Flood. Whether you 'believe' in climate change or not, it's a wonderful and inf…",652424 +And I'm feeling like total shit sitting here cz i just started the lesson on global warming. And how each one's bit helps. #FuckTheSystem,146233 +World leaders duped by manipulated global warming data - Daily Mail - https://t.co/SaYiwf7H1p https://t.co/TxhrwulAhL,676332 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,696485 +"Nevermind, actually. Too many other countries have been hit harder with more drastic consequences. It's climate change y'all",474898 +@7Kiwi @GeorgeMonbiot Sounds like climate change to me,939207 +RT @csmonitor: Where did the myth of a climate change 'hiatus' come from? https://t.co/4ZshDk6izW https://t.co/ykfLDuA7JF,135234 +RT @whteverrachwant: how elected officials try to tell us global warming doesn't exist when the weather jumps from fall to summer lol,4494 +19 House #Republicans call on their party to do something about #climate change https://t.co/iHwHrot3Vn #climateresolution #climatedenial,678001 +"@EUflagmafia Rees-Mogg is climate change denier with fracking links,add Leadsom,Johnson,Farage,Murdoch,Dacre,Desmond etc,rush 2 tear up regs",505970 +RT @GeorgiaLogCabin: Nasty global warming advocates https://t.co/bnR0TFdb39 #Economy #National,656254 +RT @SenSanders: The Dakota Access Pipeline would be a huge blow to our fight against climate change. #NoDAPL https://t.co/47m6yUu4m5,552023 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,561933 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",885448 +RT @billmckibben: Reading climate change in the mud on the bottom of Walden Pond--thanks to @curtstager for a fine piece of science https:/…,284977 +RT @ClimateReality: Donald Trump says “nobody really knows” if climate change is real. Scientists beg to differ. https://t.co/SQvtnhVRLd,455946 +RT @wef: Can blockchain help us to solve climate change? https://t.co/ZZQrQC8cxt https://t.co/QFSE02TxJ1,891808 +#triggeredin4words climate change liberal fantasy,349787 +@obyezeks Effect of climate change is real for the region. The region has reportedly attained never before measured… https://t.co/rwgdEC7ZHY,598581 +RT @YahooNews: Bad news on climate change: Antarctica sets new record high temperature https://t.co/yrmWXgAKkN https://t.co/gjiUbnatRJ,327527 +RT @elisamich0422: .#Trump just appointed a 'climate change' skeptic. Thank goodness! Another one who attended 7th grade science & lea…,631112 +"RT @sciam: A century of global warming, in just 35 seconds https://t.co/ry7vsXAqQo https://t.co/52DRygYdAe",780626 +RT @whiteyspeak: I believe in climate change however I question if humans are causing the warming. Is that allowed comrade? https://t.co/Zj…,617439 +RT @mitchellvii: Almost tempted to watch CNN tonight just to watch them lose their minds over fact Trump just nominated a climate change sk…,778454 +"It is way to hot today, that doesn't mean man made global warming is going to kill us, it just means that I live in a state with hot weather",411141 +"We can fix climate change, but only if we refuse to abandon hope | Zoe Williams https://t.co/CynqOK8wMD",694508 +Before the Flood--Leonardo DiCaprio speaks to scientists & world leaders about climate change https://t.co/x6Hy0p4gJf #climatechange,451340 +RT @SavageJoeBiden: Me in 20 years because the Trump administration is ignoring global warming https://t.co/e0hdxnsDnP,200823 +"RT @miel: one of the BIGGEST contributors to global warming is animal agriculture, specifically cattle. you can help by reducing beef & dai…",252827 +RT @TheDailyClimate: A massive Siberian blaze is an example of how climate change has impacted the Northern Hemisphere. @EcoWatch https://t…,997245 +"RT @piersmorgan: FULL INTERVIEW: +Prof Stephen Hawking on Trump, climate change, feminism, Brexit, robots, space travel & Marilyn. +https://…",593241 +Trump really doesn't want to face these 21 kids on climate change https://t.co/Cp6v3czbYv via #enews24ghanta https://t.co/aGkZ85359L,150780 +RT @ClimateHour: California governor tells climate change deniers to wake up http://t.co/LriboR9PpA #ClimateHour http://t.co/2pch8iBC4W,701541 +RT @Tom_Francois: LIBERALS are in panic mode! Obama is freaking out! NASA proves global warming is NOT REAL! https://t.co/Yg07K3WdUc,342006 +"RT @postgreen: For the first time on record, human-caused climate change has rerouted an entire river https://t.co/Ct4aWdBHYM https://t.co/…",182752 +RT @BBAnimals: The Great Barrier Reef was pronounced dead today......... Do you guys care about climate change yet https://t.co/PMXt9Ly6XU,597528 +"RT @hrtablaze: Potus destroys fake global warming advocates . �� + +Troll level 5000 + +#EarthDay https://t.co/8Ts1Esh4J5",979212 +To deal with climate change we need a new financial system https://t.co/hKF4SFmPFB,730965 +Bill Gates and investors worth $170 billion are launching a fund to fight climate change through energy innovation https://t.co/YDHh0FJ18c,705732 +"@SenatorWicker If you can #FindYourPark after a few years of legislated climate change denial under tRump, you let… https://t.co/rlIYLIMlRi",852885 +"RT @CECHR_UoD: New study confirms NOAA finding of faster global warming +https://t.co/HTEvK0MBTy +#climatechange https://t.co/SzM7uroBdD",567968 +RT @JerryBrownGov: Gutting #CPP is a colossal mistake and defies science itself. Erasing climate change may take place in Donald Trump’s mi…,58159 +do u ever have a good day and then remember that trump is president elect and that climate change is gonna destroy us all because me too,485485 +RT @NASA_Rain: TODAY @ 10am ET on Facebook Live join @NASAEarth as we discuss the impacts of climate change on NYC and Rio…,270505 +RT @TheLastWord: EPA chief Scott Pruitt says carbon dioxide not a 'primary contributor' to global warming https://t.co/XTVsVCePGq https://t…,221568 +RT @WorldResources: People are the primary driver of #climate change and government officials know more than enough to act…,261639 +"Your experience in climate change is how I feel about dog training & behavior. Science denial is real, and exhausti… https://t.co/zddVs9lUoM",493242 +"RT @nytpolitics: The Times reviewed an alarming draft report on climate change by federal scientists, who fear Trump will suppress i…",988625 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",127890 +"RT @nathanTbernard: .@realDonaldTrump Scott Pruitt, climate change denier as the head of the EPA? Not good, Mr. Trump! https://t.co/fTFbNjN…",582873 +RT @sunlorrie: Not if Trump pulls the plug: Enviro Minister McKenna says global movement to fight climate change ‘irresistible’ https://t.c…,596848 +"RT @Meb7777i: Trump and the guy who invented the global warming hoax meet in Mar-a-Lago. Awkward, huh. https://t.co/shPQQECPo7 via @motherj…",653100 +Paul Kelly on climate change. #qanda https://t.co/1Tc3b0dHkW,681574 +RT @giseleofficial: “You may be surprised by the top 100 solutions to reverse global warming. ” https://t.co/YQJ5KXVCLN https://t.co/X2ghnR…,228139 +"Will Trump purge climate change scientists? - CNN - God, I hope #Trump cleans house in every federal agency. https://t.co/hkprgdP0P3",121922 +RT @newsduluth: New study says several northern forest tree species like fir and spruce won't be able to keep up with climate change https:…,941781 +RT @guardianscience: New study confirms NOAA finding of faster global warming | John Abraham https://t.co/0dKQagDWTo,169175 +RT @EJinAction: To slow climate change and speed up environmental justice https://t.co/ZGXbQk74oE via @HuffPostGreen,253167 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",715413 +@RogueNASA @BI_contributors What's that some fake picture showing fake climate change 🤣🤣🤣???,15656 +RT @politicalmath: This is a big problem w/ climate change solutions: the professional class is rich enough to shrug off the costs so…,825086 +@metoffice Surely this is evidence of climate change and not something to celebrate?,207315 +RT @thehill: Rex Tillerson signs declaration recognizing danger of climate change https://t.co/bwCpnug3uA https://t.co/fN7IdIkqqH,823519 +RT @350: 'Just four years left of the 1.5C carbon budget' -- we have to act NOW to prevent catastrophic climate change:…,369940 +RT @EcoInternet3: The continent that #climate change has not forgotten: Stuff https://t.co/4cMxg2zHMG #environment,359076 +"Things that won't be priority under Drumpf presidency: women, blacks, hispanics, lgbtq, climate change, immigrants, etc cuz they're not real",802295 +Bill Gates and investors are launching a fund to fight climate change through energy innovation https://t.co/7TYWX6Kayd via @qz,44252 +RT @datGuyKOFO: Dumping of industrial waste is also killing the earth's rivers & global warming is causing massive environmental di…,230042 +RT @peter1fahy: Globalisation and climate change damaging so many rural economies in Africa driving more to cities and on to Europe,663144 +RT @IslamAndLifeOFC: Prophet Muhammad ﷺ predicted global warming in a single Hadith & he warned us of our duty to strive to preserve the ea…,235342 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",948529 +"RT @ClimateReality: Globally, women are often more vulnerable to the effects of climate change than men https://t.co/TouOd4AGyZ…",649033 +"RT @WestWingReport: President, who also calls climate change a 'hoax,' may not know that Syria's civil war also has roots in just that htt…",622688 +RT @voxdotcom: Latest on the Ezra Klein show: award-winning author @ElizKolbert says we've locked in centuries of climate change…,500735 +RT @Helvetas: We work with local communities to foster biodiversity and mitigate climate change. Learn more:…,295382 +RT @Jackthelad1947: Trump to sack climate change scientists & slash Environmental Protection Agency budgets #auspol #standupforscience htt…,982200 +RT @shuvi: And global warming with Chilli powder https://t.co/yqe9zEqzns,349178 +"RT @NYTScience: Gag order, schmag order: The Badlands National Park Twitter account went rogue with tweets about climate change https://t.c…",395381 +"RT @Sierra_Magazine: It's Monday, and ICYMI, Trump admin tells climate office not to say “climate change,' like weather is Voldemort.…",544107 +RT @ClimateCentral: More and more park rangers are talking about climate change https://t.co/nQZ0mFgvwC https://t.co/K8o6IsyBIe,538241 +RT @Seasaver: If everyone who tweets about halloween tweeted about genuinely terrifying things like climate change & overfishing…,591984 +RT @ClimateChangRR: How does climate change compare to other security risks? https://t.co/uR5eL1FUc7 https://t.co/cZ3vsQzzuN,45181 +RT @SenWarren: Dozens of incredible kids at Clarke Middle School wrote letters to me about climate change – here's my message back…,708342 +"World´s first museum of polar lands opens in France - PREMANON, FRANCE: As global warming reshapes the Arctic a... https://t.co/JB74yLlsNX",950412 +"RT @SierraClub: World has three years left to stop dangerous climate change, warn experts https://t.co/CiixSZzwiT (@guardian) #ActOnClimate",118586 +Adding climate change to the list of things I can't talk about with my sister. #denialist,833509 +"Voter suppression, economic inequality, anti monopoly laws & climate change (break up media consolidation). https://t.co/RAKhpAlZ6w",694880 +"So now you have national agencies, asked to delete tweets about inauguration crowd, climate change etc bcoz it doesn't fit Trump's opinions",501069 +climate change is coming for our necks https://t.co/MWfakbhJTV,537327 +RT @pt: They're really going all in on this global warming hoax. https://t.co/eG9Pbbrgva,736909 +"RT @GlblCtzn: While you weren't looking, President Trump just disbanded a federal panel of climate change experts.…",777838 +There was one big elephant in the room at the UN climate change meeting https://t.co/Ps50kSqDbw https://t.co/9bh1ycJe1E,14607 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,198247 +"RT @hemantmehta: Don't worry, everyone. When President Trump does nothing about climate change, Florida will be the first to go.",532727 +"RT @insideclimate: In Trump, U.S. puts a climate denier in its highest office and all climate change action in limbo: @mlavelles…",971954 +"Trump attaccato per aver detto quello che già molti pensano, ossia che il global warming sia una balla inventata per interessi!",506983 +RT @Independent: On the frontline of climate change in the South Pacific https://t.co/804Nt6Wws3,740265 +RT @EnvDefenseFund: Don't let the Trump administration destroy our environment. Join us to fight climate change today! https://t.co/M2qV0Sf…,628974 +"RT @planetesh: Pls @SenatorCardin and @ChrisVanHollen, vote NO on this,: Senate energy bill would fan the flames of climate change https://…",273978 +RT @NatureClimate: Australia ratifies Paris agreement on climate change https://t.co/wylQ2KaQHh,890446 +@MikeBloomberg @LeoDiCaprio why aren't you vegan? meat industry contributes GREATLY to climate change and deforestation!,555626 +"@jakejakeny But if you like, let's reallocate whatever we're wasting on defense to fight an actual problem like climate change! 2/2",266376 +"RT @kylegriffin1: Pope Francis gave Trump a copy of his encyclical on climate change during their private meeting. +https://t.co/mPaGnL8GSE",555259 +RT @USFreedomArmy: It requires even more lies to support the global warming lie. Enlist in the USFA at https://t.co/oSPeY48nOh. https://t.…,605751 +RT @UberFacts: Should you care about climate change? This nifty flowchart will tell you: https://t.co/C6aQyOPNhX,642647 +Questionnaire to Energy Dept targets climate change conversations & shows a push to commercialize dept lab research: https://t.co/esifOquzwG,8695 +RT @gossipgriII: if global warming doesn't exist then why is club penguin shutting down,288654 +Kerry says he'll continue with anti-global warming efforts https://t.co/m0kpc8Drqv,420856 +"Arrogant Rep. Dave Brat ignites overflow Virginia crowd with climate change denial, ACA repeal talk https://t.co/vCAZBDh3iC",822637 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/ig8sxJGw2f https://t.co/eo85j1GK7j,495623 +RT @LordofWentworth: And played a key role in electing a climate change denier who will fry the planet. Well done Julian. https://t.co/zI2…,444782 +RT @Heritage: Did America’s NOAA publish exaggerated global warming to influence the Paris agreement on climate change? https://t.co/ymBljl…,598329 +RT @milesobrien: Did climate change make recent extreme storms worse? https://t.co/SGNKOHSLkg via @MOBProdScience,581704 +"RT @kylegriffin1: Energy Dept climate office has now banned use of phrases 'climate change,' 'emissions reduction' & 'Paris Agreement' http…",274996 +People really believe that global warming isn't real��,185975 +@Abdulghani72 climate change denial e.g. retaining supreme power over saving our planet. I admire what you guys have done. Admirable.,6500 +"We only have a 5 percent chance of avoiding ‘dangerous’ global warming, a study finds https://t.co/IPRkBn6ryW",4922 +RT @petefrt: Confirmed: NASA invented global warming by tampering raw temperature records. https://t.co/9on0KbSwnI #tcot #p2 https://t.co/6…,314724 +RT @davpope: 'Malcolm once endorsed common sense positions on climate change. Then he became prime minister' #marchforscience…,864689 +"RT @NPR: Some key figures from the Dec. 12, 2015, #ParisAccord, a global agreement on combating climate change. https://t.co/dNjlE9tfB2",890303 +"RT @Ragcha: Joe Heck voted to repeal Obamacare, defund Planned Parenthood and block measures to combat climate change. Wrong fo…",298217 +RT @ClimateHour: California governor tells climate change deniers to wake up http://t.co/LriboR9PpA #ClimateHour http://t.co/2pch8iBC4W,58759 +Why Pruitt's dynamically dumb approach to climate change? Peddles Junk Science pushing Trump’s Anti-Climate Agenda https://t.co/73hjWH7mMs,665061 +"RT @Earthjustice: Even as the Great Barrier Reef weakens from climate change, Australia pursues a climate-polluting coal mine… ",711365 +@cntraveller @Ray_Mears @Baglioni_Hotels Do you have any concerns over global warming?How do you justify your own carbon footpitrint?Flying?,53886 +"@realDonaldTrump fascist, misogynist holocaust & climate change denier liar #notmypresident under criminal investigation constitution2Trump0",639109 +RT @japandamanda: Never would have seen @BadlandsNPS's tweets about climate change if the government hadn't censored them. #thankyoutrump,955199 +Ita-Giwa hails Buhari on climate change agreement https://t.co/rZId8x3jRp,56403 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,986454 +RT @Qafzeh: Most Adaptive Species - Constant climate change may have given Homo sapiens flexibility https://t.co/BNQy8YYnWk https://t.co/hn…,725929 +RT @superdeluxe: Makes sense that an administration full of people who look like they died yesterday doesn't care about climate change,308560 +RT @Newsweek: Rex Tillerson used an alias to discuss climate change at Exxon https://t.co/DRz71A6WvJ https://t.co/h2hBzwCFaa,63259 +RT @factcheckdotorg: EPA's Scott Pruitt said CO2 isn't 'a primary contributor' to global warming. Scientists say it is: https://t.co/2TvR64…,893580 +"RT @saul42: Finally, Paris climate change agreement designed by crooks- #Trump is not buying this crap https://t.co/XVro1ojcAt",910594 +"RT @Oxfam: Last year, 190+ countries signed the #ParisAgreement promising help to those worst hit by climate change. Promises…",635622 +#Russian #President #VladimirPutin says humans not responsible for climate change -... https://t.co/ZWWTM9y6XL https://t.co/HRej7dVsPv,332270 +He makes no sense. A climate change denier for EPA? Not to mention everyone else is a bigot and incompetent! https://t.co/1GeCIETjj2,230361 +RT @ClimateCentral: National Parks are perfect places to talk about climate change and more and more rangers are doing it…,970928 +The nice thing about global warming is we won't ever have to wear coats. (Because we'll be dead.),987005 +"RT @CBSNews: As ice melts and temperatures rise, Alaska is fighting to stave off climate change https://t.co/2ihNIxJQg9 https://t.co/j9ZjPh…",599243 +"@Cuckerella Google 'Paris Agreement'. There is universal agreement that climate change is a real threat. This is not my opinion, it's fact.",415291 +RT @Independent: Donald Trump's views on climate change make him a danger to us all | @CarolineLucas https://t.co/6F0cIH9OSY https://t.co/f…,353090 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",571695 +RT @ClimateCentral: No one gets climate change more than weather presenters. Watch their forecast → https://t.co/s6uVtz6YWz #2020DontBeLate,442038 +"RT @CanadianGreens: Instead of taking action, we're STILL arguing about whether or not climate change is even real. + +the longer we wait…",766968 +RT @fryan: Serious question: What happens to Florida's electoral college votes when global warming puts it under water?,572932 +"climate change may have been accelerated by the terrible whale culls of the 20th century, #OpWhales https://t.co/QCPsO9SSU2",770249 +RT @thehill: Sierra Club calls for investigation of EPA head over climate change comments https://t.co/2du2KJM3IF https://t.co/eb5z7Hx73s,380515 +President Trump disbands federal advisory panel on climate change https://t.co/PwaciSbn4z #ff #tcot,308454 +RT @hinhtam: @valerielynn730 climate change got me fucked up bruh,870967 +"@jrsalzman @claseur Solar cycles are the cause of climate change I believe, human activity not. Global warming is f… https://t.co/uYBlTxIvPg",35630 +A NASA scientist told us why Trump — his new boss — won't stop him from studying climate change - Business Insider https://t.co/CTAOy18zjv,809561 +RT @ChelseaClinton: Hi Karen- thank you for asking. Sadly: ⬆️global warming➡️ ⬆️displaced people➡️ ⬆️risk of child marriage. See…,51932 +"RT @OregonZoo: A polar bear researcher's 60-second explanation of climate change: +#PolarBearWeek https://t.co/ZMTz9DO9Z8",937854 +RT @PetraAu: Amazonians call on leaders to heed link between land rights and climate change https://t.co/bc38tu04NU,845936 +"$8bn pipeline rejected in 2015 for threat to climate change, 0 sustainable benefit to economy; less than 50 permane… https://t.co/Rtc1fE72SL",48136 +RT @THECAROLDANVERS: everything in the world is depressing... my life... climate change... politics... penguin on penguin violence... ci…,337375 +Application of statistical method shows promise mitigating climate change effects on pine https://t.co/pVonoR7jMq #science #health,129260 +"RT @AltNatParkSer: The @USGS has a full list of US agencies running climate change programmes. Could they ALL be wrong, Mr President? http…",651061 +"RT @StillBisexual: 'In other words, bisexual men are like climate change: real but constantly denied.' https://t.co/PQRfuKhaIJ @Fusion @SLA…",949433 +RT @CivilEats: Is modern agriculture cultivating climate change? https://t.co/s7akNTme99,38474 +@CBCNews just like a bunch of lemmings...about to go over the cliff...to propogate the climate change 'lie'.,780400 +RT @NRDC: We are inseparable from the natural world. Help us fight climate change: https://t.co/gvTpolr1W7 #NoPlanetB https://t.co/8qusfFs7…,900148 +"Few things will fight poverty, climate change and food security better than improving India's small farms. One Indi… https://t.co/3yCGXN1Zq3",717361 +اسم المادة information technology for the health professions ' ' ' global warmingالـ ش ك و ؟؟؟,315768 +RT @jswatz: American Meteorological Society writes to EPA head Pruitt that human-caused climate change is 'indisputable':…,1094 +@RickeyLane14 global warming will do it to you,371575 +"Google is being very odd, we know they manipulate search results, but I woke up to a climate change documentary loaded up on YouTube...(1/2)",334703 +RT @kt_money: A petition to help keep climate change denier Ebell away from the EPA. Please sign and share! https://t.co/Y4dcA7hmFe,347301 +"RT @yahya_sarah: Remember, job insecurity, housing unaffordability, pressure, climate change etc impact young people and their health. #qan…",333023 +RT @BelugaSolar: Traditional power generation pollutes the air and is a leading cause of U.S. global warming emissions. Help reduce…,760539 +RT @chrisconsiders: make 2017 the year we fight against climate change. Eat vegetarian one day a week. buy one less pack of water bottles.…,986393 +Read how entrepreneurs in the Philippines are tackling climate change: https://t.co/L5oQyXZyNq #GEW2016 https://t.co/UvfdJTMLFv,113410 +RT @drvox: A rare sight in US politics: someone who understands climate change grilling someone who's trying to BS about it. https://t.co/9…,533841 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,646375 +"#NHL season still going on in mid summer. Predators had better win the Stanley Cup soon, before global warming melts the ice.",208765 +RT @CNN: Kids are taking the feds -- and possibly Trump -- to court over climate change https://t.co/oGw21W7Skw,874552 +"RT @FoxNews: .@MeghanMcCain: 'If you're on the left, climate change is a complete and total religion.' #Outnumbered https://t.co/illicC5dyF",581056 +RT @JonathanCohn: .@BernieSanders calling out media for largely ignoring issues like climate change and our broken health care system.,564133 +pretty sad really how much the earth is being destroyed by humans and climate change #BeforetheFlood,238576 +RT @petras_petras: First good news in 2017- UN declared the Baltic States as Northern European countries. Political climate change! https:/…,771517 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,569298 +RT @middleageriot: The same people who reject climate change think the Flintstones are historically accurate. #TrumpTransition #ScienceMatt…,362439 +RT @NinjaEconomics: A climate change economist sounds the alarm https://t.co/m3Hw5TYpFG,313524 +RT @redsteeze: Guys we can't ignore global warming anymore. This February is by far the greatest on record.,453646 +RT @NewsHour: MIT accuses President Trump of misusing its research on climate change in yesterday's announcement to leave the Par…,267618 +RT @JohnnieOil: @brianlilley @Banks_Todd well the Heath ministers should've went disguised as 3rd dictatorships looking for climate change$…,552103 +RT @SustainBrands: 64% of Americans agreed it was key to elect a @POTUS who understands that climate change is real... WHAT HAPPENED?? http…,922833 +What @realDonaldTrump presidency means for climate change action: https://t.co/KYVzylsE64 https://t.co/gpPr5TKuYD,161548 +RT @Rigel9000: The USDA has been instructed to use the phrase 'weather extremes' instead of 'climate change' https://t.co/RbTmO2V7ae,547728 +alertnetclimate: 8 in 10 people now see #climate change as 'catastrophic' risk -and are ready to act on it https://t.co/iELx4wcyML,882173 +RT @pablorodas: #CLIMATEchange #p2 RT California Gov. Jerry Brown defiant on climate change. https://t.co/7rLtNH5UZl #COP22 https://t.co/hK…,196745 +RT @peterdaou: Sometimes you just have to laugh. Pence isn't sure why climate change is such a big issue. https://t.co/69EkFhri3b,329376 +RT @AnitaAnimalkin: @iainbyrne @DianeRedelinghu I certainly think climate change is playing a big part in the yearly weather patterns.…,561279 +"RT @foe_us: 84 percent of people now consider climate change to be a 'Global Catastrophic Risk.' + +https://t.co/xf2anukbQ3",152362 +Ill start believing in global warming when it stops being cold as hell late march,577289 +#UAE #environmentalists say fight against #climate change must continue. @TheNationalUAE https://t.co/ZQDCKFwSks,569331 +RT @WSCP2: Obamas fiddled global warming data: *Shamelessly Manipulated* - https://t.co/YerkoubZAh #ClimateScam #GreenScam #TeaParty #tcot…,797033 +"RT @ClimateDepot: Spencer mocks: 'Normal people call it weather. More enlightened people, in contrast, call it climate change' https://t.co…",697697 +Can combating climate change coexist with increased US oil production? https://t.co/gkEByfGUnG https://t.co/kNRFydem3I,705751 +Is it climate change or global warming? https://t.co/3Whq0DTY8r,780961 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,607260 +RT @BBAnimals: The effects of global warming https://t.co/twFnLF4XNw,56078 +Wearing shorts in the middle of November. Seems like a global warming thing. @realDonaldTrump,233570 +RT @vicenews: Bill Gates and other billionaires are launching a climate change fund because the planet needs an 'energy miracle”…,900516 +"@BillMeck @JonahNRO Nah, just more climate change denial from those not qualified to deny",526766 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,950781 +"Lol 'climate change is serious guys' + +Do something about it",445119 +"RT @ChrisBarnes1994: I'm more certain climate change is real than certain OJ did it... and I'm pretty certain OJ did it. +#TuesdayThought",299523 +"RT @xpaddycake: *Earth goes through extreme climate change way before humans civilized* + +Yeah that's right + +'10 degrees hotter' + +Fucking hu…",700364 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,638191 +More proof that liberals are morons about climate change https://t.co/bVnfsgI5mX https://t.co/tWEyn4PxEe,746929 +RT @sierraclub: Ready for flooding: Boston analyzes how to tackle climate change https://t.co/WG2ts59T9l (@SJvatn @arstechnica),585971 +RT @ClimateChangRR: Marrakesh sends out strong signal on climate change https://t.co/KBo0RaHutM https://t.co/VdPf3LWs0z,568079 +"RT @DavidCornDC: Hey Florida, nice little Everglades you've got there. Thanks for voting for a climate change denier. See you in hurricane…",102283 +"RT @AmericanPapist: Since cold weather can never be a proof against global warming, according to you, why is warm weather always a proo… ",154483 +8 in 10 people now see climate change as a “catastrophic risk” – survey via /r/worldnews https://t.co/IhF4sOI4Dv https://t.co/ecnVZ8lbPZ,870534 +"@juliegoldberg a leading climate change scientist, and works to spread the word. He's written brilliantly how the r… https://t.co/EmOa9pLWan",367520 +We can still keep global warming below 2℃ – but the hard work is about to start https://t.co/VX6H9JJwSV via @ConversationUK,483579 +RT @Hannnuuuh: I cry for Mother Earth. The environment is going to die. Trump doesn't believe in global warming. He delegitimizes Her sickn…,846473 +"âš¡ï¸ “The Paris Agreement on climate change comes into actionâ€ + +https://t.co/f20AGAOSSn",863386 +Tillerson says US won't be rushed on climate change policies https://t.co/iQnpJAcNwh via @KSNNews,448491 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",879144 +RT @JasonLeopold: Harvard study: Exxon 'misled the public' on climate change for nearly 40 years. https://t.co/TSymtM9ovT,661533 +@BoneySRL global warming is a real thing and it might have an impact but shit happens anyways hey so difficult to say for sure.,778544 +"RT @peta: Meat production is a leading cause of climate change, water waste, and deforestation. If you're concerned about our…",26334 +"Scots energy firm more transparent over climate change risks after complaint, claim lawyers https://t.co/aavZpQNiqj",568606 +"@featherbeds I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",694622 +RT @MikeLevinCA: The G19 reconfirmed the Paris Agreement and a global strategy to deal with climate change. Trump reconfirmed his lack of…,176767 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",787826 +QUARTZ: China got 30 countries to take a stand on climate change and protectionism—mostly tiny ones https://t.co/tkwGMHAwuT,765977 +"Existential by reports' - hey, this approach could work for climate change, political realities, etc! #Xkcd… https://t.co/IN9xBUHUWv",79002 +"you and your friends will die from old age, and i will die of climate change' + +DEVASTATING",628012 +RT @ZachWWMovies: Conservative America is literally stealing your jobs by denying climate change and renewable energy.,468570 +"@ASterling I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",989146 +Thank goodness for #AngelaMerkel Merkel to put climate change at centre of G20 talks after Trump's Paris pullout https://t.co/A0G0n10mpu,458415 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",677605 +"RT @TheDailyEdge: Well done if you voted Green. You helped elect a President who doesn't believe in climate change, loves coal and wants to…",896052 +"RT @NYTScience: How Americans think about climate change, in six maps https://t.co/WgRfWXnAEW https://t.co/y9FTSfDbI7",689114 +RT @yvezayntIaurent: when you're out enjoying the 70 degree weather in february but then remember it's all thanks to global warming https:/…,743964 +RT @climatehawk1: When #climate change starts wars | @johnwendle @NautilusMag https://t.co/rRMqd0EoqE #globalwarming #ActOnClimate…,562549 +"Sanders, Perry spar over climate change https://t.co/oZVaVWU8YT",609521 +المطر اللي حصل امبارح ده من علامات the global warming كفاية تخاريف ��,769546 +thorul means luthor so lena is basically trying to save the planet from global warming. protect this nerd,936010 +@kylegriffin1 @mcspocky The money would be better spent on funding for research and climate change. Also for zika r… https://t.co/KEHlYvW9Qr,28321 +RT @kylepowyswhyte: “Colonialism is essentially climate change”: Understanding the North Dakota pipeline struggle NITV @SEI_Sydney https://…,907350 +"RT @jamespeshaw: ...As well as a farmer, a refugee-turned war crimes prosecutor, two new Pasifika leaders and a climate change negot…",15176 +RT @Connect4Climate: Cities are leading the way in the fight against climate change. Join @Sustainia for a chat on #Cities100 solutions:…,619727 +RT @BitsieTulloch: Happy 💀🎃🕸! Want to see something truly scary? @NatGeo & @LeoDiCaprio made a great documentary about global warming: http…,755696 +"RT @TheRoadbeer: Nice try, pal: Michael Moore’s climate change alarmism hits logical snag https://t.co/QNdkibPWoV via @twitchyteam",659339 +Lawmakers move to protect funding for climate change research - The Hill https://t.co/V9PCRVhA3A,868242 +@RobSilver @sunlorrie Goldstein apparently thinks that climate change is a sellable product. Who knew?,878577 +"Well the weather outside is frightful +But the fire is quite delightful +Cos climate change is here +Oh dear! +#DuttonsChristianXmasCarols",27645 +@g7 Letter from @CANIntl to the @g7 sherpas https://t.co/8wwr0M7ahg. Make climate change a priority,94375 +RT @THECAROLDANVERS: everything in the world is depressing... my life... climate change... politics... penguin on penguin violence... ci…,96253 +@pinstripealley 'Brett Gardner thinks global warming is fake news',106662 +RT @savingpltravers: i almost want emma thompson to call back trump and say 'climate change is real' and then hang up,927688 +"RT @elongreen: just to note: Republicans have done everything possible to accelerate climate change, and news networks refuse to s…",174681 +"RT @HarryXmasToYou: muggles like: huh, a cloud shape like a skull... must be global warming.",5808 +"Ok, @Joy_Villa wore a #MAGA dress. #GRAMMYs So what!! She is a vegan and a feminist who believes in climate change. Not a Trump supporter",562069 +"RT @VillaltaEmily: Anybody that doesn't believe in climate change or global warming can go outside right now , remember its January and stfu",697588 +Bill Gates: global warming & china 🇨🇳 hoax. Via @yournewswire https://t.co/CeQMcseGiF,323681 +It’s time to respond to climate change in a way that protects & promotes public health! @LancetCountdown… https://t.co/5369bbqXlB,767676 +RT @nowthisnews: Donald Trump is putting a climate change denier in charge of the environment https://t.co/70mznCfRTz,23872 +@stephensackur can you interview more climate change profiles.Just watched before the flood @LeoDiCaprio @YouTube government needs to act!,901914 +RT #LookingForNews.>> USA TODAY #US China to Trump: We didn't make up global warming https://t.co/kRvCDc7KGH... https://t.co/GI3SWoKrTC,940000 +"@x_krystin_x it's not that people don't believe in climate change, it's more that they don't believe it's man-made",152867 +RT @benandjerrysUK: Did you know that eating pizza can help stop climate change... Find out how here > https://t.co/R3EorJcPIZ https://t.co…,174045 +RT @IJNet: Nepal is one of the countries most affected by climate change. Here's how its journalists are conveying the crisis:…,952247 +RT @Time4Depression: The bad news is that an incompetent hate monger is our president. The good news is that climate change will end humani…,420045 +RT @CJRucker: No shame: Weather Channel propagandists create video manipulating young kids to push ‘global warming’ fears https://t.co/AEn…,219993 +RT @WMBtweets: #2020DontBeLate: 'We have three years to act on climate change': https://t.co/pj2QhhkHRz https://t.co/h63owQxETt,384450 +How globalization and climate change are spreading brain-invading worms by @AdrienneLaF https://t.co/EGXuMmKp0s,284022 +RT @tashavanderbilt: Damn you climate change. https://t.co/SRXVPwZxCu,281768 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/81uSvku4Yk via @Reuters",969999 +@awildrooster @ShahZaMk No we got a narcissist who doesn't believe in climate change and who just set us back for decades. Wish I was wrong,692396 +Scott Pruitt: climate change denier and bedfellow of polluter lobbyists. Reject his nomination as EPA administrator https://t.co/0Ybe3G38ID,566712 +RT @lizbatty: @ehorakova I am pretty down on the monarchy but if Charles wants to disrupt every state visit to talk about climate change I…,397080 +"RT @bennydiego: Trump has spouted misogynistic, racist, xenophobic & climate change-denying views every step of the way. I do not wish him…",400965 +Labor secretary who is against raising the minium wage. Dir of EPA who doesn't believe in climate change. What else have you got for us?,553873 +"RT @SenSanders: Mr. Trump may not know it, and his cabinet may not know it, but the debate about climate change is over. https://t.co/yRBBb…",314655 +RT @postgreen: Reports on climate change have disappeared from the State Department website https://t.co/Y6Cz1EW3fR,210043 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,66392 +"World has three years left to stop dangerous climate change, warn experts https://t.co/0ax53a05Q4 #climatechange #sustainability #cop21",888438 +RT @scifri: Next on #SciFriLive: How to talk persuasively about climate change. https://t.co/mzU0LaEmck,42015 +@katearoni2 @NolteNC NOAAs global warming data IS a hoax,155936 +"Cutting funding for climate change research, HUD, and meals on wheels.",456964 +RT @danichrissette: Can y'all believe donald trump actually believes climate change isn't real??? and there's people that agree with him???…,100619 +"RT @capbye: .@EricIdle +I think denying climate change should be considered a mental illness since climate has been changing since beginning…",165244 +RT @NatGeoPhotos: Here's what happens when an astronaut and an actor start a conversation about climate change:…,918091 +I'm scared of climate change and deforestation and war...basically of humans...,225368 +RT @Oddeconomics: Not adressing emergency preparedness would lead to an economic cost comparable to climate change if there is a glob…,809620 +"RT @1followernodad: ok a climate change denier heading the EPA is AWFUL, but what's that shade of lip stain my dude https://t.co/w8BKE4wZ3s",543287 +"EPA head Pruitt said CO2 wasn't primary cause of climate change, EPA received massive influx of calls & its voicemail reached capacity",858075 +#Seoul to introduce new car scoring system to fight climate change and air pollution: https://t.co/30khmEHKN6 #http://Cities4Airpic.twitte…,342041 +"RT @igorvolsky: Trump made sure to mention Melania's QVC jewelry line on WH site. + +Stripped it of climate change, AIDS policy ment… ",501333 +"RT @Bentler: https://t.co/sMXk4zLKAg +Record number of Americans see climate change as ‘serious threat,’ accept it is real…",688842 +"RT @fivefifths: The American South will bear the worst of climate change’s costs, @yayitsrob reports. https://t.co/KXxAHgxI3Y",259862 +"RT @ForeignAffairs: Under Trump, expect an end to U.S.-Chinese cooperation on climate change. https://t.co/Bq4rdMB5Gh",844239 +"RT @scifri: When trying to convince a climate change denier, try focusing on solutions. #DayOfFacts https://t.co/IdUpF3fP9D",939482 +RT @BarnabyEdwards: When are we allowed to say that oily little climate change deniers who associate wind farm advocates with paedophil…,851282 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,782419 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,156502 +"https://t.co/GrbC36YNJP +“Do you believe?” is the wrong question to ask public officials about climate change… https://t.co/0rIVzc3TQx",411451 +RT @tveitdal: Bird species vanish from UK due to climate change and habitat loss https://t.co/lC9YCf3CAB https://t.co/7tyFL6IB2F,778098 +"RT @mcspocky: Trump bans Punxsutawney Phil for refusing to spread his anti-global warming propaganda. +#GroundhogDay +#Orwellian… ",748621 +RT @voxdotcom: How progressive cities can lead the climate change battle https://t.co/GTk7C41wTk (via @Curbed),991104 +"RT @DanielH85442891: @Franktmcveety @breakinnewz1 @Steemit The Star wants Trudeau to demand action on labor rights, climate change in a rev…",429100 +We can still keep global warming below 2℃. Here's how https://t.co/M2wVbjTElZ #climate https://t.co/CWlqpAX84A,242868 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,383918 +RT @CarbonBubble: #ShellKnew: 1991 film made by oil giant warned of the dangers of climate change. https://t.co/tWih3nnOH4 https://t.co/16C…,665976 +RT @NatObserver: Support reporting on #animals and climate change. Pledge & get @Linda_Solomon @mikedesouza to speak at your event!…,464303 +"RT @lrozen: RT @clparthemore: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/FZgRmCMOkN via @Reuters",136987 +#Agribusiness #Kenya #Africa.A new innovation to cure climate change $encodedTitle. https://t.co/Bcq49nmvdy,210063 +What global climate change may mean for leaf litter in streams and rivers https://t.co/Ufx8e4oI6C,931052 +RT @theheatherhogan: My choice is: two chill people riding effective public transit or a racist police state that denies climate change?…,726315 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,430258 +RT @ConversationUK: NASA has transformed climate change communication – cutting its climate funding would be a huge mistake…,366927 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,303238 +RT @imcarolanne: my heart says nice weather but my brain is saying global warming https://t.co/zzObGqpmzA,485960 +RT @Caesar_Cheelo: @ZiparInfo says Zambia should consider coal as alternative energy given climate change & reduction in hydro-power produc…,300485 +RT @MarianneMugabo: I'm an #actuallivingscientist working on the effects of climate change on a host-parasitoid system and I also happe…,486143 +"RT @edstetzer: So today Trump sees climate change, won’t prosecute Clinton, disavowed the alt-right, and is against torture. + + I’m calling…",487258 +"RT @DepressedDarth: Dear Earth, + +This is the global warming you really need to be worrying about https://t.co/zJct20ywhL",86791 +Minister for clean technology in mitigating harmful impacts of #climate change: Dispatch News Desk https://t.co/evO32cpNXg #environment,483979 +RT @montaukian: World's biggest fund manager in 'Darth Vader-style' warning to company directors who deny climate change https://t.co/RWBKO…,557002 +RT @Wisethedome: If you believe in climate change why aren't you vegan?,651130 +RT @phaninaidu1: Many more happy returns of d day @LeoDiCaprio â¤ðŸ˜ hope you'll succeed wd ur efforts on climate change @vishnupspk_fan @sha…,240130 +They also have a song about global warming and how we should take care of our planet because we give it to our children,854919 +"RT @c6eth: Theresa May voted: +Against measures 2 prevent climate change +Voted FOR culling badgers +Against smoking ban +Against fox hunting…",126330 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,959514 +"RT @ThomasPogge: To avert climate change, it's necessary, & sufficient, to restructure the global economy. Personal virtue won't do. +https…",669369 +"Finally this guy is doing something right. I don't want to fund climate change! +https://t.co/0UocnkvZBv",906463 +"RT @NatGeoPhotos: Though visually stunning, this colorful view of a snow cave sheds light on our warming planet:…",251017 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,17936 +RT @AdamsFlaFan: The Paris Agreement on climate change has some surprising new supporters: the coal industry https://t.co/adWA3iR0pN,275097 +RT @nytimesbusiness: Trump questions the science behind climate change as “a hoax.” America’s top coal producers take a different tack. htt…,973737 +RT @Jackthelad1947: The Guardian view on climate change: Trump spells disaster #auspol https://t.co/XdtngUxBN5 https://t.co/gguIM5NAXL,398175 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",549419 +"there's so much snow outside when will it stop, global warming where u at",830932 +"RT @_probablysarah_: I now have a president who thinks climate change is a hoax, and is willing to watch our plane die around us and not do…",62153 +@DJSPINtel Fighting global warming does require starving. Get your data from science not right wing propaganda,836743 +RT @ClimateHome: Corporate America is uniting on climate change https://t.co/y2VgzTauPF via @axios,688979 +RT @frontlinepbs: Proposals that would influence how climate change & evolution are taught in public schools gained traction in 2017…,467710 +#Reindeer are shrinking on an #Arctic island near the north pole as a result of climate change https://t.co/J85HHYjeib,786829 +how can u be so dumb and think that climate change doesn't exist,475922 +RT @physorg_com: New York skyscrapers adapt to climate change https://t.co/7kfNvTeMpY,756330 +A climate change skeptic is leading Trump's EPA transition — but these charts prove that… https://t.co/B0HfdCRtNk,129546 +"RT @kenklippenstein: As we prepare to spend the next 4-8 yrs debating if climate change is real, China just invested $361B in renewables ht…",283112 +Oh yeah there's no climate change *sits through day 5076 of rain with no forecast end in sight*,177141 +"RT @Kloppholic: Imagine trying to convince yourself that global warming isn't real and instead a conspiracy. Wake up, before it's t…",27227 +RT @TonyLaramie: headass this climate change means we all dying soon,991302 +RT @adamcoomes: Trump administration begins altering EPA climate change websites https://t.co/i1pjSTpfG9,769041 +RT @wef: The cleverest countries on climate change – and what we can learn from them https://t.co/El6Q3wnJMK @apoliticalco https://t.co/WnJ…,982553 +"RT @PhuckinCody: *watches a show about global warming* +Yeah whatever, doesn't affect me. + +*watches a show about bear attacks* +Would I be ab…",882621 +"RT @ReutersChina: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/hUihq4qxTa",953530 +#earthquake let me guess liberals will say it is caused by 'climate change'.,834944 +@LiamPayne what do you think about global warming? 😅🌏 #askliam,561470 +RT @SeanMcElwee: More well paying jobs while saving humanity from catastrophic climate change. Sounds awful. https://t.co/DOqydrrFIj,384297 +https://t.co/Q81kKsILwl DeCaprio furthering lies of climate change! meets with our Trump! DeCaprio is a deceitful liar!. Tell him so!,521834 +This shouldn't come as much of a surprise. 45* rejects climate change so backing out of Paris Accord should be expe… https://t.co/hLjQp9oXDJ,878776 +Chicago mayor Emanuel posts EPA’s deleted climate change page https://t.co/rxSRbZrJSF by #politico via @c0nvey https://t.co/rRHDtzVLn4,800561 +RT @chriskkenny: except that global warming is global - and only global - so your argument is inane https://t.co/5wIbtC3SZp,332192 +RT @btenergy: The public & private sector must work together on climate change. @richardbranson is helping lead the way:…,626665 +"RT @BBnewsroom: New EPA chief continue to deny the facts of climate change +https://t.co/L0x1KZpphh",720978 +"RT @tribelaw: Fallacious to look for 1:1 correlations. Causation isn't linear but stochastic. Over time, global warming --> more…",471603 +SARRC states urged to cooperate on climate change - Daily Times https://t.co/SgZobs2oz5,840316 +RT @Salon: Americans plan to fight climate change with or without the federal government's help https://t.co/YFUq3hcYlw,270413 +"RT @cooperhewitt: Tomorrow 6:30pm, meet 3 designers whose collaborative projects address social, economic & climate change challenges…",666499 +It just absolutely blows my mind that in the year 2016 there are still people who don't believe in climate change. How can you be that dumb?,934904 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,750005 +RT @GlobalGoalsUN: Protecting people & planet are at the heart of the #ParisAgreement on climate change. @UNFCCC's @PEspinosaC explain…,370595 +"RT @Jamienzherald: How did climate change ever become a 'Liberal' issue? Storms, drought & ocean acidification can't really distinguis…",93511 +"RT @Dick_Trenchard: 'Whenever you produce better for less...that is climate change' Feeling inspired by Martin Frick, FAO's climate head @c…",389325 +die everyone yall useless piece of crap causing global warming dogs are better,285464 +"RT @PeteButtigieg: When the EPA head does not understand climate change, it endangers American communities--not just on the coasts, bu… ",537960 +China to Trump: We didn't invent climate change and it's no hoax https://t.co/M2wfxrfUbl https://t.co/MxIAnpvfxG,523402 +RT @nytimesbusiness: Hundreds of American companies are pleading with Donald Trump not to abandon gains made to mitigate climate change.…,453346 +RT @ChristopherNFox: 'China has already wrestled the mantle of leadership on #climate change from the United States' https://t.co/MIcq0BVaT…,286755 +"RT @IGG_NL: UN climate change conference COP22 is kicking off in Marrakesh, Morocco - it's #ActionTime! Follow the Dutch delega…",735544 +RT @matthaig1: I think if people want to ignore the science of climate change they shouldn't have access to the science of nuclear weapons.,737829 +RT @alessiacara: someone put my song on a spotify playlist called “global warming is real… let’s dance.” dance for a cause amiright https:/…,866869 +"In interviews, Trump's EPA pick questioned climate change, said Obama EPA rules would be undone… https://t.co/zS8Z1hG6NU",887135 +"RT @steph93065: Angela Merkel characterized climate change talks with Trump as “very unsatisfying.” + +The fact that she is not satisfied is…",539693 +RT @Achapphawk: Money won't matter here when the United States is under water due to climate change. https://t.co/xQmwg05Zm6,912791 +"RT @evanasmith: New study says if zero done on climate change, TX will lose up to 9.5% of its GDP per yr beginning in 2080 https://t.co/3nf…",32937 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,607228 +RT @austincarlile: Maybe all of you that don't think climate change is real will disagree with this one too: https://t.co/qYAyKysi84,678005 +New global database of #trees affirms: greater protection of #forests is needed to slow the pace of global warming. https://t.co/wgwriN47I7,547998 +@GOP Keep Denying Climate Science. #Idiots. Did climate change intensify Hurricane Harvey? @yayitsrob reports: https://t.co/hFSCeoY4u3,111384 +RT @ngadventure: This photographer spent most of his life watching Arctic climate change. Here's what he's learned. #MyClimateAction https:…,135862 +RT @GreenpeaceUK: World's biggest oil firms announce plan to invest basically no money in tackling climate change…,585961 +"@hockeyschtick1 Failed theories; the greenhouse effect, global warming, and climate change. The computer models don… https://t.co/DM4XkJNQPW",851295 +RT @IoneIy_night: just bc the US is in ruins doesnt mean god is coming. we aint the center of the universe. focus on climate change.…,876430 +@elliegoulding your music sucks and global warming/ climate change is a myth,161949 +"RT @ProgressOutlook: Scott Pruitt, who heads the EPA, doesn't think carbon dioxide emissions contribute to climate change.",265741 +"@RealJamesWoods Nah. Love her, but she's a global warming believing feminist.",469560 +RT @jne0908: @LIBShateSARCASM the scientific community that climate change is increasingly ruining the environment. Species are dying off a…,625147 +#GlobalBusiness 11 ways to see how climate change threatens the Arctic https://t.co/4VkHoaTuKy #HubBusiness #WEF https://t.co/zC5SDjgy96,843557 +"Humans causing #climate change up to 170x faster than natural forces, scientists say https://t.co/uWqeKhCYfS #anthropocene",246532 +"RT @DrJillStein: The #GreenNewDeal: +👷ðŸ¾ Jobs for all who need work +☀ï¸ 100% clean energy +🌎 halt climate change +✌ðŸ¼ wars for oil obsolet…",397532 +RT @thehill: Conway attacks CNN anchor for bringing up climate change during hurricane relief effort https://t.co/36rwEsEJIs https://t.co/m…,363915 +RT @csmonitor: How climate change dried up a Canadian glacier river in a matter of days https://t.co/l04LNgtYL4 https://t.co/EE4e4YdzOh,535584 +"RT @perfectsliders: Scientists Changing Temperature Data to Make It Hotter, adjustments responsible 4 the global warming shown by 3 separat…",195696 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",432742 +RT @NPR: Internet outcry after new policy action items replace topics like climate change & LGBT rights on White House site https://t.co/oR…,45471 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,147931 +Neenah boycotted global warming and is staying under 30 degrees in protest,351920 +List of excuses for ‘The Pause’ in global warming https://t.co/DRKPhClB66,728240 +Rick Santorum: I have ‘concerns’ about Rex Tillerson over climate change https://t.co/XdOcOr6Ghu https://t.co/momQijOvYR,15379 +RT @DavidPapp: China may leave the U.S. behind on climate change due to Trump https://t.co/rEB0oyEdVt,138964 +RT @Patbagley: Cartoon: If the media covered climate change the way it covers Hillary's email https://t.co/B93ZlKMkrp via @fusion,406562 +"RT @vanbadham: 'The meaningful issues Trump ran on.' + +Like claiming climate change is a hoax perpetuated by the Chinese? + +The Gree…",673979 +EPA head Pruitt: Paris climate change agreement 'all hat and no cattle' https://t.co/sYMAD0NlNm,6599 +RT @vicenews: Donald Trump’s unlikely climate change foe: corporate America https://t.co/PaCuRTkF8R https://t.co/lmWHU1xLmO,3316 +"RT @Acclimatise: Source of Mekong, Yellow & Yangtze rivers drying up - what is the role of climate change? https://t.co/pWx5AvPzFR https://…",963207 +"RT @SafetyPinDaily: “Wayne Tracker”: As ExxonMobil CEO, Rex Tillerson used an email alias for discussing climate change | @taylorlink_ +htt…",292792 +"RT @Brunothegrape: For the first time on record, human-caused climate change has rerouted an entire river https://t.co/CQkY1HCq8T https://t…",715826 +To me that would interfere in climate change for the worst. This is probably what climate change monies r all about… https://t.co/hZgfFQqjeD,901330 +"RT @nytimes: World leaders are moving forward on climate change without the U.S., declaring the Paris accord “irreversible” https://t.co/nb…",658591 +"David Attenborough on climate change: 'The world will be transformed' + +https://t.co/noj8qaAM63",700745 +"RT @ABCPolitics: .@realDonaldTrump vows to cancel 'billions' in climate change funds to UN, adds 'I'm an environmentalist' https://t.co/P1H…",684686 +@KaldrKate @OathKeepersMO @AVestige1 @lsarsour Ahhh ... more 'corrected' data? You do the same with climate change… https://t.co/qdAe2c2nih,585044 +"RT @dsquareddigest: Like climate change, there's no 'debate'. There's no interesting questions, it's just that some people don't like t… ",72912 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,292080 +"RT @tveitdal: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change…",775106 +"RT @SenSanders: Yes Mr. Trump, climate change is a 'hoax.' It was just a haphazard occurrence that that 13 of the 15 hottest years… ",429183 +"Global climate change has already impacted every aspect of life on Earth + https://t.co/sEqCQ9s6N3",79809 +RT @SallyDeal4: #EPA #Trumplies #EPA #ClimateChange Why Trump's EO on climate change won't help coal miners. It's abt OIL! Conjob! https:/…,710041 +"Trump’s chief strategist is a racist, misogynist, #climate change denier. We must #StopBannon. Sign on & share: https://t.co/3qnpAmN7DH",359322 +"Putting climate change deniers aside for now — even if you say after Trump’s over they can sign again, the momentum will be lost.",558178 +"RT @SenSanders: We need a cabinet that will take action to combat climate change, not deny that it exists and is caused by human ac… ",883974 +it's 7:07am and i have been crying for 25 minutes about polar bears losing their habitat because of global warming... happy thursday,796425 +Now Hollywood understands the impact of 'Climate Change' ....As we wait for those low budget movies on climate change ..,792125 +We are screwed if we don´t stop climate change,603149 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,412743 +RT @TheDemocrats: Trump's nominee to lead the EPA thinks his opinion on climate change is 'immaterial.” https://t.co/IEF2mC5LX0,899120 +The Muslim Mayor who said climate change is a bigger worry than ISIS. The same mayor who said big cities just have… https://t.co/d8elZ1NKHW,77176 +"RT @PopSci: If you live in the South, climate change could kill your economy https://t.co/JERitlWhug https://t.co/N23dWj0w6x",48054 +"RT @rvlandberg: In break with Trump, his pick to lead the Interior Department says climate change is no hoax https://t.co/CmcQGwrN9u via @b…",744133 +"RT @miel: one of the BIGGEST contributors to global warming is animal agriculture, specifically cattle. you can help by reducing beef & dai…",792380 +RT @CAFODSchools: 'I have seen with my own eyes the realities of climate change.' Here's Sophie's new blog from Ethiopia:…,450463 +"RT @mitchellvii: Phoenix just broke a heat record set in 1905! OMG, climate change! But wait, so it was just as hot in 1905? Sounds more l…",923478 +RT @brhodes: Some of us have children who live on planet Earth and would like it to not be ravaged by climate change https://t.co/q8nM0Kd1Df,825217 +@BigJoeBastardi This past week the left have been on a rampage over climate change. A full stop campaign. I wonder… https://t.co/KWKFecDjkW,92054 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,455204 +"@jenniferx007 Exxon has known about global warming since 1960's and part of their plan is to have genocide which + M… https://t.co/p9ub94Kfs2",166549 +RT @PatriotForum: Global warmists brace for snow dump on climate change narrative - #News https://t.co/uiTFZAahs9,864815 +RT @guardian: #GlobalWarning: 97% of academic science papers agree humans are causing climate change https://t.co/3n8F5fS2EE https://t.co/O…,736961 +When will people understand this about globalism & not global warming. Enlist ----> https://t.co/rRZgBcCxBO. Act!! https://t.co/sQACOxm7kl,495799 +"RT @whomiscale: ahem, ahem, [coughing on smog] sorry. anyways, global warming isn't real",988766 +"RT @verge: Fighting climate change isn’t a ‘waste of money’ — it’s a good investment +https://t.co/NtdNw19oRZ https://t.co/jMjkrzk0ko",440864 +@IkedaKiyohiko What would it be if there's anything we should be more concerned about the earth other than global warming?,7273 +Know anyone in need of a climate change denial “vaccine”? Hint: initials are DT https://t.co/nq90dd85vT https://t.co/tC5KFs4rsx #ClimateC…,114016 +"RT @impressivCo: @SenSanders Let's not forget that climate change is real, no matter what we hear in the media. Save our planet! https://t.…",713565 +@tinycarebot what if u afraid that nature is getting fucked up by global warming,713129 +"RT @UberFacts: President-elect Trump has selected Myron Ebell, a climate change skeptic, to lead his Environmental Protection Agency transi…",681654 +@tzeimet21 sounds depressing. 8/10 would recommend taking a 3hr class for a month about climate change bc we gotta save earth but also hw://,633587 +"RT @summerbrennan: Graham openly supports climate change science, and is vocal about defending it. https://t.co/V1hhU9578q",489731 +RT @SenSanders: Join me tomorrow on Facebook Live at 11:30 a.m. EST for a conversation about the movement to combat climate change…,71236 +RT @Fusion: 'Do what you can.' Actor and climate change activist @MarkRuffalo gives tips on how to become an engaged ally: https://t.co/2uc…,954902 +"America’s youth are suing the government over climate change, and President Obama needs to react - Salon https://t.co/z41TXOysfW",608676 +RT @Vaptor365: @GDamianou @ccdeditor It's not climate change. It's global warming. Or maybe it's something else now? Like huge BS?,841621 +@StJohnsTelegram It's amassing that anyone can remotely entertain the idea that we do not need to sit up and pay attention to climate change,938387 +"At the DOE's climate office, words like climate change, emissions reduction and Paris agreement are not welcome… https://t.co/dhzQgtows0",96791 +"RT @joanjuneau: Despite Trump’s threats, Obama administration announces bold plan to fight climate change https://t.co/4juWMHxTob via @Huff…",336255 +"RT @GaryLamphier1: It's not about climate change, it's about $: Vivian Krause on the US players who fund the anti-oilsands crusade: https:/…",654234 +RT @Varneyco: Eminent Princeton physicist says climate change scientists are 'glassy-eyed cultists'.. who will potentially harm t…,568095 +RT @nytclimate: The NYT obtained a draft federal report on climate change that sounds the alarm on warming. Will Trump release it? https://…,297199 +RT @NRDC: 'Our children won't have time to debate the existence of climate change. They'll be busy dealing with its effects” —POTUS #ObamaF…,63520 +Corals tie stronger El Niños to climate change,146672 +"RT @ardenrose: I can't believe anyone thinks climate change isn't real. You have to be either very stupid, or in the pockets of big busines…",156613 +RT @NPR: Honduras ranked No. 3 in the world on the list of countries most affected by global warming between 1996 and 2014. https://t.co/wE…,209688 +"What do you think? +George Monbiot suggest we say 'climate breakdown' instead of ''climate change'. We've been... https://t.co/ftWRXGTzUo",233240 +"RT @etonmessuk: You can draw a Venn diagram that links anti-feminists, climate change-deniers and people who voted for Brexit #nomoreboysan…",635250 +"RT @iansomerhalder: VOTE VOTE VOTE!!!! +;) VOTING for a candidate that believes climate change is a hoax is the… https://t.co/kaLLCio8eo",818370 +"RT @Tomleewalker: its not like 'oh, my grandma doesn't believe in climate change'- the man in the highest position of power in the globe do…",250804 +RT @WorriedCanuck: Hey Al Gore what the hell happened to global warming? We're going into an ice age U lying prick. How much R U worth…,472432 +RT @Aiannucci: The US elected Trump but the rest of the world didn't.So what do we do if US policies ( e.g. climate change) threaten the re…,526619 +RT @petefrt: Confirmed: NASA invented global warming by tampering raw temperature records. https://t.co/9on0KbSwnI #tcot #p2 https://t.co/6…,932140 +RT @OCTorg: Fed court has ruled rights of @octorg youth threatened by climate change. Help them proceed to trial!…,678223 +RT @Dali_Yang: U.S. cedes global leadership role to China on fighting climate change. https://t.co/clLImNOHQ2,499800 +RT @hfairfield: China's coastal megacities — which grew from small towns in the last 30 years — face megafloods from climate change…,94093 +"Some customer: The weather outside is so weird!! It's hot!! +Me: yeah, climate change has affected us +Them: Maybe + +The fuck?? Maybe?? No BIH",975989 +Rise in Arctic Ocean acid pinned on climate change https://t.co/7NvfHCXgli,546488 +RT @kaatherinecx: we need to do more about global warming �� https://t.co/xMvskSJUXK,823328 +It's 90 degrees and dry as your skin leather bound skin @realDonaldTrump . This ain't no hoax this is global warming,83230 +RT @libbyliberalnyc: Explain to him there is no such thing as climate change. https://t.co/wQ8AotlL4Y,613657 +RT @ReutersUS: JUST IN: EPA chief Scott Pruitt disagrees that CO2 is primary contributor to global warming: report https://t.co/bVPVRkaYpY,465639 +RT @hockeyschtick1: In light of recent events – a possible United States climate change action plan https://t.co/Kd83HwgkGX,37735 +RT @vikramchandra: After a complete 19-1 isolation on climate change? #MakeAmericaAloneAgain. https://t.co/AMycDZOZUi,508126 +Please RT #health #fitness Is it too late to reverse global warming&quot; This is what scientists have to...… https://t.co/OPo688QxBs,338723 +"RT @SenBobCasey: 300M children breathe highly toxic air per @UNICEF report, we must act on climate change - https://t.co/KtIX5FdAN2",216769 +"RT @faaitthhhhh: Facts: There are 2 genders, global warming is made up, the pay gap isn't real, women have equal rights, guns save lives &…",924616 +"RT @SenWhitehouse: How do we know climate change is real? Just take a quick, 5-minute look at what’s happening in our oceans. https://t.co/…",128444 +Who knows what Trump could mean for global warming 😱😰,781378 +@realDailyWire @DineshDSouza 'Do as I say but NOT as I do' seems to be the theme for these climate change lovers #Gore #mattdamon,161766 +RT @CloudN9neSyrup: if global warming isn't real then explain this https://t.co/VSrczpUQKs,629937 +RT @AnonyOps: CDC’s canceled climate change conference is back on — thanks to Al Gore https://t.co/KadaCwSWEr #resist,448114 +RT @MikeBloomberg: #ClimateofHope is out today – read the preface to see why we're optimistic about the fight against climate change:…,337455 +"You want climate change? +I will melt the earth. +You want love? +I will melt your heart.",928110 +RT @Reverend_Scott: how can climate change be real when we still have ice cubes?,348665 +RT @vegan_mum: 'Trump’s position on [climate change] is disgraceful…totally ignorant…we’ve got to make him change'—Bernie Sanders https://t…,925085 +"@KimHenke1 @EPAScottPruitt Al Gore made millions of dollars on Ozone fear, now it's global warming; Al Gore want more money, carbon Credit!",350345 +RT @NRC_Norway: We hope to see concrete actions to reduce loss and damage associated with climate change from the #COP22…,255901 +RT @brevamo: The world turns off the lights for Earth Hour to raise awareness of climate change #EarthHour https://t.co/iUaCsQlsAw #earthho…,798119 +"RT @Bentler: https://t.co/5TvARPUmgh +Meet 9 badass women fighting climate change in cities +#climate #women #women4climate https://t.co/1Y2A…",649555 +Has anybody seen Before the Flood? It's really good. Leonardo DiCaprio Documentary about global warming/climate change. 👌ðŸ¾ðŸ‘ŒðŸ¾,678457 +"RT @ClimateChangRR: Schwarzenegger and Macron team up to fight climate change, troll Trump in video https://t.co/mKwQXIHFwS",127945 +"RT @GreenPartyUS: There's only one political party calling climate change what it really is. + +An emergency. 🚨 + +#VoteGreen2016✅ https://t.…",306053 +"@jaimessincioco Sad to say, Caribous are starved to death in the environment that are being effected by global warming of recent years.",429997 +RT @9GAGTweets: Solution to global warming https://t.co/zhELRBsDYC,84686 +"RT @12voltman60: @fernando_carm @newburnb @VICE +That's nice. Before the libs branded it climate change it was better known as weather.",178031 +@POTUS Why is your administration curbing efforts to prevent climate change regulations? I'm dumbfounded at your decisions Mr. President.,433817 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",727081 +#TAKE2forVic – I've pledged! - All Victorians can TAKE2 to act on climate change. https://t.co/zfnB0JY2yS So Children Can Breathe. Please,92555 +RT @karstnhh: https://t.co/xnx3XpxLxv Squid are being drawn into UK waters in large numbers by climate change--similar phenomenon reported…,736073 +RT @350: The only hope to save the world's coral reefs is to take immediate action to stop climate change:…,684291 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,208436 +Why do people trust the government to manage climate change when they couldn't even manage the national debt?,631966 +SpaceX will launch a satellite for NASA to monitor climate change in 2021 https://t.co/oajivdbsNt https://t.co/3wK4sBXUdL,632170 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,552169 +RT @anhz00: 'if global warming isnt real then why did club penguin shut down' https://t.co/jsDSPBYrQF,700411 +RT @climatelinks: Limited access to clean water as a result of climate change is among the greatest threats to human health in #Jordan http…,398682 +#Science #Cool New research suggests a carbon tax is the most economic way to tackle climate change. https://t.co/AxdMCzUE1R #Tech #Retweet,864408 +RT @afreedma: EPA chief says more 'debate' is needed before concluding CO2 is main driver of global warming. Uh....…,791122 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",311939 +Coalition of 17 states challenges Trump over climate change policy | The Guardian https://t.co/jP1bE9o2hi,212992 +RT @pewinternet: Many Americans expect negative effects and life changes due to climate change https://t.co/wWU4tRqkZa https://t.co/0riYM8D…,439770 +RT @iyadabumoghli: The map that shows who climate change really hurts https://t.co/zUZfeHk3AN,888670 +RT @IfHillaryHad: DAY 73: Signed new climate change legislation. Told McConnell to fuck all the way off. Sent Bill out to tend to the White…,246648 +RT @PaulEDawson: The science of climate change is leaping out at us like a scene from a 3D movie. #climatechange #KeepItInTheGround…,52909 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",185340 +"RT @ddale8: Former Trump advisor Stephen Moore says on CNN that the election was a referendum on the global climate change agenda, which is…",954861 +RT @ISETInt: Mapped: How climate change affects extreme weather around the world | Carbon Brief https://t.co/uKsOSldnKF https://t.co/DZrOuo…,312141 +"RT @NRDC: Sorry President-elect, climate change is not a Chinese hoax. #ActOnClimate https://t.co/WGpX51ooBB",779676 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,501230 +Sea levels 'could rise higher than a three-storey building due to climate change' https://t.co/ECDkFEtUFr,655913 +RT @thebradfordfile: EASY TOM: There's only one Al Gore! He's got cashing in on 'climate change' down to a 'science.' �� https://t.co/fXC24E…,869690 +"RT @Trvmpepe: If global warming was real it woulda sank my shitty state by now. Yet, CA is still here + +#thefive",692291 +RT @ajplus: Arnold Schwarzenegger has lots to say about climate change and President Trump. https://t.co/f8CENxjfXR,7733 +RT @papiwilber: what the fuck is wrong with people and not believing in global warming,323305 +"RT @wurlyburgh: Theresa May now keeping company with Trump's notorious climate change denier Myron Ebbell + +https://t.co/Q8PabM7Bsv",522534 +Someone tell @realDonaldTrump to get busy. Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/RJCiqWWOPx,255257 +RT @idiskey: So most farmers are facing failed crop this season. Irrigation in light of climate change should be a national agenda.,342294 +Probably the scariest thing you'll watch this Halloween. Leonardo Di Caprio's climate change documentary https://t.co/yOYFB5Oi2P,336712 +If only climate change voted. https://t.co/orQRpawt7m,847143 +New post: Computer models show how ancient people responded to climate change The findings could help us de https://t.co/Ik7ZX6JPPY,958883 +"RT @SimonBanksHB: 3 years into LNP's energy & climate change policy, what have we got? +* higher prices +* more blackouts +* less investment +*…",32011 +@cristinalaila1 @AlwaysRedPillin global warming being caused by humans is a hoax. Lol the rainforest make up 90% of greenhouse gasses.,645444 +RT @Imusually: @PolitiBunny @smartgirls4gop @PersianCeltic too fn funny. Ahole macron blames terrorism on climate change. ice cra…,591370 +RT @KevinHurstLIVE: Y'all want climate change but yet most of you chomp down on the number one thing causing pollution...meat!,921487 +"RT @GovInslee: The West Coast will continue to lead on stopping climate change, and more clean power is a big part of our efforts. https://…",213184 +"#WorldNews Half the melting Arctic sea ice may be due to natural weather cycles not global warming,…… https://t.co/1Y0qSeUOfR",191035 +RT @wef: Why China and California are trying to work on #climate change without Trump https://t.co/TR0b9sg1ck https://t.co/7NIMEcsgRE,486019 +RT @chicagotribune: EPA Administrator Scott Pruitt denies climate change science and angry Americans are flooding him with phone calls…,967576 +"Architects in Florida aren't debating climate change. They're debating how to build for it. + +We don't have time... https://t.co/bG8LUmYQwB",485397 +RT @latimes: Another consequence of climate change: A good night's sleep https://t.co/JX3JPjfgr0 https://t.co/Kicscs4La4,274091 +One thing that is scary is Trump doesn't believe in climate change.....is not a belief it's a fact,971373 +RT @earthhour: Your photos hold the power to tell inspiring stories behind our fight against climate change. Join our Photo Quest:…,80530 +"Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges… https://t.co/sN0TaTXrn2",441388 +A century of climate change in 35 seconds https://t.co/bSSowB62Sd,219687 +I’m joining millions of people to show my support for action on climate change. Join me and sign up #EarthHourUK https://t.co/q4qzhSIbUJ,589095 +RT @roche_casey: @1401bonniek @SteveRattner @nytopinion disbelief in global warming and overall personality.,717337 +Mashable: Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/SGca3gKY1V,309919 +RT @allyjworthy: some still wanna say global warming is a hoax 🤔🤔🤔 https://t.co/NAfeDE4f4I,624761 +"RT @hale_razor: One hurricane proves climate change is a threat that will kill us all, but a 12-year gap since the last major one h…",538959 +"RT @wilw: Trump's gonna accelerate Earth's destruction by climate change, but a few jobs in a dying industry will temporarily come back, so…",933506 +RT @Voice_OT_Orcas: Overfishing could be the next problem for climate change - commercial fishers in jeopardy https://t.co/w3uVwVT3uo http…,255735 +RT @IOM_ROSanJose: 2016: IOM meets the people of the Carteret Islands clinging to their homeland affected by climate change.…,960885 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,547227 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,955114 +RT @PrisonPlanet: Trump to pull U.S. out of anti-western Paris climate deal. Good. Man-made global warming isn't a thing.,490235 +#Teens sue United States over #climate change; ask for Secretary of State’s #Exxon… https://t.co/QqIZNBQdWr https://t.co/E2jrLIwj08,30625 +nytimes: A majority of people agree that climate change is harming Americans. But they don't believe it will harm them.… …,344466 +"RT @dougsimply: Two great legends coming together, to inspire the masses about climate change. Terrific. +@zachbraff @BillNye…",352351 +but..... how................. the fuck do you deny global warming? HOW ARE THE BEES DYING MOTHER https://t.co/ftxa7hdmVA,91361 +RT @SierraClub: Trump’s EPA pick recently called climate change a ‘religious belief’ https://t.co/bYMG7NCdFw (@ngeiling) #pollutingPruitt,644448 +45 is undoing everything President Obama to protect our environment. He thinks climate change is a hoax It's not. H… https://t.co/QqW6A7DeZh,321910 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,294122 +Storms linked to climate change caused more than £3.5m worth of damage to UK cricket clubs… https://t.co/9LUrHklaXq… https://t.co/CIVkBoBd0Z,502744 +@ezraklein @MichaelEMann Scientists don't 'believe in' global warming. Can we say they recognize it? Acknowledge it? Discovered it?,450547 +@SamSeder i guess we should just give up on climate change now since we're not even gonna try. its over. the world is done.,952430 +"RT @TheEconomist: Some environmentalists now see businesses as allies, rather than adversaries, in the fight against global warming https…",917415 +RT @WWF_Australia: Scientists discover coral species that may be resistant to climate change-induced bleaching: https://t.co/oXXJtNSoak Via…,546639 +"RT @annetrumble: Civil rights, climate change, and health care scrubbed clean from White House website. Not a trace. https://t.co/Nc9zNIyN3d",498408 +RT @RealMuckmaker: EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/oRBKk3Pagk,19737 +@kylegriffin1 @thepoliticalcat EPA top priority is scrubbing 'climate change' from its website and documents. Super… https://t.co/vcsaNs7t2p,89008 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,401448 +According to Taylor apparently global warming is entirely my fault,117558 +"RT @bradplumer: Even before Trump, we were falling far short of stopping climate change (or anything close to 2°C). So any deceleration is…",713838 +RT @ClimateChangRR: Experts list out challenges in agri sector due to climate change https://t.co/OoKC7N2heP https://t.co/XvPfRsw8i2,52888 +RT @violentkittie: @nicmyhipsdntlie @neiltyson Other countries ackn climate change & are greener than US. But US is one of top CO2 polluter…,692934 +"With climate change, Trump may send the USA on a one way ride to true and permanent decline.",211232 +"@mgurri + #navydronechina +#SouthChinaSea + +#China cures global warming + +https://t.co/LHcq2AKiTF + +@realDonaldTrump +#gotthecodes +#MAGA",738012 +RT @nytpolitics: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/xLSRpq99zr https…,430717 +"RT @iansomerhalder: VOTE VOTE VOTE!!!! +;) VOTING for a candidate that believes climate change is a hoax is the MOST dangerous person to…",429013 +"Niggas asked me what my inspiration was, I told em global warming, you feel me? #Cozy",622733 +"Re-imagining energy supplies', but not a word about global warming - utter lack of vision https://t.co/PqVQscZib5 via @BBC_Future",175296 +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/FliJkNboaB 😞,208540 +"RT @DrCraigEmerson: Until youse people at the ABC point out the positive side of racism, bigotry, sexual assault & climate change denia…",341637 +RT @thehill: Scientists to Trump: You must act on climate change https://t.co/ZGtSAkC9IM https://t.co/9eFdqg7fAi,980407 +RT @bridgietherease: Seeing a lot of people confused re: #OrovilleDam & climate change. Drought in late summer + flooding rain in spring wi…,747972 +The world will fight climate change with or without the U.S. – Kofi Annan https://t.co/whnHXlViGt https://t.co/UmKNdJbdbP,10675 +"RT @VanarisIV: If global warming isn't real, why did club penguin shut down?",413483 +"Westpac's new climate change policy is bad news for Adani's Carmichael mine in Queensland #noadani +https://t.co/iPiLo10YYt via @abcnews",492601 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,440868 +"RT @SteveSGoddard: 3 different civilizations were wiped out by climate change in Greenland, over past 4,000 yrs +https://t.co/aluNa551Wk htt…",179308 +Idk what global warning is but global warming is real https://t.co/3DUQsUvdrh,850302 +@CNN there's a link between climate change and BS ��,994884 +"There will be no funding nor discussion of climate change in the Drumph administration. Meanwhile, #Trujillo, Peru… https://t.co/o8aYUjwlq6",280069 +"#dumpTrump ... by denying climate change, Donald and his team of Delusionals have declared themselves the enemies... https://t.co/fPPiCnOJB4",225213 +RT @TR_Foundation: Is climate change driving #childmarriage in Bangladesh? How can we fight back? https://t.co/PvMWW94OnG #climate…,383465 +"#Manifest US investors, companies back Paris climate change agreement. Read Blog: https://t.co/3d6jNVT1gu",495245 +"RT @TIME: The U.S. is already feeling effects of climate change, report says https://t.co/RYNdA1xfYs",457142 +The case for optimism on climate change https://t.co/keP9ltqDXf,918082 +RT @ICRW: Great read: #Indian farmers fight against climate change using 'secret' weapon: Trees https://t.co/nLuRIhOQ2p,850665 +"RT @timkaine: If Scott Pruitt rejects science on climate change, I suspect he will ignore other science as well. I will oppose hi… ",119798 +@Garrett_Love Damn global warming causing snow!!,197624 +RT @lologarcia1047: @willpbassett you think global climate change is pretty?,419286 +RT @nature: Endangered African penguins are at risk from overfishing and climate change #ResearchHighlights https://t.co/d07jZUBcVM,66539 +RT @nijhuism: The nat'l parks and climate change photos by @keithladzinski for @NatGeoMag are haunting + freaking gorgeous…,937594 +Geez: the question about hacking was okay but apparently @TeviTroy needs 'more evidence' about how serious climate change is as a disaster.,458056 +"RT @AntisocialJW2: Postmodernist gender studies journal publishes hoax 'The Conceptual Penis' blaming penises for climate change +https://t.…",391586 +"Today, one assures client that global warming is just a hoax used as a ponzi scheme to line Al Gore's pockets! MORE PROOF EVERYTHING IS FINE",537905 +RT @GadSaad: Oh yes. @billnye & @sensanders having a chat. Let me summarize: All ills are caused by climate change. Everything s…,940773 +RT @spaculor: President Trump 'dangerously wrong' on climate change: @JeffDSachs https://t.co/HV16CHKHPe,63636 +White House calls climate change funding 'a waste of your money' – video https://t.co/COb0bThso8 https://t.co/MPEhzYRqVs,350290 +"Fuck if climate change 'is real'; glaciers are melting, water level is rising. If this is occurring naturally, we're still all going to die.",399262 +RT @Dory: Literally every state knows this struggle it's called global warming https://t.co/07hzXOZI4R,879570 +next you're gonna blame oil companies for global warming!' 'yes because they are to blame' @caroisradical https://t.co/qN3UUEZpKA,242644 +Obama administration gives $500m to UN climate change fund https://t.co/LLX77PQg3p,360419 +"@icarustrash and he appointed someone who does not believe in climate change, planned parenthood AND funds conversion therapy for LTBG+",702569 +"RT @SteveSGoddard: - @NASA has tripled global warming since the year 2000, during a time when satellites show no temperature increase.…",195816 +"RT @Realityshaken: Trump doesn't understand, or care about, climate change, Paris Agreement, or the future. #parisclimateagreement +https:…",757711 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",927763 +RT @NRDC: Scientists say that human-caused climate change rerouted a river. https://t.co/WdOSrwiGzF via @grist,709644 +"I know the @WhiteHouse deleted pages pages on civil rights, LGBT rights & climate change today, but who deleted the… https://t.co/mF5DRzgnHN",713965 +"Help scientists understand how cicadas are responding to climate change. +https://t.co/Fa9oOs3QJY",645834 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,917740 +"RT @NannanBay: Still in chaos. + +Wife of Liberal Party powerbroker quits over lack of action on climate change https://t.co/d8GNkVWKmp via…",102859 +"Professor examines effects of climate change on coral reefs, shellfish https://t.co/K67r7v7mWB",302987 +@exxonmobil how about climate change study suppressions / misinformation what about that?,533731 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,989796 +"RT @evanhalper: Trump seems ready to fight the world on climate change, and it could cost the U.S. https://t.co/FNH9fYR3FA",998974 +"Business as usual then? +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/8QGUcg8aZ0",238041 +UN: Paris deal won't be 'enough' to avoid worst effects of climate change https://t.co/r1aQSSGZQU via @HuffPostGreen,849413 +#College Academics urge Trump to endorse Obama climate change policies https://t.co/36XuQivadC,277751 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",42975 +RT @LFFriedman: Trump reportedly taps Rep. Pompeo for CIA. For a sense of whether he will consider climate change a national securi…,243718 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,993297 +"RT @SkipperClay: Hey Florida, if you go trump, and trump ignores global warming, and the ocean EATS YOU, YOU HAVE NO ONE TO BLAME BUT YOURS…",162328 +"RT @hboulware: To be clear, if you lecture me about the dangers of climate change and then deny a human fetus is human I’m going to mock yo…",341635 +RT @andrea_illy: Coffee must adapt to climate change and requires industry wide coordination. https://t.co/RvbFcU3cR8,650311 +RT @CarnegieEndow: Join us in DC on June 21 for a discussion on combatting climate change through innovation: https://t.co/laeHNDc3IZ…,244956 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,203918 +RT @BroHumors: if global warming doesn't exist then why is club penguin shutting down,474921 +@missdanascully we're all gonna die bc of global warming i need to drop school and travel,111066 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,706768 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",701078 +RT @PlanB_earth: @GeorgeMonbiot See it and believe it George - Trump demands action on climate change for humanity and the planet: https://…,469942 +RT @SenGillibrand: The @EPA must be our first line of defense in protecting air and water and combating global climate change.,396077 +".@NeilGrayMP Congrats on being elected. Please don't let the DUP call the shots on sectarianism,abortion, gay rights climate change #DUPdeal",930734 +RT @mailandguardian: Fynbos and climate change: A relationship where South Africa's famous ecosystem is losing out.…,769160 +@carriecoon And there is just a general bias problem because these scientists NEED global warming to exist in order to get their funding.,324 +RT @ClimateRealists: Christopher Booker: It’s the facts the BBC leaves out about climate change that are important…,685392 +@Artistlike @BenSaunders @DrJudyStone Much like climate change! People don't think it's real until their standing in the Tsunami! Stand Up!,195255 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/FQTRmp06h5,132265 +RT @JuliusGoat: I hope we're all getting used to the idea that climate change is real and real challenges are worth facing together.,232617 +I love how some petitions on https://t.co/Dme1CozA7L r like 'fight climate change' & others r like 'bring back my fav Panera sandwich!1!!1!',671491 +"Growth rings on 500-year-old clams reveal 'hugely worrying' evidence of #climate change +https://t.co/Lz8MqYnX6J… https://t.co/flNEs8WLYf",24200 +@samsheffer Oh you know a little thing called global warming.,670870 +"Imagine the 8th grader learning about climate change in science class, and asking the teacher how the government is fighting it.",187081 +RT @thinkprogress: Repeat after me: Carbon pollution is causing climate change https://t.co/9OsnNl6nGe https://t.co/pNxMXvRzB5,740680 +RT @VoxNihili86: @annepearl1 @CNN @AKimCampbell Pervasive willful ignorance. They think God would never allow climate change as a co…,183014 +"@the_geographer I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",1002 +Yep. The exponential phase of climate change starting to show. https://t.co/qTrKuNMVy3,437581 +I swear global warming is gonna make pale-skinned people go extinct!,13562 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,525771 +"RT @Colorlines: POC who live through climate change-induced disasters can suffer from alcohol & drug impairment, traumatic stress &…",484704 +How can we trust global warming scientists asks David Rose https://t.co/siJAOSrj1c via @MailOnline,435190 +"RT @GirlPosts: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https://t.co…",563240 +RT @nytimes: Most of Donald Trump's cabinet and top staff have doubted that climate change is caused by human activity https://t.co/8R1mim0…,980945 +@brandonkam_3 global warming 😂😂😂😂😂😂,71688 +RT @JustinTemplerSr: @luisbaram & neither will 'fix' climate change. Closest thing that has any potential ATM to replace fossil fuels is nu…,43993 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,674237 +"RT @sugarbbnick: Happy #EarthDay from Paris Hilton, advocate for global warming https://t.co/aoMYoWKrgE",609692 +Military experts warn of 'epic' humanitarian crisis sparked by climate change https://t.co/VRo802np6O,994995 +"RT @BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is at stake. https://t.c…",17950 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,660705 +RT @Env_Pillar: UCC Biochemistry professor William Reville calls for the media to reflect the 95% majority view on climate change…,488065 +"RT @NatGeo: In recent climate change news, an advisory panel studying the health risks of coal mining sites has been disbanded https://t.co…",718541 +"@GiannoCaldwell I mean you have to honest tho Gianno, his climate change denier pick for the EPA is literally a danger to every American",789782 +"there's literally no snow in anchorage, ak & some ppl believe climate change ain't real... https://t.co/oz8DqT6kLL",774504 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,942387 +No offence to climate change skeptics or whatever but it is way too hot. #LoveIsTheAnswer,913856 +RT @350: A new study shows over 1 million people have been forced to move by climate change and millions more will be soon:…,68822 +RT @pewresearch: Polarized views on climate issues stretch from the causes & cures for climate change to trust in climate scientists…,498872 +@nattbratt67 @ShaunKing and thinks climate change is a hoax,282396 +"RT @UN: There is optimism in the fight against climate change, but the best time to act is now. @WMO chief explains more in…",607114 +I'm waiting for Trump to appoint a climate change denier as head of EPA... oh wait @AGScottPruitt https://t.co/8CpyvPkfKu,293524 +@ajplus can this be contributed to by climate change and global warming? I think this has a direct correlation.,67727 +RT @ClimateReality: You don’t have to be a super activist to act on climate change. Here are four ways that anyone can make a differenc…,926215 +"RT @davrosz: Abbott/Turnbull policy on climate change and energy caused current mess, writes John Menadue https://t.co/ycqVl7YRt4 @Indepen…",237135 +RT @AbeRevere: What assholery to treat action on climate change like a cliffhanger on a 2-part episode of Apprentice. He's a moron…,13937 +..current #climate change is not abnormal and not outside the range of natural variations..' #yyz #onpoli #uk #yeg https://t.co/LdSuXnIbXx,105223 +EPA chief: Trump to undo Obama plan to curb global warming https://t.co/YMhk0bAjxf,989572 +"Stopping global warming is only way to save Great Barrier Reef, scientists warn https://t.co/0HbKWyshve",548324 +A new vision for architecture: How the Heal-Berg would be set to counter climate change https://t.co/uf1mpeWZp0 via @Pionic_org,565886 +RT @pippa_pemberton: Excellent panel on putting climate change heart of political agenda @WalesGreenParty agm @WWFCymru @centre_alt_tech ht…,319852 +RT @jb1148: Don't ever think climate change deniers are stupid.They know exactly what they're doing.Taking the money to ignore science. Pro…,958100 +RT @thinkprogress: Trump's EPA pick recently called climate change a 'religious belief' https://t.co/JOeH6LmJJ7 https://t.co/06YnhJAL2i,343719 +RT @Mariselenee: If you don't believe in global warming don't talk to me,731863 +RT @CelsaCKIC: @ClimateKICspain #CKCIS2016 rolls-royce highlights the importance of new competences addressing climate change,603466 +"RT @MelissaA_Ward: Hi, I'm Melissa! An #actuallivingscientist studying climate change in the ocean and potential solutions! Oh, and I… ",119608 +Weird how we got WWE announcer Howard 'The Fink' Finkel to write a report about climate change,692785 +RT @MarkLandler: Donald Trump at the NYT: Says he has ‘open mind’ on climate change accord https://t.co/hPSBiI6Vba,764412 +"RT @mmfa: From the Iraq war to climate change to sexual assault, the NY Times' new op-ed columnist is a serial misinformer:…",853757 +#DailyClimate Trump victory deals blow to global fight against climate change. https://t.co/xpHDbw8NxR,822612 +"RT @aliotta_joe: Dear climate change suckers! You are the butt of a worldwide joke. @realDonaldTrump + +MUST WATCH. + +https://t.co/kq4yCO0wRq",400706 +RT @EnvDefenseFund: Scientist goes at it alone on climate change to save his state. https://t.co/g48dsRH06c,506377 +"BP calls for tougher action in #climate change, e.g.carbon tax https://t.co/lt7GGCXOku",676465 +@StJohnsSE19 climate change comments from #candidates2017 https://t.co/B9z2XxgXoS,528708 +I'm loving all this sunshine and warm weather but like global warming? Lol,426419 +"RT @Greenmetrics: The curious disappearance of climate change, from Brexit to Berlin | Andrew Simms https://t.co/WnA4EQCcxC",540054 +RT @zapdawn: please hire camila cabello it will stop global warming @CalvinKlein https://t.co/vqZqhc855v,912100 +RT @guardianeco: Maine lawmaker seeks discrimination protection for climate change deniers https://t.co/Hg5jnbjEhw,274630 +Strong defense of the numerical climate models that are crucial for projecting future climate change & impacts https://t.co/KbbILrzBWZ,554174 +Donald Trump on some nut shit if he think global warming not real,905680 +RT @AJEnglish: 'Protecting the Earth's lungs is crucial if we are to defend the planet’s biodiversity and fight global warming.' https://t.…,418450 +RT @morganewill: Transformers 4 (which you probably didn't even see) cost almost 6 TIMES more to make than the actual EPA's climate change…,418141 +RT @ezralevant: The electric car 'charging stations' at the UN global warming conference are fake. They're not even connected to an…,307012 +Focuses on climate change and current events. https://t.co/qpMhiVFyYV,890324 +RT @Independent: Emergency campaign launched to convince Trump climate change is real. Failure risks 'planetary disaster' https://t.co/Vwyl…,682705 +Judge orders Exxon to hand over documents related to climate change https://t.co/O32wUaWH2t #WYKO_NEWS https://t.co/3UhSLwLvhZ,379783 +Republican who reversed his position on climate change thinks Trump will too https://t.co/tq7etbkEvq,843593 +"RT @_mistiu: The curious disappearance of climate change, from Brexit to Berlin + +https://t.co/uVBDQDMvxY",22034 +RT @Michell52640560: @dcar205 @Kimberlygmack His bank account told him to scam people with global warming!,616085 +RT @sciam: Trump's defense secretary cites climate change as national security challenge https://t.co/PGLooPiWx9 https://t.co/uzWaLPIR7s,672236 +"RT @House_Kennedy: Trump supporter: Give him a chance! + +Trump: chooses creationist and global warming denier as Secretary of Education + +No…",440264 +"RT @SydesJokes: The curious disappearance of climate change, from #Bre ... https://t.co/GjFM7jcjD0 #CleanTech #Environment #Green…",162520 +Another great animated chart of global warming up to the new record high: https://t.co/ySvkyLmccG,571452 +Rogue Twitter accounts spring up to fight Donald Trump on climate change https://t.co/s96NDOj1tp,178299 +I was like do you believe in global warming,187726 +Lots of fruitful discussions had today at the EC JRC on future directions for research into climate change risks to… https://t.co/XVBGn65JZ2,162956 +"RT @qz: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change https://t.co/vBOS2lxk6u",650239 +RT @morgfair: Scientists just published an entire study refuting Scott Pruitt on climate change https://t.co/EtNh3v8jPX,285695 +@mmfa Is there evidence that climate change regulations hurt higher economies? What about helping the third world? Is that intent or effect?,62508 +Opinion: McKenna has few allies in Washington for the climate change battle - Edmonton Journal https://t.co/SjT0OlmSSu,601101 +"RT @tattedpoc: Everytime Namjoon breathes, he slows down global warming. He re-aligns the Earth. Animals recover from extinction. Deforesta…",888833 +RT @tramarie: Donald Trump's pick for EPA Admin is a climate change denier. He's picking destroyers of our future not leaders.,452911 +"Now that Trump is gutting what little climate change regs we had, media is actng like they care. Theyve hardly coverd climate change AT ALL.",532091 +"RT @williamlegate: Is it just me, or are the climate change marches today way YUGER than Trump's inauguration? https://t.co/g63AsFsvCQ",647934 +@resisterhood read all the papers that prove global warming is real!,205997 +"RT @shannonrwatts: Experiencing the fallout from climate change in Boulder this morning. One canyon over, the #SunshineFire fed by zer…",376530 +RT @rharris334: Arnie @Schwarzenegger & Labor leader @billshortenmp to chew the fat today on renewable energy & climate change https://t.c…,491158 +"RT @umairh: US should be debating 21st century issues. Basic income, climate change, etc. Instead, rewinding to Dickens met Orwell via Leni…",670340 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,63710 +RT @statesman: REPORT: Lamar Smith visits Greenland with lawmakers to see climate change effects up close https://t.co/RrM7BHuozg https://t…,373166 +"RT EconomistRadio: Listen: Poverty, health, education or climate change: where should governments spend their mone… https://t.co/B4GHiOrXWi",123762 +RT @GRI_LSE: Mass migration could become the ‘new normal’ due to climate change warn senior military figures https://t.co/XKDqxxHP8t Via @d…,949504 +"How's is they a whole in the ozone, but the ozone is holding is all these emissions, heat & etc causing global warming?",282697 +RT @KEEMSTAR: 2017 the end of global warming. https://t.co/nzetMkYfL9,796241 +"RT @derektmead: Not only does climate change screw over the poor, it's making MORE people poor: https://t.co/MKdxy2KZgt",968995 +RT @iansomerhalder: Speaking of climate change-TONIGHT Is another killer episode of @YEARSofLIVING ! 10/9c on @NatGeoChannel https://t.co/T…,114369 +"Prepared for the worst': Bolivians face historic drought, and global warming could intensify it https://t.co/GmHN8E8k4s",505454 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,804838 +RT @PolarBears: Action on climate change is important to polar bears and people too! #VoteForClimate in every election:…,254338 +Trump administration dismisses climate change advisory panel - CNN https://t.co/Cw3CtvPj5G,357839 +Why Greenland matters: Rapid climate change on world’s largest island will affect us all https://t.co/WiJtBlLn6e via @scroll_in,356216 +"RT @GreenpeaceAu: The Adani mine, Big Oil companies in the Bight, & non-existent climate change policies. The future appears bleak… ",27874 +RT @GenAnthropocene: So they say you can't use the words 'climate change'... We have a solution! | https://t.co/hQbdbYesai…,985071 +"If a climate change report falls in the White House, does anyone hear it? https://t.co/FouEiukFNH",718353 +"@GigaLiving @KTHopkins and the old chesnut climate change theres no ice for the polar bears, theres ice 3 miles thick by several miles long",10863 +RT @CNN: Exxon has been ordered to turn over 40 years of climate change research https://t.co/pnQPtncGd2 https://t.co/3DYO35wf78,519963 +"RT @ericgarland: How am I so confident of that? + +I'm a strategic intel analyst. Ten years ago, I was running scenarios on global warming f…",398011 +RT @CiccioRatti: @beppe_grillo Quindi non volevate le trivelle ma esultate per uno il cui vice presidente afferma che il global warming è u…,858431 +RT @voxdotcom: Only 13% of Americans know that more than 90% of scientists believe in global warming. That’s not good. https://t.co/4ecMm9M…,781976 +@RogueNASA Mickey Mouse would be more qualified. Jim Bridenstine doesn't believe in science or climate change.,647740 +News: Bangladesh struggles to turn the tide on climate change as sea levels rise | Karen McVeigh https://t.co/27DvGvMOxR,509315 +RT @IndianExpress: Eiffel Tower lit green in honor of Paris climate change deal https://t.co/zsA5cNDiGV https://t.co/gGCVrw8xB4,180805 +Ermagerd it's 70 degrees. Ermagerd it's December. Ermagerd winter wtf ermagerd global warming,153440 +"In Kansas, politics make it hard to talk climate change. “People are all talking about it, without talking about i… https://t.co/28dCsafuNt",721700 +RT @openinvestco: American Meteorological Society advises Scott Pruit to not 'mischaracterize the science' of climate change - https://t.co…,665905 +Climate denialism in action: President’s budget takes strike at those hit hardest by climate change https://t.co/v2GZseYzF6 @OxfamAmerica,425155 +RT @MSchleifstein: Are human-caused carbon emissions contributing to climate change? https://t.co/h4XsXaK76I,592618 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,604000 +"@realDonaldTrump Check out this amazing TED Talk: + +We need nuclear power to solve climate change",706419 +RT @batoolaliiii: global warming is catastrophic and needs to be taken more seriously!! that being said i wouldnt mind a snow day tmrw👀,626332 +@NolteNC @WesleyLowery @nytimes subscribing to The WaPo and NYTimes also causes global warming through cut trees and vast amounts of hot air,675525 +RT @Circa: Trump's EPA pick says his personal views on climate change are 'immaterial' to the job https://t.co/1jB10Q6xKZ via…,35335 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,879999 +"It s/n b a crime 2 discuss global warming strategies bc u don't believe they exist! Obama & Libs want it 2 b, but i… https://t.co/Mo9q7l5JWw",695422 +"Finally, Paris climate change agreement designed by crooks- #Trump is not buying this crap https://t.co/XVro1oANs1",282559 +RT @styIesactor: Polar bears for global warming https://t.co/G2T62v5YXD,347486 +"RT @kentwelve6: If you don't believe in global warming at this point, kys",237897 +Bakit parang lalong tumatangkad yung mga sunod na generation. May kinalaman ba rito yung global warming.,83693 +"RT @CNN: Polar bears will struggle to survive if climate change continues, according to a new US government report… ",434463 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,936349 +RT @simon_reeve: Even Bangladeshis – hugely threatened by climate change – search google for ‘Kim Kardashian’ in English more than 'climate…,467990 +RT @DRUDGE_REPORT: UPDATE: 'NOAA cheated and got caught' on 'global warming'... https://t.co/S3CMlsDXgl,339981 +"RT @theSNP: First Minister to sign climate change agreement with California +https://t.co/mLuHbg0IkW",998342 +RT @EcoInternet3: RFK Jr. issues warning about #Trump's #climate change policies: CNN https://t.co/0w5ltsmIvG #environment,769234 +"RT @RachelleLefevre: Pollution is the Night King, climate change is the white walkers & if we don't stop waging war against each other to f…",812406 +if climate change is real then why is it cold in my room??!!?!?! #WOKE https://t.co/48NGxQbZH6,325242 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,274653 +Don't listen to these liberal scientists who believe in climate change. Look up and experience this wonder for yourself #MAGA,141806 +When is the last time climate change held a title belt? https://t.co/czkjeFL0by,239144 +RT @ABC: EPA head Pruitt expresses doubt as to whether carbon dioxide from human activity is main cause of climate change.…,537273 +RT @people: .@MRodOfficial talks about the ‘ecological disaster' of climate change and how it’s affecting baby seals…,147807 +Could geoengineering be the key to curing climate change? https://t.co/4tIIGV6OXi,207974 +"Bangladesh did not cause climate change, so the country does not need “aidâ€; instead it needs compensation for the… https://t.co/ecGXgRNROP",357314 +@yywhy @LiberalJaxx @realDonaldTrump Another climate change kook speaks.,789590 +RT @climatehawk1: North Pole above freezing in sign of 'sudden' and 'very serious' #climate change | @Independent…,752831 +"RT @Alex_Verbeek: How climate change is already dramatically disrupting all elements of nature + +https://t.co/6Ltvl0Ok5i #climate…",719483 +RT @reviddiver: @DVATW @heather_venter I remember when climate change was called weather.,717031 +Great conversation on climate change and the science behind it. Pretty eye opening. https://t.co/tSWnRdypYj,744804 +RT @jp91306: @ChangeTheLAUSD @realDonaldTrump We have whoever called it 'global warming' to thank for the confusion. It is increasing weath…,912022 +"@RCheeBunker I can see you're smarter than the average bear ;-). w/ climate change, the winters here are 6 mos. lon… https://t.co/kVJVeQxU66",541124 +And people thought we would die by climate change or nuclear war... PSYCH! It's #Trumpcare!,999263 +"@mattmfm So should I defend the intelligent woman they called a prostitute, +Or the climate change deniers at @DailyMail ? +Tough one",986822 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,397991 +RT @vikramchandra: This @nytimes article is the perfect answer to Donald Trump's rant against India on climate change. India is doing…,819649 +"@enjohnston @nytimes today, sustainable development is a top major at Columbia... cool kids know climate change is real",917021 +#videos of big bootty sexy girls having sex global warming sex https://t.co/rdmnKE2N2G,742017 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",68689 +You elected someone who doesn't even believe in climate change you know how stupid you have to be to not believe in climate change,233448 +RT @Grantham_IC: Can we still limit global warming to 2 degrees C? @Grantham_IC's Prof Sir Brian hoskins and Prof Jo Haigh comment: https:/…,391815 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,625916 +"RT @rcooley123: What Can Donald Trump Do to Screw Up the Planet? | Bring back big coal and keep denying climate change. +https://t.co/WprqF…",602874 +"New trending GIF tagged 2016, world, global warming, run away, josh freydkis, on fire, globey, current news, set m…… https://t.co/4rqP0RoLVh",384242 +"RT @nytpolitics: Within moments of Trump's inauguration, the White House website deleted nearly all mentions of climate change https://t.co…",248317 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,597775 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,505736 +"Save the bears.... & humans. +Without action on climate change, say goodbye to polar bears https://t.co/fmR8Xjrke6 https://t.co/BfibdZDKL3",830762 +RT @Uber_Pix: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/RcvwDVlYO2,268977 +"RT @FoxNews: Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges https://t.co/gZcWlk2XFs",169209 +The island is being eaten': how climate change is threatening the Torres Strait https://t.co/ph8tzb6Phg,674056 +RT @HattMall_69: I don't see how someone could honestly not accept that global warming is an immediate problem https://t.co/XD614FJtU3,303834 +"RT @SarcasticRover: Going to try a calm, reasonable rant about carbon and climate change for a minute… look away now!",893012 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,950264 +@SkyNews Not global warming cannot be so. Trymp says it a con.be advised https://t.co/yIhtSG1jK1 that is where fox… https://t.co/9CAzoprRI6,155098 +"@sierraclub No poltician can solve the inferior tech issue of climate change using a different, yet clean inferior… https://t.co/J8HpSJrCJt",643801 +"RT @Independent: Mar-a-Lago could be submerged by rising sea levels, thanks to climate change https://t.co/ckC91JnJJi https://t.co/73wdK16a…",37382 +RT @darkwave_duke: Snow men for global warming https://t.co/ZtSMgXtf47,239109 +How a rapper is tackling climate change - Deutsche Welle https://t.co/f1AG2sY6nj https://t.co/bM4ZydbASv #Bluehand #NewBluehand #Bluehand…,811745 +RT @Jackthelad1947: Government facing legal action over failure to fight climate change | The Independent criminal negligence #auspol https…,307324 +@nytimesworld @maggieNYT And according to 'Predisent' Trump they invented global warming.,651589 +$V #TreeH:Here's one effective solution to climate change: Put a price on carbon. https://t.co/S2T7O5IPBT https://t.co/HLJfx8XYkO,728961 +"@darshandtaxes Is climate change real? Debatable. If it is, can my super cum fix it? Definitely.",995965 +Stopping climate change is now the only way to save the Great Barrier Reef https://t.co/unH21MrCv8 via @mashable,32617 +I hate this global warming talk. It's all so doom and gloom' -Farmer I met in Manitoba- https://t.co/MrxzH4SBrQ,345264 +RT @DeanLeh: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/sJgFxxC16C,670510 +RT @greenpeaceusa: Did you miss the premier of @LeoDiCaprio's climate change documentary #BeforeTheFlood yesterday? Catch up here >> https:…,187322 +RT @SSludgeworth: Yeah...about that 97% human cause global warming Consensus...not so much https://t.co/Ror6XQiTni,643839 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,656403 +😑😑 Of course this idiotic cheeto puff thinks global warming is a hoax. #trumpisanidiot https://t.co/zZMtLtpvQP,407063 +"RT @davidmweissman: My response to climate change, Summer, Spring, fall and winter, any questions? https://t.co/hUT09x7Ohr",456801 +EPA chief Scott Pruitt doubts carbon dioxide the key culprit in global warming https://t.co/zhAiTgtxaC #breakingnews https://t.co/2BkKCWZMMm,279241 +RT @BelugaSolar: The complex world of climate change governance: new actors; new arrangements https://t.co/kflzE5JNKz,173656 +"RT @Sustainable_A: #ClimateChange #GIF #New #earth, weather, planet, vote, climate change, environment, climat… https://t.co/QmxXD5zbC0 htt…",140144 +COP22/OceansDay/Mauritius: Africa needs to develop ocean economies and factor in climate change impacts #envcomm #cop22_ieca @theieca,695410 +RT @ClimateCentral: Here's how climate change will affect sea level rise (and flood cities) as the world warms https://t.co/btLitj44uU…,342379 +"RT @EricHolthaus: Do you live in Kansas—and worried about climate change? What's your hope for the next 30yrs? What changes, what remains?…",904821 +RT @ETGilmour: Why would a government supposedly committed to fighting climate change cut the transit pass tax credit #budget2017,102149 +@tomfletcherbc I am getting tired of shoveling snow. When is that global warming choose to kick in?,315058 +"RT @ChiOnwurah: Popped into new #gimmeshelter exhib @tynesidecinema exploring linking migration, war & climate change. Highly recom…",443380 +"Not, say, climate change. How the Japanese PM’s convoy merges onto highway.",328359 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,822742 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,363827 +"RT @WWFCanada: This #EarthHour, let's shine a light on climate change. https://t.co/PfMFZoEbwX #ChangeClimateChange https://t.co/sMQ0DE3ht7",369444 +RT @COPicard2017: Hey @EPAScottPruitt we are affecting climate change. 202- 564-4700 is the number we will keep calling to let you kn…,15004 +World leaders duped by manipulated global warming data https://t.co/LYvwIY1AJN,425757 +RT @ReutersUS: Teens suing U.S. over climate change ask for Exxon's 'Wayne Tracker' emails https://t.co/RydtxYesfU https://t.co/CM2dfyj3vx,795670 +RT @TheWiseBook: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/ngoqtGVVA1,994106 +RT @nobarriers2016: .@HillaryClinton is the only candidate with a plan to combat climate change. https://t.co/eVXkpYxiut #ImWithHer,521233 +@molly_knight @seanhannity Liberals ride around in jets while whining about global warming! Just like you a lying l… https://t.co/uw24GMR2Na,629606 +Prediction: Republicans will soon shift from denying human-caused climate change to endorsing its continuation. https://t.co/4UInk4024C,428345 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,376182 +RT @AMZ0NE A SciFi author explains why we won't solve global warming. ▶https://t.co/YsvIEkLWWA https://t.co/UtilSIpZdM #amreading,557421 +RT @SRehmanOffice: For how long is the govt going to ignore the threat of climate change? #ClimateChangeIsReal https://t.co/884wFJh5sc,351678 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,566520 +"If you still don't believe in global warming come to Michigan for a week, it's supposed to be spring rn but IT'S ALSO GONNA SNOW FUCK",951080 +Global climate change action 'unstoppable' despite Trump https://t.co/Snz9N0ooDf https://t.co/Ql2vBJPZv4,431383 +RT @iangwalters: Allen leading the discussion on climate change resilience and response #FSB2017 @Ethical_Partner @SLCPropertyUK https://t.…,164681 +RT @Liz_Wheeler: Why can't climate change scientists answer THIS question? #MarchForScience https://t.co/obzLHSZFQk,711690 +RT @jonkudelka: Oh FFS nobody cares what the IPA thinks about climate change you are a right wing think tank not a science faculty. #qanda,487536 +"RT @riyasharma266: climate change is another way to screw money from the poor suckers the whole thing is a hoax +#climatemarch",12892 +@DRUDGE_REPORT @KurtSchlichter What do CNN and global warming have in common?,93856 +There's a link between climate change and immigration. https://t.co/J0dAntyxp2,616594 +RT @NYMag: EPA removes almost all references to climate change from its website https://t.co/V2WIwvRbWZ,55340 +"RT @emmkaff: Scientists: Don't freak out about Ebola. +Everyone: *Panic!* + +Scientists: Freak out about climate change. +Everyone: LOL! Pass m…",977890 +"RT @Greenpeace: Tropical plants & animals are most affected by climate change, and almost half have experienced local extinctions… ",767055 +RT @esterlingk: @oren_cass changed the way I view climate change with his latest piece in @NationalAffairs https://t.co/gHjkm2UO01,449932 +"When water is lapping at the doorstep of Floridians, the Republicans will suddenly become environmentalists and proponents of climate change",916728 +RT @TheEconomist: Can Europe carry the Paris agreement on climate change forward now that America has left? https://t.co/kY9AUqgVFr https:/…,116029 +RT @GNNGoodNews: #GoodNews #Environment Bill Gates launches $1 billion clean energy fund to fight climate change…,385866 +climate change isn't real' 'bitch tell that to the weather',560183 +"RT @leepace: At #COP22 to take a stand against climate change. +Stand with me. Take @ConservationOrg’s pledge. +https://t.co/Irgg87dNWj +#Eart…",264529 +"RT @JonRiley7: Pence says climate change is part of a 'liberal' agenda. No Mike, everyone IN THE WORLD but y'all think we must act. +https:/…",410097 +"RT @wwf_uk: BREAKING: Polar bear on a Scottish island, showing the real effects of climate change https://t.co/H7GrMd0uhv…",759381 +RT @planetmoney: Why rats love global warming. https://t.co/oqex8zkmMD,846166 +@FoxNews Well climate change has been proven with factual science that its real & is not 'horribly wrong'. Take he… https://t.co/Pss0cUcUAA,975978 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,73908 +Walmart: This was our 'ah ha' moment on climate change https://t.co/2pMyj29Em3 #EnergyNews,564366 +RT @davecclarke: The Trump administration just disbanded a federal advisory committee on climate change https://t.co/SSggVio65i,218212 +"We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. Trump, you are dead wrong.",774290 +"RT @nottsgreenparty: We'd love to hear from more local organizations involved with human rights, climate change, social justice and democra…",468930 +RT @SwiftOnSecurity: What if global warming is a conspiracy by the solar panel industry to make the sun come out more 🤔,692526 +RT @AIANational: We understand that buildings contribute to climate change and architects play a vital role in combating it:…,425303 +RT @davidsirota: It’s almost as if both parties & DC media will do anything to distract attention from stuff like climate change and the ec…,907670 +Congrats to those who voted for Trump&got the results they wanted-Scared what his presidency will mean for the fight against climate change,345212 +"AIA urges architects, federal government to tackle climate change - Curbed https://t.co/Hp4EGvd763",686682 +"RT @Radio702: It's official! Inequality, climate change and social polarisation are bad for you! For the latest from #WEF2017 -… ",130895 +RT @jamestaranto: Trump turns out to be much more knowledgeable about 'climate change' than anyone was giving him credit for. https://t.co/…,78847 +"RT @ReillyRick: If you care about climate change, religious freedom, gun sanity, women's rights + racial harmony, this is a terrifying nigh…",813529 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,512340 +"RT @CollinRugg: Dems fight 'climate change' + +Repubs fight Radical Islam + +Climate doesn't run over innocent people in the streets of London…",643621 +RT @CherMarieSmith: Biggest #climatechange threat to #health = #FoodInsecurity. Project will study food systems & climate change: https://t…,492385 +The Guardian view on climate change: bad for the Arctic | Editorial https://t.co/38gfJ17Q9F https://t.co/hCLiddFKyi,105981 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/tZ0uJH8oKZ,106267 +"We did it, America. We beat global warming. https://t.co/BbZqC4J6zF",395551 +RT @AP_Interactive: Immerse yourself in a #GlobalWarming #360video experience on how the green house effect impacts global warming.…,133092 +RT @CatherineForNV: I believe in science. I believe in climate change. Let's protect our precious resources including the air we breathe &…,62304 +Bill Nye is roasting Trump so hard that he finally might believe in climate change #billbillbillbill,773877 +"What does a community orgainizer from ganstra Chicago, know about climate change ? Surely he'll donate fees to Gore. https://t.co/waxSHN75VM",261474 +Radical realism about climate change https://t.co/SbqnmIs7no,2066 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,880642 +"RT @GlblCtzn: Obama rejected the pipeline, saying it would diminish the global leadership of the US in fighting climate change. https://t.c…",168822 +@Taxpayers1234 @NortonLoverPNW @SteveSGoddard Say goodbye to the raptors of Maui. They must be sacrificed to the god of climate change...,291414 +RT @nybooks: An Exxon scientist warned that “hard decisions” would soon need to be made about global warming. That was in 1978. https://t.c…,518500 +RT @CNNPolitics: Donald Trump meets with Al Gore on climate change https://t.co/8RuTHy2stv https://t.co/lSLFK2ozrS,474278 +"RT @KTLA: Ralph Cicerone, former @UCIrvine chancellor who studied climate change, dies at 73 https://t.co/M9naFI4aqm https://t.co/bl1nOMdpJd",250041 +RT @livingarchitect: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/6afuPcUouS,369792 +"RT @chrstphr_woody: First that sinister request for info on Energy Dept staffers who worked on climate change, now this. https://t.co/c8dar…",549105 +RT @IrvineWelsh: Putting a climate change denier in charge of environmental policy is like putting somebody who believes the Earth is flat…,735919 +"RT @H2AD: Renewable energy with or without climate change #renewableenergy #wednesdaywisdom +https://t.co/SwTklbNGRv",415660 +New study points to ‘global cooling’ on Antarctic Peninsula contrasting fears from climate change hysteria https://t.co/1wf4vd3mBZ,390548 +@michaelmocciaro @kurteichenwald Its about climate change.,586365 +"@cnni Trump did not say climate change is a Hoax, it was a trade agreement where china is exempt from climate rules that he was pointing out",801663 +"China’s ‘airpocalypse’ a product of climate change, not just pollution, researchers say https://t.co/ktxUyb2zSs",21444 +RT @ClimateCentral: Here's how climate change could flood cities (and states) as the world warms https://t.co/YDgShYKusq #BeforeTheFlood ht…,429715 +So apparently what global warming means for me is spending a lot of time being furious that it's warm & sunny #iwantFALL,485778 +RT @WernerTwertzog: The very rich will be able to hide from the most dire consequences of human-made climate change for generations.,353052 +RT @SenWhitehouse: WATCH & RT: Dark money -- funds that can't be traced -- is the reason Congress is failing to act on climate change. http…,39102 +Looking forward to #ssnconf16 tomorrow? Us too! Get in the climate change mood with our new newsletter MORE >> https://t.co/k1W3mpTM0G,874377 +RT @Independent: Emergency campaign launched to convince Trump climate change is real. Failure risks 'planetary disaster' https://t.co/Vwyl…,582519 +Kids are taking the feds -- and possibly Trump -- to court over climate change https://t.co/NR5VgjZ66h by #CNN via @c0nvey,714029 +RT @hannaseidel: it's 80 degrees in the middle of february but 😊 global warming 😊was a hoax 😊created by 😊the chinese 😊 right 😊,562887 +"global warming is real, and caused by humans",161206 +RT @weshootpeople: Leonardo DiCaprio is on a mission to fight against climate change. 'Before The Flood' [whole film] https://t.co/R1vioIia…,242518 +@_mackenziemaee @FieldNigra @Southergirl76 polar bears for global warming,333341 +RT @Reuters: Secretary of State Kerry urges countries to treat climate change as urgent threat despite uncertainty he says creat…,526794 +"RT @amywestervelt: List of things removed from WH site as of 11:59 last night: climate change, civil rights, LGBT rights, various mentions…",862925 +RT @SydPeaceFound: . @jessaroo If we want peace with justice we can't ignore climate change #sydneypeaceprize,964831 +RT @UberFacts: A study found having a teacher who believes climate change is real is a strong positive predictor of students' belief in glo…,141282 +RT @sciam: The U.S. electric industry knew as far back as 1968 that burning fossil fuels might cause global warming https://t.co/TkGxR5Dn2q,642970 +Humans are set to witness ‘dangerous’ consequences of global warming in this lifetime https://t.co/BzLkrXtJin,437390 +Sounds like climate change! Archaeologists Investigate Eroding South Carolina Shell Mound - Archaeology Magazine https://t.co/fd8bEJGYbe,251594 +RT @LWV: The EPA deleted any mention of climate change from its website. This is unacceptable. #DefendClimate https://t.co/aR3qGxQ0Cp,3947 +RT @DavidWohl: It could rain for a year straight and they'd say the same thing. It's all tied to the politics of global warming…,782071 +"RT @opurra: What climate change deniers, like Donald Trump, believe https://t.co/GoA7JTPANg",876155 +Expert on climate change policy she held position of the country manager of the BMU CMD/JI Initiative #TEDxMICA #Panorama,518691 +RT @realamymholmes: This is *real* commitment to 'global warming': Leonardo DiCaprio sunning himself on a 450ft. superyacht in Cannes. http…,571034 +@GhostPanther Facts: 'man made' climate change is the hoax. No macro evolution only micro. Sexual identity developed between ages 3-7.,57352 +RT @CNN: .@SecretaryRoss on budget cuts for climate change research: “My attitude is the science should dictate the results” https://t.co/m…,444558 +RT @ryanlcooper: Donald Trump will take office at the worst possible time for climate change https://t.co/EvlNz9L8Uc https://t.co/RW9RRrJsC0,44613 +RT @ForecasterEnten: College educated GOPers are most likely GOPers not to like Trump. They're also most likely to think climate change eff…,583126 +"RT @World_Wildlife: Irresponsible food production drives climate change, which drives more irresponsible food production. Time to break…",516278 +RT @ReutersWorld: China still committed to Paris climate change deal: foreign ministry https://t.co/XlADjomFIa,599097 +"@spacebull4000 @TradrofTheNorth lol, another propaganda sponge. Your religion is climate change, and it’s fucking pathetic.",144626 +climate change deniers blaming the sun. Say what?! https://t.co/okONWpzdaB #hocus #potus,362282 +"#morningjoe +#msnbc +Don't worry #Heartlanders the coastal blue bubble will fall off into the ocean with climate change + +Ahaaa aaaaaaaaa",465505 +"Indigenous rights are key to preserving forests, climate change study finds https://t.co/wMLlp1LAap",781993 +RT @teroterotero: LOL people in Louisiana swampland don't think global warming will hurt them https://t.co/smkBpiA1Qs,840724 +RT @WenonahHauter: Some hope for the future. Judge rules youth can sue over climate change. #NoDAPL #BanFracking https://t.co/2lpXTE2S4k,385584 +"RT @theblaze: Anti-Trump actor fights global warming, but won’t give up 14 homes and private jet https://t.co/183dh8BYBh https://t.co/HSvBv…",332709 +RT @EnvDefenseFund: Scientists say these 9 cities are likely to escape major climate change threats. Can you guess where they are? https://…,913766 +RT @Ede_WBG: Master plans that help #buildresilience need to consider uncertain futures due to climate change: ROBUST designs https://t.co/…,49767 +"#DailyClimate As Trump heads to Washington, global warming nears tipping point. https://t.co/5uqTbY7uuC",416908 +RT @postgreen: These stunning timelapse photos may just convince you about climate change https://t.co/kmiKMejHiw https://t.co/BA8OAE8Gy8,607640 +"RT @pewglobal: Europeans say ISIS is top threat, but worry about climate change & economic instability too https://t.co/mv0Rlbfr9X https://…",642312 +We got your climate change right here @realDonaldTrump @VP https://t.co/T20ehlcllW,66809 +@BBCWorld Merkel wanted it to be about 'climate change'. Trump used it to talk about important issues. And stole the show.,55451 +"RT @Alex_Verbeek: Polar vortex is shifting due to climate change: extending winter + +https://t.co/MB3jpJY3Mn #climate #weather…",776252 +RT @RacingXtinction: Today may be one of the largest protests in history asking world leaders to act on climate change…,146193 +RT @climatehawk1: Economists agree: economic models underestimate #climate change https://t.co/0VmQxA6ish via @drvox #globalwarming…,839366 +"RT @KimWeaverIA: #StepsToReverseClimateChange Vote out climate change deniers like @SteveKingIA who says, climate change is more 'a…",579210 +@dailykos But there is no global warming. Ha!,597687 +"If Smash Mouth believe in global warming, how can people doubt that? It was in a song! Has to be true https://t.co/0uA7kCoHdb",619476 +"RT @thehill: GE CEO vows to ignore Trump, continue to fight climate change: https://t.co/NyKPM34zwY https://t.co/4V9XGapy7M",414013 +RT @BhaskarDeol: Watch this beautifully articulated film on why we must act on climate change: Three Seconds https://t.co/VGBFk4pC1c,380700 +How do you save Lady Liberty from climate change? https://t.co/3dXgrrhl3D via @climate @ladylibertybook,896367 +"RT @s_rsantorini630: Apparantly Bill Gates (who doesn't listen to GOP geniuses who deny climate change) starts $1B fund to combat it + +http…",334698 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,314624 +RT @davidsirota: WOW: “You and your friends will die of old age and I’m going to die from climate change.â€ https://t.co/tFswYjwczQ,991473 +RT @jilevin: Is climate change a massive hoax or not? Which makes more sense? #green https://t.co/7TEqYEJr2t,549413 +"RT @IndieWire: Watch Leonardo DiCaprio's climate change documentary #BeforeTheFlood for free online +https://t.co/g3iUV8yU0u https://t.co/L…",242209 +"From heatwaves to hurricanes, floods to famine: seven climate change hotspots https://t.co/Ki5IIY15Ip",969368 +Obama talks social media and climate change in final address - Engadget https://t.co/whCIbgTXdD,348883 +World leaders duped by manipulated global warming data https://t.co/1NGvTMliIt via @MailOnline,418492 +RT @missxeroxes: Do you believe that global warming is a hoax?,470540 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,458378 +RT @teague: only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scientists,109266 +Report helps scientists communicate how global warming is worsening natural disasters | John Abraham… https://t.co/94mCqWxBSL,796016 +RT @TeamTrump: .@realDonaldTrump will cut taxes & cancel billions in global warming payments to the UN so we can use that money to…,146189 +Why the Democrats need to get radical on climate change https://t.co/LCNyr2lZuD,908598 +RT @cbxhuns: people blame exo for everything. your faves losing? exo's fault. global warming? exo's fault. the world ending next month? exo…,305829 +RT @davidsirota: How does the NYT write a story about Tillerson's appointment and not even once mention the term 'climate change'? https://…,150626 +"This new movie on climate change is well done, and now free online for a couple more days https://t.co/Mn52WUoDL9",314295 +@Megancats Maybe climate change will take us all out first. 😢,785092 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,349953 +"Stop the madness: the plight of climate change, the responsibilities and hope for change @YebSano #Greens2017 + +https://t.co/0EHMwmZ3VE",315604 +Theresa May admits climate change is not on the agenda as she meets Trump at G20 https://t.co/uQMsBdhA4f,719053 +RT @guardian: Finland voices concern over US and Russian climate change doubters https://t.co/MyyFMFZPMr,625475 +"RT @IOMchief: Mary Robinson’s call to action that climate change must inform the Global Compact on Migration +https://t.co/StEPM803KL",904281 +"RT @Alex_Verbeek: �� + +New coalmines will worsen poverty and escalate climate change + +https://t.co/SA7laCEPv7 +#climate #coal…",864899 +RT @deathyeezus: Desiigner learns about climate change �� https://t.co/O545iDuXV1,98191 +"RT @ClimateReality: Globally, women are often more vulnerable to the effects of climate change than men https://t.co/TouOd4AGyZ…",393935 +@ScottAdamsSays isnt 'climate change' @ broadest level a checkmate of confirmation bias: temp up = confirmation. Temp down = confirmation,976682 +@UNICEF A solution for poverty and global warming https://t.co/htrWOJws1K in less than 30 pages,115902 +@cnn its v worrying that science must find a mechanical way to pollinate flowers & fruit trees. Pollution & climate change 😔 killing bees,714477 +@AchmarBinSchibi @anagama #DonaldTrump and #HillaryClinton need to get the message that the answer to global warming is not nuclear winter!😆,904871 +RT @JacobWhitesides: I think that's global warming not christmas https://t.co/VVAzjVXH6w,40002 +RT @MatthewACherry: What climate change? https://t.co/QC0yIrbVpo,196167 +Is there a link between climate change and diabetes? https://t.co/sUekMB3vux #awesome,876677 +RT @first_affirm: Public-private partnerships key for cities to invest $375B over the next 4 yrs to avoid catastrophic climate change https…,639041 +Palau: on the frontline of climate change in the South Pacific https://t.co/Fj8fA4rMIE,658238 +RT @DontBlowItTrump: The biggest threat to mankind is NOT global warming but liberal idiocy👊🏻🖕🏻 https://t.co/UDEt6fs9gr,118538 +RT @adetigoal1: @ukblm biggest load of rubbish climate change does not look at colour or creed numbskulls just for your info city airport i…,585684 +RT @thehill: EPA spokesman: No plan to take down climate change webpages https://t.co/2wLV2DRc1W https://t.co/nxQp9A16SI,212373 +"RT @ajplus: 'You might as well not believe in gravity.' + +Leo slams climate change skeptics. https://t.co/kdzZbcZHCL",439871 +RT @AJEnglish: 'Protecting the Earth's lungs is crucial if we are to defend the planet’s biodiversity and fight global warming.' https://t.…,372248 +RT @BernieSanders: Some politicians still refuse to recognize the reality of climate change. It's 2017. That's a disgrace.,808291 +"If global warming isn't real , how do you explain Club Penguin shutting down?",740677 +RT @Gizmodo: Donald Trump: Maybe humans did the climate change after all https://t.co/yZcprfdjBH https://t.co/XPUoMGs0to,286600 +This is just plain nuts: 50 minutes spent on talking about climate change by Networks. Watch @NewsHour… https://t.co/SWTQRKE7UH,39137 +"RT @GeorgeBludger: Economy stalled, NBN ruined, climate change policy non existent, emissions up, debt doubled with nothing to show fo… ",242134 +RT @rebleber: What does a climate change denier wish for when everything seems possible? https://t.co/7ysDMUSFEy,789533 +RT @RogueNASA: NASA is defiantly communicating climate change science despite Trump’s doubts #resist https://t.co/b1bhtvnYsN,974607 +Care about climate change? Sign up for the Speak Up Week of Action now! https://t.co/u3bBTydNkI #speakup,121892 +RT @hblodget: 73% of Americans believe climate change is real https://t.co/bTMTETlPgI @danbobkoff,925466 +On the list of least surprising things to learn about Philly sports figures: climate change deniers https://t.co/PDAE399pym,659381 +@Agriculture_Neo #watertable please share ideas to bring up ground water level and reduce global warming,71947 +RT @BioSRP: GMO super plants will save us from global warming says German scientist! (No mention of ordinary plants. Like trees) https://t.…,619589 +RT @DhakaTribune: #Trump's win #boon for climate change #sceptics? https://t.co/HXthlbYivl via @DhakaTribune #DT #World #Climatechange,538261 +RT @DebDay1958: @marcorubio #blockPruitt. He is a climate change denier unfit to head EPA.,401624 +RT @WIRED: What a Trump presidency means for the global fight against climate change: https://t.co/JhDmByNpNP,592687 +Watch Phoenix's @MayorStanton discuss how mayors of cities across America stepped up to fight for climate change po… https://t.co/58C8TGf8PN,770681 +Harry is introducing someone to the dangers of global warming tomorrow,655254 +"Important conversation here, not just on science of climate change but on its rhetoric: how best to convey/dramatiz… https://t.co/5s5Rv8kYFK",803295 +"Pope, Orthodox leader make climate change appeal to 'heal wounded creation' https://t.co/wr1gUxK4TR",770982 +RT @nytimes: President Trump’s proposed EPA cuts go far beyond climate change https://t.co/WmNMC9MtQm,841939 +Macron teams up with Schwarzenegger to troll Trump in climate change video https://t.co/XeJ4B06zvo https://t.co/0AdvG1wGLy,773430 +"RT @YungKundalini: Also the owner of #Coachella, Philip Anschultz, actively supports anti-gay and climate change denying groups.",910369 +"RT @sandiesvane: climate change is real, lgbtq+ people deserve human rights, racism has no place in politics, and donald trump is a piece o…",529946 +Scientists just published an entire study refuting Scott Pruitt on climate change https://t.co/IVW5y17TmZ https://t.co/m9DDZcFoKo,453960 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,199412 +@MrsBrandhorst REI frames their story around global warming and how it's in our hands to make sure our votes protec… https://t.co/6ycPkWO0eZ,928138 +RT @climatehawk1: Here's how #climate change is making Americans poorer | @Sojourners https://t.co/Z0kesnHZVs #globalwarming…,89026 +"@washingtonpost Like global warming regulatory crap, increasing the poor's expenses by $2,700/year?",936076 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,48194 +"A cyclone has been ripping through Queensland, Australia. It's not due to man-made climate change -- Queensland has always had cyclones.",543968 +@telesynth_hot @Earth10012 you don't debate liars. Deniers are idiots that know SFA about climate change,428811 +#BreakingNews Weather Channel storms at Breitbart over climate change video - CNET https://t.co/hJ9I1e4WF9,199176 +Or maybe global warming???? Lmao https://t.co/nBvNU1nJoy,308647 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,472164 +RT @washingtonpost: Trump says 'nobody really knows' if climate change is real https://t.co/FQZAhTMLM4,14347 +This is why we are rightfully scared of Trump. First a climate change denier as head of EPA and now this guy go do… https://t.co/7MW3HedFV8,792863 +"‘Stop lying to the people,’ on #climate change, Schwarzenegger tells Republicans: Sacramento Bee https://t.co/i23YyoEeGq #environment",730475 +@JoyVBehar SHUT UP joy....climate change is a hoax & if ur dumb enuf believe its a problem...ur really stupid #ClimateChangeHOAX,302030 +RT @susannareid100: Brighton's @ivanka responds to President-Elect mistaking her for @IvankaTrump by advising him on climate change (wh…,729730 +"American fears about climate change hit record high, poll finds https://t.co/gYUvM5cwWB # via @HuffPostGreen",355810 +"Save water,grow tree than less global warming",520559 +"@Harlan @LouiseMensch This is all because of global warming. Methane blast from Soros's donkey ass. $50,000,000. Ouch����",116986 +"If scientists can't convince the US that climate change is real, how can its citizens convince eachother to change?",242175 +@eoghanmcdermo @Dermiemac That's ME!! I'm mad into climate change these days. I'm thinkin of starting a club,214431 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,627510 +Germany tells World Bank to quit funding fossil fuels | Climate Home - climate change news https://t.co/CQwzUzbUW0,372797 +Investment key in adapting to climate change in West Africa https://t.co/zJ3pozUcvx,821047 +RT @latimes: How will California battle climate change? A new proposal revs up debate over cap-and-trade program https://t.co/vJgcgoGpqF,859883 +RT @UNHCRUK: How many people are already displaced by climate change? Check out our climate change FAQs for these & more answers…,184039 +@NewDay @MarshaBlackburn How does CNN find these Blonde Bimbos. She is living proof of climate change. Mind is polluted with Trumps Farts,575649 +"As Alaskans head to the polls, climate change is threatening to transform all aspects of life https://t.co/1TRjwSXtcc",406507 +"RT @CBDNews: New data: 'Long-distance migratory patterns of #birds follow peaks in resources', disturbed by climate change @UPI… ",208568 +"#Science - Nuclear warhead could trigger climate change, The researchers from the Univer... https://t.co/wLUkreSGzf https://t.co/AunUZI3lRq",371985 +"“Trump, Putin and the Pipelines to Nowhere” by @AlexSteffen +Delay addressing climate change is their game. +We lose https://t.co/XfDqIVjGpg",440835 +Are these the innovations that will save us from climate change? https://t.co/WuaXpTMoWY via @wef,647629 +Ngl global warming kinda made me forget about snow,897754 +EPA boss says carbon dioxide not primary cause of climate change https://t.co/VykSCZEry3 https://t.co/AiWMIbHsRr,802877 +RT @IndyUSA: Scientists explain apocalyptic effect of Trump pulling out of the Paris climate change agreement https://t.co/7opo7NhjjD,254620 +RT @anylaurie16: The kids suing the government over climate change are our best hope now: https://t.co/0sX7TfRgSy,306648 +"RT @iyad_elbaghdadi: Trump's CIA pick is Mike Pompeo, who is pro-NSA, pro-guns, pro-Gitmo, pro-GMO, a climate change denier, and staunch…",80762 +"RT @nycjim: In Florida, Trump pledges to stop sending money to the United Nations aimed at fighting climate change. https://t.co/G7kNkbrNM8",65253 +How embarrassing will it be when the non-science-challenged foreign leaders have to deal with how @realDonaldTrump perceives climate change?,221872 +The fact that we are all enjoying global warming 😫 it's 55 degrees in MN in November,655251 +RT @TheSocReview: How a Swedish biologist is forcing people take responsibility for their own part in climate change https://t.co/nAdhycXb…,400521 +"RT @ClimateCentral: February’s record warmth, brought to you by climate change https://t.co/cWuMQk8e23 https://t.co/k2RJ7ItxC1",899111 +"Climate change is happening now – here’s eight things we can do to adapt to it + +https://t.co/iTyQnCgnkG + +Adapting to climate change.",213627 +RT @nytopinion: China and India are doing more to fight climate change than they promised in Paris https://t.co/1QpwWV5RCW https://t.co/8M6…,32882 +"@longwall26 Hell, with Antarctic ice shelves breaking off due to climate change, a Titanic fate would be an irony none too rich!",127013 +.@johniadarola This is turning into the left-wing version of climate change denial-and it's equally dangerous. THAT… https://t.co/TfuNAggdGw,296021 +RT @emmalherd: Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/9kfxJZCbEH,246508 +RT @charlescwcooke: Writing “none of this is to deny climate change” and describing “human influence on that warming” as “indisputable” mak…,881303 +"@marie_dunkley arseholes couldn't predict tomorrows weather in a 4 month heat wave, yet we trust them on climate change! narrr",877621 +RT @WhyNomii: Have a stake in businesses that would profit off of global warming 💁 https://t.co/KNBpW8y4e2,913736 +"Supreme Court, building on healthcare, climate change...#ButHillarysEmails",28168 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,616816 +"RT @Bwdreyer: You'd think POTUS could take a moment to call for calm & peace in his own country? No Obama, talks climate change.…",337927 +RT @ReutersPolitics: Trump to roll back use of climate change in policy reviews: source https://t.co/dqiy3y0GNP,60850 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",382625 +RT @ChadBown: Scientists from 13 federal agencies draft a report concluding Americans feel the effects of climate change right now https://…,306424 +"Trump's pick to head EPA is climate change denier. Good job, Florida voters. Hope u enjoy being under water. https://t.co/HWkzf7Sydl",125916 +US Defense Secretary says climate change poses national security challenge https://t.co/KifAMJ5roa https://t.co/j21Bvs3tHk,887268 +PENELITI: Pemakaian hot pants berkontribusi besar pada dampak global warming,646241 +"RT @Mikel_Jollett: The Entire Scientific Establishment: Save the planet from global warming! + +Some Random Reality TV Show Host: nah.",833300 +RT @Watchdogsniffer: Fossil fuel use must fall twice as fast as thought to contain global warming - study | Environment | The Guardian http…,640993 +RT @davidsirota: WOW: “You and your friends will die of old age and I’m going to die from climate change.â€ https://t.co/tFswYjwczQ,185928 +RT @ClimateCentral: 'Trump is wrong — the people of Pittsburgh care about climate change' https://t.co/RtNZBMfb03 via @voxdotcom,723717 +RT @Keylin_Rivera: Not surprised they (Donald's EPA appointees) forgot to take down the Spanish climate change page https://t.co/kYJeJtmkWX,161924 +Rethinking cities 4 the age of global warming suggests 2 replace 'sustainability' with 'survivability' https://t.co/yHwxKFvxxp #architecture,653426 +So u say climate change is hoax? Here is a picture from Saudi desert this morning. https://t.co/AePzbKJAG7,326871 +"RT @Independent: Earth's worst-ever mass extinction of life holds 'apocalyptic' warning about climate change, say scientists https://t.co/I…",23219 +RT @KHayhoe: I couldn't agree more. What's one of the best things we can do about climate change? Talk SOLUTIONS. https://t.co/zY9qjyheU6,694941 +RT @PopSci: How we know that climate change is happening—and that humans are causing it https://t.co/8Z9EhVR2eM https://t.co/fzljpWBfGF,511624 +"RT @Greenpeace: Sorry deniers, climate change hasn't slowed down this decade https://t.co/13IBWRSeN4 https://t.co/lxhfQsYTqE",713841 +"End coal by 2030 to meet Paris climate goal, EU told | Climate Home - climate change news https://t.co/afckM4lu5T via @ClimateHome",757148 +RT @paulkrugman: The climate change story just keeps getting more terrifying https://t.co/6YNcdKhcUQ https://t.co/rasgN6NOZd,233609 +RT @asamjulian: Angela Merkel seems more offended over Trump disagreeing on climate change than she's ever been about terrorism in her own…,481699 +RT @washingtonpost: Meet the rogue Twitter accounts created to fight Donald Trump on climate change https://t.co/jGKyNMlK0y,788178 +What are they smoking? Green Party blames World Series rain delay on global warming https://t.co/OEPjDMdgp2 via @twitchyteam #climatecon,258840 +"RT @Energydesk: Without the Congo Basin rainforest, efforts to tackle climate change are dead in the water https://t.co/Z7A0F0hKxu https://…",180910 +"And for their win, Va Tech gets the black diamond trophy, which is an ad for coal. Includes black lung and global warming for everyone.",143846 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,397187 +"RT @agripointglobal: To curb climate change impact to farmers, knowledge and intelligence is key. @CICCA_CSF @SDGsClimate @weathernetwork @…",735956 +"Anybody want to tell @washingtonpost that being against global warming doesn't sell well in WI, PA, MI, IA, OH in J… https://t.co/stjXT5eQXf",697066 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,398754 +RT @NRDC: Trump’s denial of catastrophic climate change is a clear danger. Here's why: https://t.co/ig2noyUP1x #ActOnClimate,159756 +@jonlovett I'm terrified. I work for a DOE contractor and know global warming is real. Just waiting to see my name on a list come January.,583833 +RT @brady_dennis: Paris accord nations resolve to push ahead on climate change goals — with or without the U.S.: https://t.co/JTyUGSuecf,347170 +"@washingtonpost Oh for Christ's sake, why not say border walls will make climate change worse? For cryin' out loud report on REAL NEWS?",840626 +"2016 warmest year in UK since 1850 https://t.co/9r2QUN9WUC global warming at alarming rate, cooperate everyone",976083 +RT @Slate: China very kindly explains to Trump that it didn’t invent climate change as a hoax: https://t.co/wqQuPCgbeH https://t.co/2bFJ4wL…,936082 +It's going to be 81 degrees today...in the middle of November... and Donald trump still doesn't believe in global warming,707118 +People who don't believe in climate change are the scariest types of people,230817 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,647480 +"RT @SteveSGoddard: Your SUV was causing disastrous climate change in the 1870s too +https://t.co/8noB4LSkEm https://t.co/3kr6qcfPlG",886880 +RT @NBCNews: U.S. Secretary of State Rex Tillerson used an email alias as Exxon CEO to talk climate change…,669722 +Why land rights for indigenous peoples could be the answer to climate change https://t.co/krvS2D7ACJ,89211 +RT @COP22: In 4 days the most ambitious climate change agreement in history enters into force. Have you read……………… https://t.co/KqFyyWF8uD,965203 +RT @cbcasithappens: ICYMI What a Trump presidency could mean for climate change: https://t.co/cEFRJAPVT3 https://t.co/4bHJgk6R7p,205053 +"RT @CNN: From urbanization to climate change, Google Earth Timelapse shows over three decades of changes on Earth… ",792494 +@chweaver96 Omg sometimes I hate being home bc I got in a fight with my dad earlier bc he tried saying global warming isn't real ����,810157 +RT @FAOclimate: 'We need a Gender & #ClimateChange Strategic Plan' @UNFCCC gender/climate change negotiator Winnie Masiko https://t.co/kJl2…,244378 +"#CredibleElectionsKE @AfricaTrees Grow trees, make cash as you help improve climate change https://t.co/eAiY2j1D47 https://t.co/EiRi0rmuMK",953700 +@realDonaldTrump A 2012 report by the Union of Concerned Scientists found that 93% of global warming coverage by Fox News was misleading.,823363 +"RT @realJakeBailey: Since Trump proposed the Solar Wall, the Democratic Party has started to systematically deny climate change- they now s…",643295 +RT @DclareDiane: World leaders duped by manipulated global warming data https://t.co/rgLBJEBwdh via @MailOnline,844388 +"RT @HashtagJones1: Treat climate change as the biggest threat facing the world today, because it is. #StepsToReverseClimateChange https://t…",111866 +"RT @ConversationEDU: 20 million climate change refugees? It may even be far more than that in the future: +https://t.co/LLPcLfVyDN #qanda",891158 +"RT @Independent: Manhattan Project-sized effort is needed to prevent 'catastrophic' climate change, say scientists https://t.co/Hv1rcW0Djq",658186 +President Trump's rollback of environmental protections leaves China poised to lead fight against climate change… https://t.co/BvvGLAfGfb,376161 +"RT @michaelwinn7: As it snowed in Denver, Alynski Marxist Coloradans stood around w/ global warming placards toking state weed https://t.co…",733882 +RT @timkaine: Tillerson for Secretary of State! What's next -- climate change deniers for EPA & Energy? Oh wait....,524949 +@travisjnichols @realDonaldTrump Here dumbass here's the truth Read It and Weep you climate change little bitch https://t.co/0kIKpIoQkk,754796 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",747068 +"thats alarming for the climate change alarmists .... +(see what i did ?) +the worlds lungs were created to use up c02… https://t.co/wGKGB33Nk5",260344 +"What will kill us all first? Trump/WW3 or global warming? + +Idk but I'm gonna double down on enjoying life as much as possible, Just in case",341280 +RT @OG_Threee: It was nice as shit out today thank you global warming,833793 +RT @jurtice: How long before climate change deniers and flat earthers take a stand against trees for causing allergies?,456224 +"RT @supertaschablue: On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/O4PCRy0a1g",942777 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,813648 +"RT @9HUrne5nPVQ7p5h: Because of global warming, their habitat is decreasing. https://t.co/lkLPAy6axb",703664 +RT @EnvDefenseFund: 5 ways climate change is affecting our oceans. https://t.co/ejLx0v5j7D,454700 +"@glynmoody @guardian It's ridiculous, even if you put global warming and killing off the planet aside, it still doesn't make economic sense",774633 +RT @ProfTimStephens: Study: the Paris carbon budget to avoid dangerous #climate change may be 40% smaller than thought https://t.co/uaYaE7l…,713981 +Donald Trump repeatedly publicly stated he believes climate change is a myth invented by the Chinese. What 'side' d… https://t.co/VsHgOeR0Uz,439771 +RT @StevePasquale: 99 percent of the world's climate scientist agree. And climate change doesn't give a fuck what you think. https://t.co/f…,877051 +"If you're looking for good news about climate change, this is about the best there is right now https://t.co/sMOthWDGDF",557810 +RT @achimdobermann: Barack Obama on food and climate change: ‘We can still act and it won’t be too late’. https://t.co/wPcnv1qvct,999361 +Six -#irrefutable pieces of evidence that prove #climate change is real | Popular Science https://t.co/QC4Jg8MCv9 via @PopSci,541390 +RT @FlyOnTheWallPod: NEW POD--check out episode 2 of #FlyOnTheWorld a convo w/ @AmbWittig of @GermanyinUSA on climate change! LISTEN HERE h…,843489 +RT @tan123: Name one person who has ever lost a job because of CO2-induced climate change https://t.co/wIAJrAIL6o,864943 +RT @Sierra_Magazine: Republican state senator Scott Wagner suggests that climate change is caused by humans’ “warm bodies.” https://t.co/gw…,624938 +RT @ABC: Sec. John Kerry becomes highest-ranking U.S. official to visit Antarctica; he's there to learn about climate change…,672160 +"Laying here at 4:30am wondering if nuclear winter will fix global warming. +Cause even my insomnia has a bitchy, smartass side.",651084 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,657393 +RT @CommonWhiteGirI: Only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scienti…,730399 +"RT @CSLIT_TCDSB: 'You can't stop climate change on your own. But, you can take a chip off of that concrete wall, that is climate cha…",507652 +Hey let's leave science to the scientists while we completely disregard scientists and science' - GOP on climate change,836399 +Indian Ocean’s widening current to impact climate change | https://t.co/4SfgKkWEOx,231 +RT @TrueFactsStated: The incident at Trump's rally was an assassination attempt in the same sense that climate change is a Chinese conspira…,141372 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,67600 +"RT @afreedma: Remarkably, Trump never once acknowledged reality of global warming in his Paris Agreement speech today https://t.co/5Fwa9E4X…",486188 +RT @Soniasuponia: Octopus in the parking garage is climate change’s canary in the coal mine #tentacleloveclub https://t.co/Zld0QrmsFR https…,788413 +Everyone's caught up with North Korea and Trump. Dead silence on dangers of unregulated A.I and climate change lately.,163707 +RT @nowthisnews: These women are leading the global fight against climate change https://t.co/tELaEsa0jk,175537 +RT @pewresearch: A minority of the U.S. public sees consensus among climate scientists over the causes of global warming…,899924 +@Patbagley you forget the no climate change.,387467 +RT @FastCoIdeas: This machine just started sucking CO2 out of the air to save us from climate change: https://t.co/byIGbX4kWO https://t.co/…,300294 +RT @jorgiewbu: This is climate change. This is the struggle island communities have been facing for years. This is what's to come…,263648 +"RT @TheScarceFiles: 2010-2017, so sad to see what climate change has done to the Grand Canyon �� https://t.co/0lwReM2k8k",546601 +RT @thehill: CO2 levels in atmosphere hit new high as EPA head denies its role in climate change https://t.co/It24SxLeq7 https://t.co/QoCo6…,208409 +"RT @steven94117: he did...said man is NOT responsible for climate change! ... in so many words! no Texan will ever, ever admit oil i…",988785 +RT @WIR_GLOBAL: GOP candidate for Pennsylvania governor thinks climate change caused by Earth moving closer to the sun https://t.co/EOwYyhd…,460408 +"@erikvandenwinck I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",596290 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,152927 +Too late now to stop climate change. @TheOnion absolutely nails it: https://t.co/VPXYfBSvLc,330596 +RT @CBSNews: Bernie Sanders: 'What astounds me is that we now have a president-elect who does not believe climate change is real…,813049 +"RT @rileyisokay: Actually—my uncle, Dr. Jonathan Patz, co-winner of the Nobel Peace Prize for his work on climate change, DOES know.… ",29924 +"RT @inafried: In contrast to Mnuchin and Trump, @benioff says climate change and AI actually big deals, require societal shift. +https://t.c…",966487 +RT @VickiGP1: Global warming data FAKED by gov't to fit climate change fictions #ClimateHoax #FakeNews https://t.co/q4cmkCRj9y https://t.co…,211780 +RT @insideclimate: New climate change evidence could affect legal fight over Trump’s revived #KXL permit https://t.co/xtfZOu5W5G,934971 +@PropertyBrother @MrDrewScott @MrSilverScott @hgtvcanada ' r u climate change Denier',396644 +RT @kmac: Australia just ratified Paris Agreement on climate change,389863 +How will Trump administration treat climate change? Why it's so hard to know. https://t.co/GtQdGcR4ob https://t.co/FIy4tLRUG0,151900 +Nothing worse than a climate change explosive device. Enlist with us at https://t.co/GjZHk91m2E. Join our patriots. https://t.co/bgnuD35fvk,529295 +Trump falsely claims that nobody knows if global warming is real https://t.co/pTeU8xZewZ via @Mashable,197911 +Climate change sceptics suffer blow as satellite data correction shows 140% faster global warming. https://t.co/MTI8ZqZBn2,795755 +I sat next to two Penn frat brothers last night at a climate change forum and the one guy was reading Taylor Swift/Zayn Malik gossip.,826090 +‘Bombshell’ climate-change study could totally dismantle the claim humans are causing global warming https://t.co/5yM3wP3qrm,10291 +RT @YEARSofLIVING: Celeb-packed 'Years of Living Dangerously' wants to make climate change a voting issue https://t.co/JLCns044m3 via…,827586 +"RT @business: Stopping global warming could make the world $19 trillion richer, report says https://t.co/cqwRZTGYSF https://t.co/jIVmFcrPyD",342303 +"RT @RiffRaffSolis: While you're in those booths today keep in mind one thinks climate change is a hoax, the other acknowledges it's reality…",467556 +"RT @bomani_jones: climate change has a factual basis that one side tends to ignore. which...yeah, not ideological. https://t.co/1T69ZLR029",237893 +Americans are even less worried about Russia than climate change.,182715 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,523321 +US budget broadside on climate change https://t.co/Z1av64FY05,363106 +RT @RedShiftedOne: @Seasaver PLEASE EXPLAIN how Canada's seal hunt contributes to biodiversity loss and climate change? Best to point to ev…,23004 +"Despite fact-checking, zombie myths about climate change persist - Poynter (blog) https://t.co/r9e2apdFDF",928252 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,391847 +@AbbakkaHypatia But govt does subscribe to the idea of climate change. And that idea says that you have to incentiv… https://t.co/poeagsLjRY,675665 +RT @citizensclimate: It's about security: The White House doubts #climate change. Here's why the Pentagon does not…,348827 +It is suggested by American officials the climate change has to be considered when thinking about instability. #4corners #ujelp17,729449 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,232059 +One relatively undocumented consequence of climate change - the impact on political parties https://t.co/taXusDIqxq by @murpharoo,171354 +RT @SciForbes: Think Trump is right and climate change is a hoax? It's time to have a serious discussion about this:…,161420 +RT @SheilaGunnReid: TFW the spenducrats take cabs to the climate change meetings while telling you to walk to take the bus https://t.co/aUv…,920419 +#Moraltime Pacific countries advance regional policy towards migration and climate change https://t.co/SFAJE0wEFn… https://t.co/Fk8pDi3k3x,125728 +RT @GartrellLinda: Gore & his money making scam of global warming is now known as climate change. The 70s warned of coming ICE AGE. YE…,529144 +RT @CDP: Want to be $19 trillion richer? Then start acting on climate change. It makes business sense says @BloombergQuint https://t.co/RG6…,38443 +CityConnect shows you how climate change will impact your own home https://t.co/m4TFu2aBFQ #disneyworld #Broward… https://t.co/s81Z63iPOp,923595 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",281501 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,755722 +"RT @HuffingtonPost: Why so many Americans don't 'believe' in evolution, climate change and vaccines https://t.co/pYQW8pv63k https://t.co/4G…",34877 +"RT @DennisvBerkel: How climate change battles are increasingly being fought, and won, in court @tessakhan https://t.co/FrVRS6epzV",948297 +"Any of these people who take private jets should never, ever complain about climate change !!",655292 +RT @VanillaThund3r_: Where's good ol global warming when you need it?,624662 +What a Trump presidency means for the global fight against climate change: https://t.co/jV7jDVsOhq by #WIRED via @c0nvey,617813 +Scott Pruitt may sound reasonable on TV — but Trump’s EPA nominee is essentially a climate change denier… https://t.co/fOc4CoV8SG,872665 +RT @Aquanaut1967: What can robot shellfish tell us about climate change's impact on marine species? https://t.co/sqo7opKShj via @Smithsonia…,251854 +RT @CalumWorthy: A5. Those who deny climate change. There is no debate. Denying climate change is like denying 2+2=4. https://t.co/sOGmhT…,836359 +RT @washingtonpost: Analysis: Here’s just how far Republican climate change beliefs are outside the global mainstream https://t.co/PQqSPiDg…,798768 +RT @archpaper: This company is designing floating buildings to combat climate change disasters: https://t.co/1cMOL1Plb7 https://t.co/YsaWUo…,922488 +A farm in Mexico is growing a solution to climate change https://t.co/Tq8Gz1ftPH,446131 +"people always talk about how asteroids or global warming, etc will destroy the earth when in reality, it's mankind doing all the damage",711942 +@ProfBrianCox If you want to convince people of climate change just show them the unnatural toxic molecules being produced.,132672 +A trillion-dollar investment company is making climate change a business priority https://t.co/lJWFRdCq2D,117315 +RT @Plfletch: The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/bBEQNLNPBj,786925 +Yay yippe trump fan ur big boy gonna make everything great again but what about global warming ! :O,88937 +RT @business: The climate change skeptics are taking over https://t.co/P5Dy8BVyQB https://t.co/XGOb0HwyKv,841709 +RT @jewiwee: This is what global warming has done to polar bears. https://t.co/zJh17H72eY,764509 +RT @astroehlein: Good to see public outrage forced a retreat here - but what about Trump's gagging of EPA & climate change info? https://t.…,263838 +@_wintergirl93 Sally Krohn is not qualified to make climate change policy,903611 +RT @yiffpolice: the new bill nye tv show is getting me all riled up about global warming. we have the technology to stop using fossil fuels…,135121 +RT @HuffPost: Federal scientists leak their startling climate change report to keep Trump from burying it https://t.co/83cZF2aLkl https://t…,144821 +https://t.co/S9ioOOk9jW Do aliens exist: Martians may have been wiped out by global warming on Mars #mars,632162 +@adroops46 @POTUS I don't believe in fake global warming.,360173 +EPA removes climate change information from website https://t.co/o6Jpl63eAR,448103 +"Ecumenical Patriarch blasts ‘disgraceful’ inaction on climate change, says ‘survival of God’s creation’ is at stake https://t.co/uWT8BhHUk1",678866 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",415234 +RT @ChristopherNFox: Great to see National Association of Corporate Directors tweeting about #climate change - sharing new…,724647 +RT @kykymcd: yet you side with someone who denies the legitimacy of climate change,665309 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,957065 +"Acknowledging the growing impact of climate change on the nation, https://t.co/lFKKgRQ9Pe",224939 +RT @WSCP1: U.S. & Europe tried to get climate scientists to downplay lack of global warming over last 15 years https://t.co/AWaEHPeKJ5 #tco…,133760 +"If you are a Christian stand for the truth of climate change, God wants us to protect and save creation. Stop being ignorant",402953 +Bản in : Mekong Delta seeks climate change adaptive techniques for rice farming https://t.co/FIUxFUgb04,647958 +I do not understand how people still don't believe in climate change,973496 +"RT @Carbongate: Physicist - CO2 does not cause climate change, it RESPONDS to it - Video #climatechange #environment +https://t.co/lySZb7gClh",211487 +RT @GeorgeTakei: Even the Pope is calling on Donald to acknowledge the reality of climate change. When the Vatican is telling you to get wi…,970549 +RT @whitneykimball: Michael Shank's cold open: 'Can we just start by agreeing that climate change is real?' *huge applause* town hall #Bro…,322361 +RT @ClimateReality: Idaho has dropped climate change from its K-12 science curriculum. Science class should teach science. Period…,758055 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",34105 +RT @see_thereverse: i do not understand how people can totally dismiss climate change but then wonder why it's 70 degrees in Wisconsin in N…,684967 +"RT @Middleditch: Just to be clear, the president-elect of the United States of America @realDonaldTrump doesn't think that climate change i…",167784 +"RT @AdamBaldwin: “Skeptical Climate Scientists: Here’s to hoping the Age of Trump will herald the demise of climate change dogma…” +https://…",645719 +"RT @AynRandPaulRyan: Other conspiracy theories not about Obama: +❌ Vaccines cause autism +❌ 3 million illegal voters +❌ climate change a ho…",183603 +RT @ClimbCordillera: The Peruvian Andes on the front lines in the fight against climate change #projectcordillera #inspiredbymountains... h…,644988 +"RT @femaleproblems: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https:/…",417921 +"Effects of climate change, fourth water revolution is upon us now https://t.co/ygdqaGipc0 https://t.co/V8wnWzI5H7",634015 +RT @SVChucko: How a professional climate change denier discovered the lies and decided to fight for science https://t.co/q46AxMBWLL by @fas…,855655 +This is just the tip of the denied melting global warming iceberg. https://t.co/xeHfcbDEcs,364166 +"RT @highimjessi: If you're even more worried about climate change after Trump started destroying efforts made to fix it, don't suppo…",818184 +RT @WarariJK: Good to know that global warming hasn't affected July,637913 +LMAO global warming ��������������,584433 +RT @wherami: https://t.co/dzAq5VvqZa - now the SWISS get it. global warming was a scam,54701 +"RT @ItalyMFA: Today is #WorldEnvironmentDay��| #Italy stands #withNature to protect the environment,mitigate climate change,promot…",417381 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",883513 +EPA chief clings to his own fantasy by denying overwhelming evidence on CO2 and climate change via /r/worldnews https://t.co/P0sxAJI8Md,518360 +RT @LangBanks: Sad!... Donald Trump signs order undoing Obama #climate change policies https://t.co/g9AyVjEst3 https://t.co/bEcwFxDXyI,599938 +We can limit global warming to 1.5°C if we do these things in next 10 years https://t.co/cTA9aLguJb #feedly,638621 +RT @RachelAzzara: @realDonaldTrump because you irresponsibly deny climate change and threaten the regulations that protect us and our plane…,961715 +"RT @skywalkertwin: this picture alone just added 50 years to my lifespan, cleared my skin, bumped up my grades, cured global warming a…",697302 +ILoveBernie1: RT rachy36: And why are Labor and the greens not supporting Liberals that are trying to get action on climate change?? #Krist…,167532 +The Sundance Film Festival created an entire section of climate change films https://t.co/uq0lwPzUeL,65065 +"In order for us to meet the threat of climate change; we want action and legislation passed at the federal, state, and local level- Joel",872916 +WATCH: Al Gore refuses to give direct answer when confronted over bogus 2006 claims on climate change https://t.co/wcejO0CdGI,199128 +"RT @SolarAid: “Human-caused global warming continues at a dangerous pace, and only human action to slash carbon can stop it.”…",977732 +Satellites help scientists see forests for the trees amid climate change https://t.co/hPoBLqQO2F,387630 +RT @PopSci: A comic-book cure for climate change https://t.co/w8l51nB9ce https://t.co/vRc2RrMVTE,42462 +RT @marykissel: Slippery language. No one disputes that climate changes. The dispute is over manmade impact (if any) and complex mo…,349811 +Dr Kaudia the environment Secretary and MBA alumni taking the Agri MBA students through climate change. @E4Impact https://t.co/kSL428dOxD,534173 +David Letterman turns global warming reporter https://t.co/xnoj4ji0uB via @Newsday,785799 +Great Barrier Reef just the tip of the climate change iceberg https://t.co/SyMUCx1wkd,403726 +mashable : Weather Channel shuts down Breitbart over 'misleading' climate change story https://t.co/LOtTju98pU … https://t.co/6ZqvxSn9Js,504476 +"âš¡ The Paris Agreement on climate change comes into action + +https://t.co/JDM8RQQynw",32252 +RT @PiyushGoyal: World Bank recognises that India is a now a global front runner in the fight against climate change.…,440593 +my science teacher is a woke king he told us gender is fake and climate change is real,892685 +RT @mlcalderone: Journalists getting to interview Trump keep failing to ask about climate change and actions damaging the environment https…,536460 +RT @thehill: 'Business must lobby Congress in order to get action on climate change' https://t.co/0fgkHYy67E https://t.co/cUa7csXfBF,806307 +RT @SenKamalaHarris: I wholeheartedly disagree. Exiting this deal to combat climate change would truly be a “bad deal” for generations o…,670875 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,681122 +RT @micahdjohn: youre a dumbass if you dont believe in climate change. this shit is happening fast unless this generation does something ab…,781879 +"RT @LOLGOP: The risks of taking climate change too seriously include better public transportation, cheaper power & less funding for feudal…",247068 +RT @lilflower__: If u aren't vegan u don't have a right to complain abt global warming/endangered animals bc if u aren't vegan ur a part of…,112810 +Importance of climate change emergency prep work https://t.co/0KqhUtei3u,603763 +"RT @NewsHour: A big finding of a major new study, @milesobrien reports, is that 'climate change will hit different socioeconomic…",340383 +RT @LoveOceanMtnSun: @tenajd @Cyndee00663219 so global warming is good for Exxon?,401550 +Knowing that your hometown is teaching climate change in school makes this struggle of spreading awareness totally worth it,397696 +RT @jpbrammer: poor communities and communities of color are dealing with the ramifications of climate change in the present. it's a 'right…,292460 +"RT @nytimes: In the Netherlands, climate change is not a hypothetical or a drag on the economy. It’s an opportunity. https://t.co/LY3B69zh8n",46055 +"11/3/17,mark the date when media will tell us,how punjab results wil impact global warming and politics worldwide @rahulroushan @mediacrooks",922725 +"RT @stevesilberman: 50 years from now, if we're lucky, people will look back at this statement on climate change by Trump to @nytimes a… ",420119 +RT @cnnbrk: Judge orders ExxonMobil to turn over 40 years of climate change research. https://t.co/qFDBZ5w3cG https://t.co/TyyQ2uo3Dv,345844 +"RT @RISETogether_NC: Tweets from @BadlandsNPS , which they were forced to delete. @EPA can't tweet about climate change anymore. What's… ",495305 +@ABCPolitics So Hawaii will send Billions to the UN to bribe China and India to address climate change by 2030? Mahalla,575462 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,353591 +"RT @Rich9908: Discussions about Messi being best ever remind me of climate change arguments. It's not a debate, it's not up for discussion,…",697999 +@CTVNews so what do u all think about climate change now. Nothing more then tax grabbing. Trump truly is smarter then the Punk and Premiers,645309 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,775388 +"RT @JoshNoneYaBiz: I guess CNN considers #Gatlinburg to be fake news. You know if it was caused by 'climate change' and not an arsonist, th…",616411 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,137885 +RT @4everNeverTrump: The USA is the ONLY country where global warming is still being 'debated' and is subject to partisan chicanery https:/…,451960 +How are there really people who don't beilive in climate change.. Like what they think is going on????,789115 +Children win right to sue US government on climate change inaction (Video) https://t.co/WiUA8ffrur #DSNGreen,477120 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,471531 +"RT @NYGovCuomo: With or without Washington, we're working to aggressively fight climate change and protect our future. https://t.co/aoGdPrb…",643397 +RT @HuffPostCanada: Trump set to kill Obama's climate change policies: environmental chief https://t.co/7D8AliQCYM https://t.co/yekmwQPRQy,981119 +@KevinJCoupal1 @b_ashleyjensen I guess we should leave climate change to Arm chair scientists like yourself?,905720 +"BBC - Climate talks: 'Save us' from global warming, US urged https://t.co/2IZuHJfzlk",527327 +RT @EricIdle: I think that denying climate change is a crime against humanity. And they should be held accountable in a World Court.,214262 +RT @Tristan_Kidd: Titanic wouldn't sink in 2016 because there's no icebergs to hit (thanks global warming) https://t.co/q2cCwZdhfl,764356 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,285265 +"RT @NPR: Trump will roll back climate change policies today. In a symbolic gesture, he'll do it at EPA hq. +https://t.co/ZMavwtrcfB",109031 +RT @monkeybeach: Electing a fascist is terrible enough. But putting a climate change denier on the throne now literally threatens our survi…,889920 +Beware a zombie Paris Agreement: Stopping climate change now depends on trusting Donald Trump - https://t.co/eomCTBAB1K,918544 +"RT @Attitudega: Stop global warming, the animals are melting! ภาวะโลกร้อน…เป็นเรื่องจริง ร้อนจนละลาย ภาพจาก: reddit/bwt2017/varric…",345862 +Who gets the climate change risk? The Navy! Ray Mabus shows how businesses can learn from its steps to mitigate risk https://t.co/t3DyCQzV7u,626861 +@ClarkeMicah That strike me as misguided - to prioritise the economy is to ignore the expert consensus on the reality of climate change.,407425 +Students shoot climate change video for PBS project - The Daily Citizen https://t.co/6RCjnmY2EW,112891 +@ryanpendleton @winterlongone @MinoltaXKUser lol im not saying I believe in that or that global warming is fake. Just saying other views,892965 +RT @BraddJaffy: Trump budget director on climate change funding: “We’re not spending money on that anymore. We consider that to be…,500622 +RT @JohnStossel: Trump’s election won’t stop deceitful climate change propaganda: https://t.co/KDfK3N97AD,359206 +RT @ThePatriot143: #AndThen =>German Chancellor Angela Merkel characterized climate change talks with Trump as “very unsatisfying.” https:/…,132398 +How can people still deny climate change?,141932 +General Keys: The military thinks climate change is serious https://t.co/bYudpxm6D8 https://t.co/62PHi1sjTP #ClimSec2016,27158 +@robpertray thats the definition of climate change. there is no difference on that info graph that says its worse now than 1000 years ago,312699 +RT @heynottheface: How does San Diego manage to dodge any major impact from climate change? https://t.co/1hHDINpLPc,641045 +@LeoDiCaprio 'Before The Flood' opened my eyes to the horrors of global warming. Keep making these documentaries until the world is aware,548793 +"Unfortunately the global warming hysteria, as I see it, is driven by politics more than by science. + -Freeman Dyson +.,",614023 +RT @jilevin: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/1hgEfWhO8j https://t.c…,195809 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,462314 +@davidaxelrod So true but @realDonaldTrump is a climate change denier. He is doing everything he said would to the environment.,505590 +RT @TomFitton: Great speech by @RealDonaldTrump. Calls out climate change corruption and cronyism.,475827 +"RT @realJakeBailey: Mankind's impact on climate change. What say you? + +Vote and Retweet",347787 +High level #climate change adaptation panel discussion ongoing. Prof Shem Wandiga says no 'silver bullet for adapta… https://t.co/ONjfzrgTi8,246778 +Man has no significant effect on climate! Hence the name change from global warming hoax to climate change hoax! https://t.co/7G1rtaES9H,974119 +RT @audubonsociety: Nearly half of all North American birds—314 species—are severely threatened by climate change.…,585186 +The Groundhog is a Hollywood construct used to teach young snowflakes about climate change and healthy school lunch… https://t.co/N1v6RZ5d0Q,76203 +RT @CNN: Sanders: I agree with 'overwhelming majority of scientists who believe that climate change is real' #SandersTownHall https://t.co/…,637597 +"If you know where someone stands on abortion or masturbation, you'll know where they stand on climate change' @Brooks_Rob #nswwc",999983 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",465780 +@brianstelter @jimsciutto what does climate change have to with CIA - ZERO just another piece of Corrupt News Network dishonest & fake news.,735013 +"discursive use of climate change to justify the provision of new +military hardware and advanced biofuels' https://t.co/74YQJXL4FW",290151 +"RT @nytimes: The U.S. used to push China to meet climate change goals. After Trump undid Obama's policies, the roles may reverse https://t.…",347870 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/OeFVESAcju,446311 +"socio- media is key in addressing climate change #JustWrite @ ceackenya @paulakahumbu @vcuonbi .It affects us all, let us fight it jointly",408612 +Beautiful #dataviz by @nytimes on future of climate change under trump. https://t.co/7GIxk6maAj #eabds,196509 +@StefanMolyneux dude u think climate change is a chinese hoax. that's all you need to know about yourself,129739 +RT @BetsyRubin: Tune to @WBEZ at12:40pm (Central Time) to hear scientist Michael E Mann who boldly stands up to climate change deni…,624840 +People don't believe in global warming because it's more convenient for them to not take responsibility for their actions😊,806364 +RT @jamestaranto: I blame global warming. https://t.co/tN1jnNYS3P,616197 +RT @ABC: Biden urges Canada to fight climate change despite Trump https://t.co/a55uP6ouFh https://t.co/1RDuWYS7yt,376651 +7 things NASA taught us about #climate change https://t.co/DHIPMK4QT6 https://t.co/gqy6g9Kk8t,568226 +RT @thehill: Trump set to dismantle Obama climate change agenda: https://t.co/PSQmZCn8YQ https://t.co/OTUFU6bAXB,51453 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,646773 +"RT @arguertron: global warming is real, and caused by humans",462459 +"RT @telesurenglish: To curb climate change, we need to protect and expand US forests https://t.co/hSXtGqqdNN https://t.co/Egl5whkrDi",932633 +RT @USFreedomArmy: Or maybe it is just that the global warming nuts are being given a sign. Enlist with us at https://t.co/oSPeY48nOh.…,420183 +RT @Medact: Record-breaking climate change pushes world into ‘uncharted territory’ - WMO figures released today https://t.co/LkQz47uxB2,992903 +"RT @narendramodi: Talked about issues such as avoiding conflicts, addressing climate change and furthering peace.",968742 +RT @CNN: Judge orders Exxon to hand over documents related to climate change for probe into whether company lied to public…,345859 +@destiny_113 @GMA Crazy for believing in the truths of climate change and the lasting repercussions?,890862 +@marcusbrig But what do they have to help repel fascists? Does bug spray work? Do solar panels work on climate change deniers?,674121 +RT @ajplus: Indigenous activist Xiuhtezcatl Martinez is suing the federal government to demand action on climate change. https://t.co/PnjHO…,268219 +RT @kurteichenwald: Conservs can keep pretending climate change is a hoax but other countries arent gonna be putting up with it anymore. ht…,7655 +RT @wef: Are these the innovations that will save us from climate change? https://t.co/Ll3k7tYxKy https://t.co/Yctc9jcCiR,497236 +@JennyForTrump - Aren't these the same folks always yelling about climate change and protecting the environment?? LOL,186163 +Everyone should go watch Leonardo Dicaprio's documentary 'before the flood' it showcases extensive research on climate change,706987 +@Newsday he should walk to German. I guess he doesn't give a f*<k about carbon footprint and global warming.,128531 +Trump's energy staff can't use the words 'climate change': https://t.co/CDkCs7vf7L,315675 +@RY_dinDiiRtY some people are color blind 😳😳 (I believe in climate change btw),746780 +RT @rosellaphoto: Ignore global warming & we're ALL FIRED #marchforscience #marchforsciencesf https://t.co/ohDYQfvdUc,968654 +"China eyes an opportunity to take ownership of climate change fight https://t.co/Vfw0rrinFZ #itstimetochange #climatechange, join @ZEROCO2_;",252133 +RT @KirstySNP: DUP MP says their climate change position is in their manifesto. There's no mention of climate change in their manifesto...,53344 +RT @relatabledinahj: Dinah with puppies could cure global warming https://t.co/6sNyzvHJF8,933095 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",161392 +Unamshow awache kujinga na iko global warming https://t.co/mhIflU7M1X,694317 +RT @yourlru: Our next president is a rapist that steals money from children with cancer and thinks global warming is made up :),682757 +@BlackPsyOps did you know Rothschild stole $67 trillion from Barack Obama climate change in 2012.JEWISH MAFIA ROBBED ALMOST 50% OF U.S.,583969 +Join @Ecotrust this Thursday to learn about Paul Hawken's plan to reverse global warming! https://t.co/kRAIRLk1gt https://t.co/SHBJy1HUD0,230320 +Some Trump supporters just went back in time and caused global warming making this Samurai sweat https://t.co/INGLJCzJH4,927233 +Australia's military has been training for climate change impacts for years. Conservative politicians denying clima… https://t.co/l0OmXcTAm5,702609 +RT @guardianeco: Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/nalBHXyaKY,449579 +Now 'climate change' blamed for causing PTSD... https://t.co/JxEp87XY42,52493 +"RT @Education4Libs: The only climate change there is, is the climate that has changed in Washington. We now have a President who is putting…",275488 +"Catastrophic storms, once rare, are almost routine. Is climate change to blame?: LA Times… https://t.co/IUk0FWbv9x",308521 +RT @jjvincent: trump's position on climate change will kill the planet (faster) https://t.co/U5jiKHXZkQ,960368 +RT @NewYorker: The U.S. government’s meaningful participation in the fight against climate change appears to be at an end:…,275530 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/bv4ov9FWZc,833217 +"if global warming doesn't exist, HOW AM I STILL ABLE TO WEAR A TANK TOP AND SHORTS WHEN ITS ABOUT TO BE DECEMBER ???!!?!!!!!?!$)!!?):&&3:929",800449 +Washington Post editorial board has it right: There’s no conserving nature without tackling climate change… https://t.co/mCxpUgcSTt,244138 +RT @WhipHoyer: Alarmed by questionnaire from Trump transition team seeking names of civil servants wrking on climate change policy…,642606 +RT @altNOAA: The Bernie Sanders/WV town hall on MSNBC this evening was interesting. Coal miners extremely concerned about climate change. G…,370237 +"For the first time on record, human-caused climate change has rerouted an entire river https://t.co/z1O54kD0xm",36966 +".@Juliansturdy Please don't let the DUP call the shots on abortion, gay rights or climate change. #DUPdeal",12748 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",465047 +RT @USFreedomArmy: Man-made global warming is still a myth even though they now call it climate change. Enlist ---->…,688977 +RT @TheNewThinker: I just wanted to post this and remind everyone that we are putting a climate change denier in the White House https://t.…,843598 +Even Donald Trump will not have the power to change the laws of physics. He will have to accept climate change.'#COP22,790157 +"When POTUS does not believe that climate change is real, it is very chilling. Pun intended..#ParisAgreement https://t.co/0KUnioO68V",242160 +#OurWild can’t wait while Washington denies climate change. Join the #ClimateMarch April 29. https://t.co/rZ08IdlY0N https://t.co/SBLPEUZMPS,628826 +This photographer is documenting the unparalleled beauty—and effects of climate change—in America's national parks https://t.co/eZF4TmcsRB…,446288 +RT @thelollcano: Your MCM denies climate change despite empirical evidence,322424 +630 of America's biggest companies are pleading with Trump to give up his climate change denial https://t.co/CJyvdWMHKr,803087 +"RT @thinkprogress: Trump's latest proposal eliminates all spending on clean energy and climate change +https://t.co/yAWZ3sdxwT https://t.co/…",634079 +some law prof. from UMich tried to tell me that climate change was an 'elitist problem' & that 'real people aren't… https://t.co/V7ZmRd8BGq,825627 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,961667 +"RT @PattyMurray: I'm very concerned w/ the nomination of Rick Perry to lead the Dept of Energy w/ his past statements on climate change, ti…",33808 +"RT @Conservatexian: News post: 'Trump scrubs climate change from https://t.co/w7krTPN3Nl, replaces with 'America first energy plan'' https:…",198272 +"$XOM: New York, probing #Exxon on climate change claims, says Sec. of State Rex Tillerson used alias as @APBusiness https://t.co/0Tezwxo8bP",990123 +"Two major conferences on corporate governance, climate change to be held https://t.co/jCulaA5zmj",469488 +"THE INDIPENDENT - Unsung heroes of 2016: An escaped sex slave, an LGBT rights campaigner and a climate change poet https://t.co/BOVJpcIXpU…",463957 +"Trumps head of epa, Mr pruit, doesn't believe in global warming so why is vw paying anything in damages in america,",880361 +"RT @Water: 'water security is closely linked to migration, climate change risk, and economic development' https://t.co/pC2buYcMpB via @circ…",584773 +RT @GadSaad: I hope that @BillNye will soon weigh in on the #manchesterattack & explain how it is plausibly linked to climate change & sola…,374553 +@theblaze The global warming crowd are the same people who deny that an unborn baby is a human being so science and… https://t.co/vRrdU39XtW,183275 +"RT @Renee_Brigitte: Crippled Atlantic currents triggered ice age climate change +@j_cherrier #bc_ocean2017 +https://t.co/GwQOz55nqX",113375 +"Physicist - CO2 does not cause climate change, it RESPONDS to it - Video https://t.co/lySZb7gClh",190844 +My riding's MP is giving a talk at my school today on climate change. Such a joke. This ocean protection initiative is just a distraction.,795230 +"RT @PeterGleick: Some don't like scientists talking re #climate change during disasters, so before #Irma strikes: Caribbean water te…",444102 +"RT @decentbirthday: [camping] + +me: why can't i find any animals + +wife: the wildlife is very conservative here + +deer: climate change is a my…",259635 +"RT @SteveSGoddard: To be fair, @algore has made a fortune pushing his global warming scam. Leo may be on to something. https://t.co/k2MK56w…",497056 +"RT @BoF: The world has 3 years left to act on climate change, say experts. How could this impact fashion? https://t.co/VmMKE71LwZ",205201 +Philippines' Duterte signs Paris pact on climate change - Reuters https://t.co/gMWQynpVt2,830570 +"Weber-Davis environmentalists group hopes to encourage citizens to push Congress for action on climate change. +https://t.co/hPWpeSbLoG",177632 +Switzerland wants to save a glacier from global warming by literally throwing cold water on it https://t.co/xtezxfITfC,874661 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,204768 +RT @tweetskindeep: Do you work in food and climate justice? We want to hear from you about the impact of climate change on out food cu…,426709 +@LucasHadden i'm saying the new york times saying climate change is a leftist idea is.,666101 +I swear if y'all could blame LeBron for global warming y'all would,728666 +RT @WorldfNature: Bloomberg urges world leaders to ignore Trump on climate change - Chicago Tribune https://t.co/28bqezZV9B https://t.co/j3…,622683 +Vice president Al Gore at NetRoots 2017 talking climate change https://t.co/c5Hee9QnNG,539304 +"@CurleySueView Indeed,due to global warming...! ��",490246 +RT @anipug: If you don't believe in climate change please unfollow me,862832 +"Duterte:After much debate, 'yung climate change (deal) pipirmahan ko because it's a unanimous vote except for one or two. (via @ABSCBNNews)",91092 +"RT @ImranKhanPTI: President Trump's decision to pull US out of the Paris Accord on climate change reflects a materialistic, selfish & short…",629284 +Glad more of the coast can be swallowed up by coastal flooding as we allow our environment to deteriorate further and deny climate change 🙃,581779 +@ichiloe @KHayhoe scary. just scary when large masses of people cannot understand simple things like climate change,767922 +RT @FijiPM: PM invites President-Elect @realDonaldTrump to visit Fiji and see effects of man-made climate change for himself…,207825 +RT @YEARSofLIVING: Scientists highlight deadly health risks of climate change via @CNN https://t.co/X1IYWkUy6D #ClimateChangesHealth,488877 +RT @MsMagazine: Women of faith are mobilizing for renewable energy and environmental protections that slow climate change:…,290673 +"meanwhile, climate change https://t.co/MmCMZQvBlM",587933 +Here's what President Trump's climate policies could mean for global warming https://t.co/9Wzl3vzVKc https://t.co/S1inc66aZV,12343 +RT @businessinsider: National Park deletes factual tweets about climate change amid Trump crackdown on agencies https://t.co/uGpirOjEjn htt…,991667 +RT @bertieglbrt: this evening's activities: i tickled my girlfriend while pretending to be leonardo dicaprio explaining climate change,366178 +"RT @alfonslopeztena: Even @FoxNews is ripping into Trump's EPA chief for denying the basic science of climate change. +Watch—> +https://t.co/…",990370 +China takes more of a lead with climate change efforts in the Pacific .. https://t.co/rWcDCrqRSC #climatechange,345018 +RT @RaheemKassam: World leaders duped by manipulated global warming data https://t.co/Lx7phvN17F,900182 +RT @Crof: Oh boy: Trump’s Climate Contrarian: Myron Ebell Takes On the E.P.A. https://t.co/JhAxWaoQos #climatechange? What climate change?…,23133 +Fabulous! Leonardo #DiCaprio's film on #climate change is brilliant!!! Do watch. https://t.co/7rV6BrmxjW via @youtube,813652 +"The issue offers our liberal shepherds no opportunities for virtue signaling on capital punishment, global warming… https://t.co/1zob4zK6Bz",155474 +RT @backpackingMY: Negara paling rendah di dunia adalah Maldives. Dijangka akan tenggelam kerana global warming pada suatu hari nanti. Jom…,265814 +"Tens of thousands #marchforscience, against Trump's threats to climate change research https://t.co/B1gDFMLzBo via… https://t.co/XTzNBTmpWP",976781 +"Exxon played us all on global warming, new study shows https://t.co/F2pin7rUn7 #media #articles",853893 +RT @Greenpeace: 7 things you need to know about climate change: https://t.co/yvrSubXBk2 #ClimateFacts https://t.co/9Nu2HRvSNj,125784 +"RT @PublicHealth: How climate change affects your health, in one graphic: https://t.co/Bd4DfhRUww #ClimateChangesHealth https://t.co/99j3W0…",722067 +"RT @actionskills: Communicating climate change: Focus on the framing, not just the facts @ConversationEDU + https://t.co/iECoV6FOMI https:/…",203641 +"Chilling: +1. Trump wants to divert NASA $$$ from climate change to space exploration +2. Thiel wants to colonize space for libertarian utopia",455687 +pls don't tell my global warming isn't real when the high today is pushing 90 degrees 🙃,21780 +"RT @APWestRegion: California Gov. Jerry Brown & predecessor, Arnold Schwarzenegger, hail climate change plan while condemning Trump…",739736 +RT @PakUSAlumni: How does climate change affect economies? Debate underway in @ShakeelRamay session #ClimateCounts #ActOnClimate…,663336 +@IvanTheK I did get duped into climate change denial twitter... never going to do that again!,669160 +"For the first time on record, human-caused climate change has rerouted an entire river - The Denver Post… https://t.co/yKV9cIFWwh",99220 +RT @PolticsNewz: Donald Trump actually has very little control over green energy and climate change https://t.co/wVzo7RzD1Z https://t.co/OT…,736519 +"After 4 great talks at #AfricaIn2017, Q&A begins. Regional cooperation, role of cities, and consequences of climate change discussed.",162533 +"RT @VABVOX: Yaass queen. + +Ivanka from Brighton sends climate change reply to Donald Trump https://t.co/MgpVFt7iZf",272392 +RT @jimsciutto: .@JustinTrudeau mentions US-cooperation on climate change - perhaps a subtle message to new POTUS?,809568 +"RT @AMKlasing: El Niño on a warming planet may have sparked the Zika epidemic, scientists… https://t.co/9p8NmcKPgP",408446 +"RT @washingtonpost: Steps to address climate change are 'irreversible,' world leaders declare in Marrakech https://t.co/ca9MfMSnXO",293618 +RT @BobTheSuit: Adult me must concede that a major contributor to global warming was kid me leaving the front door open and heating the who…,614427 +"RT @postgreen: In Greenland, a once doubtful scientist witnesses climate change's troubling toll https://t.co/1opgXzLdch https://t.co/cvSL6…",448949 +RT @Picswithastory: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/rgj37bMaRQ,434123 +Australia PM.s adviser: #climate change is #UN #hoax to create new world order https://t.co/EMrSUJPoOu #global #warming #NWO #newworldorder,694186 +RT @austincarlile: Maybe all of you that don't think climate change is real will disagree with this one too: https://t.co/qYAyKysi84,480120 +"AI will make farming immune to climate change by 2027, say Microsoft researchers https://t.co/bMARTDx9yI https://t.co/gTdHHTnA2m",343589 +@patrick_winderl I just heard just now that Trump has named a climate change denier from Oklahoma as head of the EPA. Name is Scott Brewer--,595575 +@chaamjamal When eco-warriors blame Bangladesh flooding on climate change they fail to recognise part played by cut… https://t.co/6yNFMCVUqx,880717 +RT @THEHermanCain: Slipped into unrelated story: AP labels Trump EPA choice Scott Pruitt a 'climate change denier'…,302744 +"RT @robreiner: Stops Nat'l parks from informing on climate change,lies about the election. DT is a sick childish embarrassment destroying o…",631761 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",706535 +"RT @antonioguterres: I call on world leaders, business & civil society to take ambitious action on climate change. https://t.co/wl19gZYecm",121619 +Sea levels 'could rise higher than a three-storey building due to climate change' https://t.co/Hee8NeKOtl,177940 +"RT @ClimateTreaty: Without action on climate change, say goodbye to polar bears - Washington Post https://t.co/8C3JHS7v9m - #ClimateChange",94004 +"RT @ClimateRevcynth: February’s record warmth, brought to you by climate change https://t.co/Gz7cVqOOSA @ClimateCentral https://t.co/Hh4Lrc…",300637 +RT @Lisa_Palmer: A new app helps you make connections between NASA satellite data and global warming in your backyard. https://t.co/IndG7EQ…,324458 +Sadly my parents are those people who think climate change isn't a problem and voted for trump,336980 +@GolfDigest I'd love to see Trump 'scuffing' at global warming! #golf #proofread,3151 +RT @HuffingtonPost: China to Trump: climate change is not a Chinese hoax https://t.co/3DVlIwAqjb âž¡ï¸ @c_m_dangelo https://t.co/y1ZqEW8Hcv,390611 +@guardian The failing of renewables will boost the finite unrenewablies contribution effect on climate change bigly. Enjoy @realDonaldTrump,336024 +"RT @CulinarianPress: This is how technology can help us fight climate change + +Swedish supermarkets replace sticky labels w/ laser marking h…",811013 +"RT @jasonnobleDMR: Make no mistake: this is a tough crowd for @joniernst. Many of her talking points on health, climate change are being me…",920143 +"RT @StopTrump2020: However, since Trump tells us climate change is just a #ChineseHoax I guess I don't have to worry #LiarInChief… ",824716 +"RT @CECHR_UoD: An ingenious solution to climate change - turn CO2 into fuel +https://t.co/L5woHlHLjO HT @zeekay15 https://t.co/FgRduedKLa",453544 +Ice age climate change https://t.co/7WWPUQQ6Lf,368830 +@sendboyle @realDonaldTrump nuclear war is a bigger danger than climate change https://t.co/8rY6PJxQci,556824 +"RT @MLCzone: 'France, U.N. tell Trump action on climate change unstoppable' - https://t.co/y6AR72MDvw",744397 +@RogerPielkeJr ... seeing what you have gone through in the climate change world has been eye-opening and disheartening,647697 +"climate change deniers, young earth creationists #madasaboxoffrogs https://t.co/oaM1aEBlxb",539985 +"The new normal of weather extremes On World Meteorological Day, DW provides an overview of how global warming is…… https://t.co/4oJ5aYhKUq",399389 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,715168 +"RT @jonaweinhofen: Reminder- eating meat means you fund animal cruelty & slaughter & deforestation, global warming, species extinction…",784741 +NY Attorney General uncovers email alias used by Rex Tillerson to discuss climate change at Exxon https://t.co/Ne9HWaYFE9,117318 +"Estados Unidos: Elite US universities defy Trump on climate change, , https://t.co/L81zn0aS3B",568817 +I still have a hard time understanding that some people do not believe climate change is a thing,377392 +RT @Fusion: Peru is suffering its worst floods in recent history—and some scientists say global warming is to blame: https://t.co/y2yJcShEOl,111643 +RT @LanaDelRaytheon: ⠀ ⠀ ⠀ �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� howdy. i'm the climate change sheriff. yo…,8723 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,262101 +Sure doesn't feel like global warming out there today.,551225 +"By 2030, half the world’s oceans could be reeling from climate change, scientists say https://t.co/heH1nBMhE4",377121 +RT @JGale363: Thomas Stocker technology is necessary to solve climate change- CCS is one of those technologies #GHGT13 #ccs https://t.co/8m…,388278 +RT @GlblCtzn: The mayor of Paris has a simple solution to ending climate change – put women in charge. https://t.co/tI44nqnudE,387855 +"RT @HarvardChanSPH: Watch live on February 16 as @HarvardGH, @ClimateReality discuss climate change and health https://t.co/M7sIJxu3k0… ",396758 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,821375 +"@DemocracyNow Correct!!! +How many ideas on combating climate change been offered from either of these poor candidates? +Neither Dares Address",307577 +Amazonians call on leaders to heed link between land rights and climate change - The Guardian… https://t.co/OcuiDZ38IF,11874 +RT @BraddJaffy: 'You and your friends will die of old age and I'm going to die from climate change.' https://t.co/Yl2oSriNbs,152947 +physorg_com: New research predicts the future of #coralreefs under climate change https://t.co/GVM16vPpAE,373196 +"RT @GeorgeTakei: 1 day before the #climatemarch, Trump administration removed climate change pages from the @EPA website. + +This is y…",681799 +RT @Destroyingvines: When you accept climate change and move on with your life ⛷️ https://t.co/8MvqkGySHc,195033 +& the ones who care about all of these mass animal extinctions/global warming/world hunger yet won't do the one bes… https://t.co/IT02GFQ1FK,470515 +"@DC_Resister_Bee @realDonaldTrump Kind of like 'nobody really knows for sure' if climate change is real. + +Welcome to the world of #LowT.",542193 +Invention News(6)-New virtual Reality Games/Nose shaped/Mushrooms/global warming...Must watch: https://t.co/wi6CG2hUT9 via @YouTube,786188 +Scientists in search for 'Goldilocks' oyster to adapt to climate change https://t.co/UXTDEA7dZ9 via @ABCNews,952036 +@ClimateReality @KHayhoe I agree but your framing is bad. Saying clim change is fact only reinforces the 'truth question' of climate change.,782706 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,232723 +RT @FreeFromEURule: @onusbaal2015 @can_climate_guy Dear climate alarmists. The sun is the driving force of climate change.always has be…,443670 +RT @motherboard: New simulations predict the United States' coming climate change mass migration: https://t.co/DkxlOtgNlk https://t.co/pY4J…,685079 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",276015 +RT @TLDoublelift: if global warming isn't real why did club penguin shut down,373750 +"@doncollier predjudice? That he feels that Brexit, climate change and lack of privacy are bad? Where's the predjudice there? @arusbridger",956265 +"RT @MichelleBanta3: @attn @billmaher It's global warming that the Republicans think doesn't exist , yet they believe Jesus made blind men s…",847491 +RT @Pete_Burdon: Trump given short shrift over climate change threat https://t.co/nkOHA1dEu4 via @FT #COP22,511736 +This whole winter weather debacle is only further proof that going with the name 'global warming' was a very poor branding decision. #pdxtst,301549 +RT @RheaButcher: People who think climate change science is a hoax out here screaming about biology-defined sexes,491260 +Biodiversity loss shifts flowering phenology at same magnitude as global warming #ResearchAndDevelopment https://t.co/KBWWgiIwCy,502197 +Was super excited about the @BillNyeSaves series but turns out it's just his soapbox for political views and climate change. #Disappointing,972927 +RT @Davidxvx: Great to hear @jacindaardern describing #climate change as this generation's equivalent of the fight to go nuclear free. Trut…,740869 +"RT @siddharth3: Do you have any questions on energy and climate change that you'd like answers on? I'm compiling questions for writing. RT,…",519113 +Trump names climate change skeptic and oil industry ally to lead the EPA https://t.co/AhStZnMVcz #ImWithHer,573875 +RT @MrAlan_O: @GeorgeTakei @attn @GeorgeTakei Trump will get global warming when his ice cream melts faster than his hot dog cool…,858962 +"RT @LindaSuhler: Left loves Everlasting Gobstoppers like climate change they can tax/regulate in perpetuity. +Bad water in Flint? Eh. +It too…",528969 +"I don't like this whole global warming thing. If you're going to destroy a planet get a Death Star and do it, don't make them suffer. +-Vader",570551 +RT @KHayhoe: Has Trump made people care more about climate change? This May @ecoAmerica survey suggests the answer is - MORE! https://t.co/…,883034 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,169392 +Jerry Brown: California 'ready to fight' Trump on climate change https://t.co/fYEHB86b5u,269695 +RT @EnvDefenseFund: Is global warming real? A 30 second answer. https://t.co/dNGbBcBk6Y,47454 +"I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood +https://t.co/NGGY8jVtVC",391822 +"#Wisconsin people, climate change is real Vote #democrat Stand against @PRyan and show him actions speak louder https://t.co/sic6JdCyTw",628083 +"RT @washpostbiz: Record-breaking climate events all over the world are being shaped by global warming, scientists find https://t.co/LNTDTh8…",644328 +RT @pferal: That's his most palatable quality! He's a hunter pal of the Trumps who denies climate change+is a glutton for oil d…,436950 +Trump poised to undo Obama actions against climate change https://t.co/yVnAcyMH2J,26551 +RT @FAOstatistics: Norway to boost protection of Arctic seed vault from climate change https://t.co/6fvmfH8JcD,647139 +"Record-breaking climate change pushes world into ‘uncharted territory’ + +https://t.co/3Yem7OZjIO",179680 +@marcherlord1 Bird shit and tree sap is global warming?,363692 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",483048 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,540983 +@TheFacelessSpin Both carbon emissions and non-climate change air pollution drive health impacts. Both of which are… https://t.co/ekev462Wgo,788092 +What global climate change may mean for leaf litter in streams and rivers: … greenhouse gas… https://t.co/xw6kRtO6zs,205106 +RT @wittier: 'Where should you live to escape the harshest effects of climate change?' https://t.co/fFNVgTIF4m #SCIENCE @cindyc… https://t.…,785011 +@pestononsunday @jeremycorbyn Do you think Climate Change is our biggest challenge? What should UK's role in tackling climate change be?,33426 +"RT @BethR_27516: LOL!! 😂😂 +Hint: if u don't get the joke, u should STFU about climate change being a 'hoax'. And take a damn physics… ",338299 +RT @thehill: Energy Dept. tells employees to stop using the phrase 'climate change': report https://t.co/YWH82assdW https://t.co/ARsk0LFF2g,240223 +"RT @Ch2ktuuWX: Majority of Alaskans believe climate change is happening, according to a Yale report. Check out the interactive map…",514220 +"@realDonaldTrump Please reconsider your view on climate change. Global warming is a serious issue, and cancelling our deal with 160 other(1)",767021 +RT @MotherJones: Donald Trump's interior secretary pick doesn't want to combat climate change https://t.co/GfdXNzADYl,458376 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,871950 +RT @TheMarySue: The EPA has apparently been ordered to pull climate change data while their gag order is in effect. https://t.co/QzVufTpmjE,648034 +RT @thehill: California signs deal with China to combat climate change https://t.co/IL7NU32w0H https://t.co/eVDR3t5XdS,302254 +"New head of the EPA is disputing climate change scientists over the cause of climate change. +The head of the EPA +Who denies climate change",638987 +RT @FastCoDesign: Donald Trump can deny global warming; cities can't https://t.co/LgvHdgL1cI #cityoftrump,543051 +Koalas don't like water but they're being 'driven to drink' by climate change https://t.co/tj3NDWFHr1,518964 +RT @EricBoehlert: fighting climate change has become the new background check bill: everyone supports it except GOP members of Congress,205963 +"BlackRock to put pressure on companies to focus on climate change, boardroom diversity https://t.co/Md35lKtODL",895438 +RT @HuffingtonPost: Swedish politicians troll Trump administration while signing climate change law https://t.co/zGy9jrVL6c https://t.co/n9…,838812 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,396598 +RT @Picassokat: Rex Tillerson's ExxonMobil is planning for global warming but he will do everything humanly possible to stop his country fr…,9385 +Is this what global warming feels like it's the middle of dec where's the cold? it's 75 out wtf mate #globalwarming,53503 +"We don't need a wall, we need actual...maybe walls around Houston, to make sure that climate change doesn't swamp it...!!!' @JamilSmith ☝��",857881 +Nature-based solutions (i.e. managing watersheds) can provide ~30% of the solution to limiting global warming to 2°C https://t.co/3zQVTaWD2A,899149 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,983942 +"RT @EnvDefenseFund: If you’re looking for good news about climate change, this is about the best there is right now. https://t.co/ludJsGUlJm",717325 +business: Bison returned from the brink just in time for climate change https://t.co/QNMtfnjrWv via climate … https://t.co/h7bEu2GEGb,193613 +But global warming isn't real right? #fools https://t.co/3Ru7Cts5Id,287333 +@catrincooper @leahmcelrath climate change is affecting us NOW and I fear the president elect doesn't take any of it seriously.,242144 +"RT @stillawinner_: - why are you naked? +- global warming",966042 +@plough_shares You should buy Honest Howie Carbon Credit to stop global warming,167148 +i will shut up about climate change once we stop electing anti-science politicians,3451 +...it's ok don't worry @realDonaldTrump says climate change is not real! https://t.co/LDDEYPuBs8,223188 +RT @jimalkhalili: Global mean sea levels have risen 9cm in my children's lifetimes. But probably just some climate change conspiracy…,571929 +"If you're looking for good news about climate change, this is about the best there is right now - Washington Post https://t.co/Mt8V1ksRZs",484537 +That's global warming for you! https://t.co/Cn7BpMnzoy,261371 +"RT @Snitfit: @TIME mag's 51 climate action suggestions in 1977 were so effective, they caused global warming in 40 years. �� https://t.co/jm…",333480 +RT @World_Wildlife: Saving forests is crucial to fighting climate change. WWF's Josefina Braña-Varela blogs for #BeforetheFlood: https://t.…,717182 +"RT @CECHR_UoD: Eating less meat essential to curb climate change +http://t.co/J3gbSv5HDU not veggie - just less will do http://t.co/jakVKabE…",18369 +"@lisaschroder21 considering science unanimously agrees that climate change is happening, that's a ridiculous and baseless statement",239212 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,713047 +"@karengeier @DolanEdward @IzzyKamikaze Well ACTUALLY Paul I think what's more concerning is run away global warming, rising sea levels and..",896499 +"Google, Amazon, Facebook, Microsoft and Apple all commit to Paris Agreement on climate change -... https://t.co/ysh23Plfub",19234 +RT @WorldfNature: Great Barrier Reef is A-OK says climate change denier as she manhandles coral - Mashable https://t.co/BfBSalv3bF,576063 +RT @DebErupts: California is a global leader on environmental issues. While other states debate whether or not climate change is real. #Cal…,865976 +RT @NYTScience: This is one effect of climate change that you could really lose sleep over https://t.co/aVFdK0MvFc,865858 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,214133 +"@Jrhippy @VP @POTUS @GOP and even if climate change were a hoax, do we still want the pollution that an upsurge in coal will bring?",7500 +RT @thehill: JUST IN: Trump admin refuses to sign international climate change pledge https://t.co/IMyC8QCbky https://t.co/pbTshtz1ru,461792 +and Trump doesn't think climate change is real!!!!!!!! https://t.co/ukUycBkpBS,909060 +RT @thehill: Trump EPA chief calls for televised climate change debate https://t.co/1CfnpHuwXB https://t.co/hDfSNgUSMA,896636 +@ciccmaher @AbbyMartin Number of people screwed by climate change - -9 billion+,923236 +I support the fight to prevent climate change disaster. Will you join us? https://t.co/i6qbH0kQ0b via @nextgenclimate,363209 +RT @UWE_GEM: Talk on 15 June - Society vs the Individual: focus on air pollution & climate change. Book tickets here https://t.co/Eg1Kfnvzm…,943350 +RT @PolitiFact: Energy Secretary Rick Perry wrongly downplays human role in climate change https://t.co/n5Zh144CPa https://t.co/GHxyIgjnnO,23718 +@stevebloom55 me too I 'm in panic about climate change then I m searching for consistent market driven solutions… https://t.co/cLzHkCmeCe,732753 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,436406 +Did a “landmark paper that exaggerated global warming” trick 195 governments into signing the Paris climate deal? https://t.co/R7WW2b3KyA,226552 +"RT @JamesMelville: Pro fox hunting & death penalty +Denies climate change +Opposes gay marriage & abortion +Paul Nuttall: Poundshop Trump htt…",995707 +"RT @tomgreenlive: This sucks - In executive order, Trump to dramatically change US approach to climate change @CNNPolitics https://t.co/9wD…",860633 +I'm genuinely concerned that we let a man into office that doesn't believe in global warming and thinks it's a Chinese scam??????,283389 +RT @EBAFOSAKenya: #Ebafosa through #InnovativeVolunteerism is changing Kenya's climate change adaptation & economic landscape by inve…,828750 +@HealthRanger the earth is flat and climate change is not real and does not matter.,750985 +RT @NRDC: He claims the planet is cooling and questions climate change. Who is...our next energy secretary? https://t.co/h5aTqEFbUg,10691 +RT @newscientist: Trump could land fatal blow to the fight against climate change https://t.co/zPo0wntgIb https://t.co/FBIaQwPsur,968989 +"RT @erasmuslijn: You can't dispute science. We know for a fact that: +- global warming is real +- trans people exist +- the proletariat will b…",283169 +RT @Anthony1983: A poem I wrote for @TheCCoalition on climate change. Directed by Ridley Scott Associates with @Elbow & Charles Dance https…,479441 +"RT @BadAstronomer: Deniers gonna deny, but new research puts the last nail in the coffin of the global warming “pause”.… ",49000 +"While global warming has affected the whole planet in recent decades, nowhere has been hit harder than the Arctic. This month, temperatures",895112 +RT @KimKardd: We have to face the reality of climate change. It is arguably the biggest threat we are facing today.,89198 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,731498 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,873492 +RT @harvestingco: Adapting agriculture to climate change https://t.co/J10Z89ebfZ @FAOclimate https://t.co/2cAdYghyZb,748686 +RT @guardianeco: Shareholders force ExxonMobil to come clean on cost of climate change in 'historic' vote https://t.co/AG77Gz1dbG,493732 +"RT @LloydDangle: I was honored to do two days of scribing about climate change for @InstituteatGG, #teachclimate! http://t.co/D2fkAxis5w",666504 +Thick girl weather damn near nonexistent thanks to global warming,291794 +"RT @SeanMcElwee: Everything is on the line in 2018. DACA, climate change, voter suppression and healthcare. + +Turnout rate in 2014 by age: +1…",591070 +RT @ringoffireradio: Did @Scaramucci really just compare believing in man-made climate change to believing the earth is flat?…,399545 +"RT @MattLax21: That's why global warming isn't real, it's just distracting us from the love of Christ - kb",898448 +"RT @prageru: What do scientists actually believe about climate change? #ParisAgreement +https://t.co/46dSJuTPmK",655033 +https://t.co/VYDzfKDQUr China delegate hits back at Trump's climate change hoax claims - CNN https://t.co/NSVR794ZMq,653524 +"RT @AgorasBlog: Nigeria, Biafra, Shi'a, expect this from Buhari & APC: + +Ibrahim Zakzaky, Nnamdi Kanu, climate change and too much rain cau…",933765 +"Well at least climate change is really, really pretty. https://t.co/SdhcmIdlv4",98740 +RT @rawstory: These photos force you to look the victims of climate change in the eye https://t.co/nGWMHaRCZc https://t.co/dUlBydx5gx,701254 +@Orwelldone @thefinn12345 @Toure @nytimes That's why it's called climate change?,460181 +New research points out that climate change will increase fire activity in Mediterranean Europe - Science Daily https://t.co/rv49wquzJ0,750030 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,745890 +"Coral reefs may yet survive global warming, study suggests - https://t.co/O3YYGB0fvs",633094 +RT @JamilSmith: A climate change denier is now in charge of the @EPA. It’s worth noting what employees there did to resist. https://t.co/n8…,885609 +When someone behind doesn't want to go to class because they might 'talk about something stupid and controversial... Like climate change',642211 +RT @AndrewLSeidel: Same guy who said we don't have to worry about global climate change bc in the bible God promised Noah he wouldn't…,893929 +RT @KevinJacksonTBS: So #Obama hid $77B in climate change funds! https://t.co/KAAr0mw7vW #TeamKJ #tcot #teaparty,233330 +RT @PakUSAlumni: Hunzai shares how GB practices collective action for climate change #ClimateCounts #ActOnClimate #COP22 https://t.co/sI72A…,187583 +@matthaig1 @realDonaldTrump climate change doesn't exist.,1778 +RT @Dayofleo57: if global warming isn't real why did club penguin shut down,468742 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",757706 +"@Nonya_Bisnez @wildscenery @iamAtheistGirl LOL, that's not fucking climate change, you simpering baboon.",197401 +"RT @UberFacts: President-elect Trump has selected Myron Ebell, a climate change skeptic, to lead his Environmental Protection Agency transi…",145207 +RT @SeanMcElwee: Here is the column Stephens wrote denying global warming. He should either retract it or NYT must rescind its offer. https…,969010 +Badly misinformed lawmaker thinks our 'warm bodies' may cause climate change https://t.co/P8SLdG6L6e via @HuffPostPol,93645 +We're joining @ClimateEnvoyNZ to hear his presentation on NZ's climate change action. #NZpol. Livetweeting from now.,262801 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",874333 +BBC News - Prince Charles co-authors Ladybird climate change book,593952 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,874815 +RT @BBCParliament: New Labour MP for Leeds North West @alexsobel talks about climate change in his maiden speech. #MaidenTweets…,792528 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,96606 +"RT @UNICEF: Inaction is not an option. We need to act NOW on climate change. RT if you’re with us. #foreverychild, a safe plane…",104081 +RT @MetalcoreColts: Hey its november and its 83 degrees. Continue to tell me that climate change is a myth pls,951844 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,240191 +"RT @MatthewDicks: @POTUS Your action today will pollute our rivers and steams, poison our air, and accelerate climate change. You’re like a…",741518 +@jack_thebean I'd look into @MobilizeClimate. A lot of scientists estimate earth can't sustain 4 years of climate change denial. Scary shit,490704 +RT @skgjnr: A president who sends family members to represent kenyan meteorologists at international climate change forum in Pa…,787476 +"RT @jon_bartley: ‘Flash’ cash for Hinkley, HS2 and Heathrow but not to keep people safe in their homes in the face of climate change: https…",356997 +"Whether or not you believe global warming is real, don't you think we should be taking better care of this beautiful planet we inhabit? 🤔",804006 +RT @UNEP: #DYK about 80% of Greenland is covered by the Greenland Ice Sheet which is rapidly melting due to global warming?…,873876 +RT @tmsruge: Thing is: climate change doesn’t care wether you believe it or not. It’s not a religion. It’s going to happen. Nay.…,623346 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,987897 +"Trump picked Scot Pruit as head of the ENVIRONMENTAL PROTECTION AGENCY this guy doesnt believe in climate change, our planet is fucked",914419 +My latest blog - U-S fossil fuels trumps climate change debate - https://t.co/uZZ0B15Ww8,412157 +RT @TheZachJohnson_: Mugs asked me what my motivation was I said global warming,2028 +"RT @TimBuckleyIEEFA: Fiduciary duties of directors & trustees post Paris COP21 ratification re climate change, a clear legal risk https://t…",605102 +RT @Gizmodo: We're finally going to learn how much Exxon knew about climate change https://t.co/KMum8qmRPf https://t.co/SzORKaDgKg,749238 +"Hear about how youth are leading the fight to prevent climate change at Climate Outloud, Saturday at 2 pm https://t.co/CYQ4zrWJUp",307392 +"I do not believe climate change is a hoax,' Pruitt said. https://t.co/QElh8HsO4c #news #carbondioxide #carbondioxide",397422 +"Canada, let’s fund an archive of Inuit knowledge to help communities adapt to climate change https://t.co/vjUBylZ4Xr https://t.co/WhpV0V9mUb",338237 +RT @4for4_John: Today I argued about the existence of climate change with someone with “skinfluteâ€ in his Twitter handle.,80541 +@billmaher Just watched #Before the Flood...on climate change. Invite Leo DiCaprio on your show.,449512 +"RT @MattBracken48: Next, the libtards will blame too much rain in Cali on man-caused climate change. +It's a religion to the Social... https…",294833 +Heatwave in India due to human induced climate change https://t.co/YbuEE2BJJl!,413620 +"RT @AstroKatie: If you were going to be a single-issue voter, not making global warming even worse would be a good issue to choose. https:/…",387693 +RT @GCCThinkActTank: 'Nobody on this Planet is going to be untouched by the impacts of climate change'. ~ Rajendra K. Pachauri…,450373 +@globeandmail This climate change agenda is being sponsored by the very oil companies who they seek to harm - cap and trade taxation scam,589886 +RT @wef: 7 things @NASA taught us about #climate change https://t.co/Vbwazfhx12 https://t.co/8XA0Yz5WUQ,516932 +"RT @satanicpsalms: Vatican believes humans contribute to climate change: scofflaw exorcists whose pact with Satan raises global temps +https…",581483 +"RT @GYFHAS: @CanadianPM #cdnpoli Isn't @georgesoros the guy who used climate change fear mongering to devalue coal mines, then bought them?",346955 +@donaltc @BirbEgg @mary_olliff @BernieSanders It's from solid state physics. Man-made CO2 causing global warming at… https://t.co/DtV0ycH5D8,734933 +RT @K_Phillzz: I'm baffled by those who consider climate change to be a 'political debate' and not a legitimate concern,288357 +RT @TheGladStork: Maybe baby boomers would take global warming seriously if we told them it was like letting a millennial control their the…,303455 +RT @edwardcmason: Another tremendous @FT piece from Martin Wolf. We need these reminders of seriousness of climate change threat & ur…,224575 +"From Trump and his new team, mixed signals on climate change https://t.co/nc5NuuZc6L",576795 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",15284 +RT @EU_Commission: #COP22: EU strengthening efforts to fight climate change in Marrakesh https://t.co/SEko1T0KcC https://t.co/XDP6ejti18,573941 +If global warming continues at the current pace it will change the Mediterranean regi ... #Tattoos #Funny #DIY https://t.co/w2MCVii09L,919384 +I cannot believe that in this day and age there are still people denying that climate change is a reality. #BeforetheFlood,719494 +RT @WIR_GLOBAL: 630 of America's biggest companies are pleading with Trump to give up his climate change denial https://t.co/ANl7SdKcXy,24551 +"RT @UN: In Lake Chad Basin, Security Council hears of Boko Haram terror + survivors' needs, sees impact of climate change… ",183366 +What does Trump believe about climate change? @CNNPolitics https://t.co/HVLOyyHMwd,336178 +RT @JuddLegum: 2. The argument boils down to: Hillary Clinton lost so climate change might not be a big deal. Excuse me?,634250 +RT @sunlorrie: Remember: We can only save our planet from global warming by giving our governments hundreds of billions of dollars…,609196 +The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/guGttj9fm3,974078 +Energy Department climate office bans use of phrase ‘climate change’ https://t.co/4Xukxp67fR,839965 +"RT @millennialrepo: With lots of talk on climate change, our contributor brings up some good points. +Trump on Paris Climate change https://…",232062 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",924312 +@ruairimckiernan try @ThinkhouseIE who did @BenandJerrysIRL climate change college campaign,575336 +"RT @350Mass: 350 Mass MetroWest Node 'gears up to fight climate change' writes @metrowestdaily #mapoli #peoplepower +https://t.co/JBIgO7entL",124851 +"@CNN @VanJones68 he is still accelerating global warming, pollution & amimal extinction we are screwed",806164 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/y2AvcGqy11,732761 +Why climate change is material for the cotton industry - GreenBiz https://t.co/IlshqGsY1J,500599 +THT - Radical energy shift needed to meet 1.5C global warming target: IEA https://t.co/KmN2x9bRgp https://t.co/zaxwtJt67v,412117 +"RT @thebriancrowe: President Trump just set climate change and clean energy back 30 years. Coal is NOT the future. Shame on you, Mr. Presid…",906349 +RT @sadier0driguez: climate change https://t.co/8ZYUBlwCuT,913803 +If both lower CO2 sensitivity and net positive up to 3 degrees of warming were correct then global warming is not net bad until 2080 to 218,393406 +"RT @RexHuppke: A climate change denier leading the EPA? Finally. I say we can't let a little extinction stop economic progress! + +https://t…",189856 +Reducing climate change with a healthier diet. New study shows... https://t.co/OTwfb1AbKM,310554 +Trump boosts coal as China takes the lead on climate change https://t.co/xNHwgsD4KL,919892 +RT @iamgtsmith: Graham Thomson: Alberta's wildfire seasons to get worse thanks to climate change https://t.co/txpGGgOS4H #wildfire,569801 +"RT @usatoday2016: Ivanka Trump and Al Gore to meet, discuss climate change https://t.co/6FP1Sj5eld via @elizacollins1",817363 +RT @Independent: 11 images from Nasa that show climate change is real https://t.co/0U2eRGX447,440342 +"@POTUS U think climate change regulations kill jobs? Well climate change will kill people, so jobs won't be needed I guess. Do some reading",720834 +Europe getting their ass kicked by terrorists ---at least their doing something about global warming. #LondonBridge #realdonaldtrump #merica,406014 +RT @theintercept: Trump's pick to the run the EPA has led litigation efforts to overturn the EPA's rules to address climate change. https:/…,142478 +RT @CarbonoFinanzas: guardianeco: Paris climate change agreement enters into force https://t.co/r8XBsOU7J0,759688 +RT @GlobalWarmingM: Polar bears and global warming for kids - https://t.co/lmO2CdnbeB #globalwarming #climatechange https://t.co/sl8JGxY4lW,371839 +Michael Gove abandons plans to drop climate change from curriculum https://t.co/vwvw3xXbBJ https://t.co/PYDtaDLAeW,628608 +@kkfla737 I don't think Rubio is gonna lose although I'm not afraid to say he doesn't have my vote. 2017 and still denying climate change👎,488708 +"Beyond believers and deniers: for Americans, climate change is complicated https://t.co/a0MVuXkbgn",498562 +"RT @Murunga_Josh: Watu wa Twitter wanajua kila kitu. Muziki,Michezo,Siasa, Journalism,Comedy,relationships na hata global warming.",43007 +RT @IUCN_Water: Heads above water: how Bangladeshis are confronting climate change https://t.co/LznYccKNq8 via @positivenewsuk #MondayMotiv…,466461 +"@conndawg I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",103442 +"And w/o seeing it: who pushes global warming: Clinton, media, NPR, Colbert, Olympic Committee, and I should trust them? #standupforscience",685532 +RT @brennan_anne_: Please don't forget that climate change is not just an environmental issue. It's also a social justice one,488405 +@SenTedCruz What's G's legal understanding of inequality and climate change THE 2 key issues of our times? The rest of us want to survive,681057 +@jordantcarlson @cblatts did you read the article in question? author acknowledges anthropogenic climate change as… https://t.co/Ceudl2gp94,353092 +"@LiamLy @guardian That should have been climate change, not image change! Doh!",284569 +Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/sFonJ3S2VV,395034 +"RT @randyprine: Trump names Scott Pruitt, Oklahoma attorney general suing EPA on climate change, to head the EPA - https://t.co/9DS39zAmgZ",366099 +"RT @Greenpeace: “I know about climate change. When #climatechange in this place, we are not happy.” Bangladeshis on the frontline:…",577799 +"RT @WalshFreedom: All I want for Christmas is for the Democrats to keep talking about climate change, transgender bathrooms, police brutali…",854121 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",264258 +"This is where changing the term 'global warming' into 'climate change' is helpful. So, CO2 causes colder winters .… https://t.co/garMnnSjzh",349261 +RT @NicoleCorrado16: Court orders New York AG Schneiderman to turn over climate change secrecy pact - Washington Times https://t.co/JcgUcPr…,122095 +"RT @Dazed: Vivienne Westwood lays into Trump over climate change +https://t.co/c7xzYe9XVS https://t.co/1L6Kf6i9y2",910800 +Tillerson may be questioned in probe into whether former employer Exxon misled investors about climate change impa… https://t.co/IYD67VOO3l,638147 +RT @the_jmgaines: Jane Goodall calls Trump's climate change agenda 'immensely depressing' https://t.co/XqrPRM237h,101951 +"@deathpigeon Jack D. Ripper, but for global warming.",309070 +"The economic impacts of climate change will precede and outpace the physical impacts. + +The Carbon Bubble parallels… https://t.co/nYin4ZpWCF",570235 +.@VernBuchanan breaks with @realDonaldTrump & many other Republicans on climate change #ParisAgreement https://t.co/Oo0GnXiZDo,59157 +RT @bani_amor: + *and* contributes to climate change. The Shuar of the Ecuadorian Amazon have been resisting colonialism for centuries. Wil…,669686 +"@BLegendl @Bamanboi this video is bad, it doesnt talk about limited resources and global warming which are actually the biggest problems",558941 +RT @foe_us: Rolling back regulations that address climate change: lowest level of agreement & highest level of disagreement.…,51268 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,991319 +RT @Neo_classico: Let me tell you my view point on global warming considering the #smog show in Delhi recently.Do read and spread this thre…,514870 +RT @BarrySheerman: Green Energy targets are a serious commitment in our bid to tackle climate change is this Govt giving up on fight to sav…,52275 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,44216 +RT @DavidPapp: Kerry says he'll continue with anti-global warming efforts https://t.co/orVqtfN28X,326352 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,930456 +In just a matter of years global climate change has completely eroded the neutrality of conversations about the weather.,837886 +RT @greglovesbutts: If God didn't want us to cause global warming He wouldn't have put all those fake dinosaurs in the ground to test our f…,425286 +"The costs of car dependence, from climate change to fatalities from car accidents https://t.co/0YQbXwzHKo",354627 +"We only have a 5% chance of avoiding 'dangerous' global warming new study suggests... +https://t.co/1Uy0VrGNZb",590555 +not for nothing but timmy turner invented global warming,540462 +"RT @EcoInternet3: #Climate change 'pause' does not exist, scientists show, in wounding blow for global warming denialists: Independent http…",981998 +RT @Slate: The kids suing the government over climate change are our best hope now: https://t.co/uM8hgVKop6 https://t.co/JGJfI28Huh,135020 +Rudroneel Ghosh: Get Real: Why Donald Trump must heed Morocco’s King Mohammed VI’s COP 22 speech on climate change https://t.co/0dbJIkOtNM,981661 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,805343 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,776590 +"@zach_wagz1515 denying climate change, repealing national marriage equality, threatening to ban an entire religion from being here.",700547 +RT @PopSci: Four things you can do to stop Donald Trump from making climate change worse https://t.co/V6o9QJSdVl https://t.co/L34Nm7m1vV,575771 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",810435 +"BBCBreaking: UK government signs Paris Agreement, world's first comprehensive treaty on tackling climate change https://t.co/weKWsyQzHh #C…",107181 +Obamas fiddled global warming data: *Shamelessly Manipulated* - https://t.co/xxfCa8CWeg #ClimateScam #GreenScam #TeaParty #tcot #PJNet,122281 +BREAKING: I just found out that the famed hockey stick graph represents my friend's wife's weight gain and not global warming. Sorry. ��,556956 +"RT @Eric_John: Trump’s budget plan for NASA focuses on studying space, not climate change https://t.co/rz9JhLhSn7",77126 +"If cruises to Alaska stop in October, how real is global warming?",290670 +"RT @KamalaHarris: Let’s use this victory and keep showing up on so many other issues, including climate change, women’s rights & criminal j…",517369 +RT @EnvDefenseFund: These 3 charts show how climate change is the world’s biggest risk. https://t.co/PeQsIFq2EF,808687 +"RT @pewresearch: Science knowledge influences Democrats', but not Republicans', expectations of harm from climate change…",114203 +"If cities really want to fight climate change, they have to fight cars https://t.co/GVOFhgBYAK #itstimetochange join @ZEROCO2_",15842 +RT @AdamsFlaFan: “Trump fools the New York Times on climate change” by @climateprogress https://t.co/o5QSkLVWll,102935 +SecNewsBot: Hacker News - Report shows efforts to fight global warming paying off in the biggest way yet https://t.co/41uhWaheDS,23002 +RT @EnvDefenseFund: Experts fear “silent springs” as songbirds can’t keep up with climate change. https://t.co/ycqDV2R1BV,404865 +RT @BadHombreNPS: Just like you cannot properly run the @EPA if you're a climate change denier who has a hard-on for fossil fuels (Ah…,567081 +Analysis of Exxon and their stance on climate change under Sec State nominee Tillerson. It isn't very encouraging! https://t.co/yXS67ZFJqE,211891 +@AstroKatie You might mention that Hilary Clinton strongly endorses science and believes climate change is real.,619002 +"RT @DavidCornDC: Hey Florida, nice little Everglades you've got there. Thanks for voting for a climate change denier. See you in hurricane…",684757 +"@davidharsanyi @ThomasHCrown It's all they've got. That and climate change, and there you have it. The complete liberal play book.",179146 +RT @pongkhis: *presidents that believe in climate change >>>> 😍😍😫😫😫💯💯👌🏽,935520 +Yeah and Al Gore just said there's no global warming. https://t.co/VDXEmsRm4T,824330 +"We’ve read the Pope’s encyclical on climate change. In case Trump skips it, here's what it says… https://t.co/8JYKQ5Kl7d",150637 +RT @market_forces: Ian Macfarlane sounding like a tobacco exec: 'no direct link between coal mining & climate change' ��‍♂️ #StopAdani https…,119377 +"RT @LosFelizDaycare: White House has deleted LGBTQ page and all mentions of climate change from its website, so we deleted all mention of w…",768227 +RT @ajplus: The White House says climate change funding is “a waste of your money.” https://t.co/XEtr8zRci6,149919 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,669199 +@wonderingwest @Anna_MollyD @X_BrightEyes_X With the climate change of flooded world then maybe? Also how about a love dodecahedron?,185722 +RT @LosAngKorner: Trump could pull America out of climate change deals https://t.co/YREd8K08Dz,336736 +"Polar vortex shifting due to climate change, extending winter, study: +- 'idea...controversial' +https://t.co/2J4RlkU7cd",544432 +when you see the severe effects of global warming and remember you can't swim to save your life https://t.co/6Hona0ejoX,461608 +David Hempleman-Adams urges climate change action after Arctic voyage https://t.co/ThTia6JJdf,543004 +"@Konamali1 @TIME Here is a website which will answer your every misconception about climate change +https://t.co/N739sblyWz",34682 +cuz climate change https://t.co/LSundnw9dY,92880 +RT @AnnCleeves: Terrific. Now Trump has appointed a climate change denier to head up the US environmental protection body.,215890 +BBC News - EPA chief doubts carbon dioxide's role in global warming https://t.co/SOYiNbcBeJ,888835 +RT @alanaarosee: @JulianaaBell that's why we gotta build a wall to keep all the global warming in America and away from Mexico,181401 +"RT @NRDC: This #WorldRefugeeDay, let's remember the victims of climate change. https://t.co/bzkyAOLU4T via @Colorlines",189154 +RT @SkyNewsAust: .@rowandean says climate change 'lunacy' is destroying the natural gifts Australia has #outsiders https://t.co/m6bbqwU9jS,872090 +From 2.30 we'll be live tweeting from the @scotparl debate on Scotland's climate change plan @sccscot #scotclimate,845259 +"nytimes: 'Engineering the climate' may be necessary to curb global warming, portereduardo writes … https://t.co/X5oGTitPPD",218304 +"RT @jorgiewbu: KNOW how the food you buy influences climate change, the products you buy and where you throw them afterwards. Please, resea…",567409 +RT @JTHenry4: I got over the fact that we elected Trump and then I remember that he thinks climate change is a Chinese conspiracy and I los…,399514 +RT @THECAROLDANVERS: liberals are so annoying... have fun working to fight climate change w/ a person who believes climate change is a m…,672209 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",4403 +I helped fight climate change by donating to offset 225 pounds of CO2! https://t.co/x1Eo5R4Svl #climatecents via @climatecents,445740 +I keep doing things like cooking and playing with the kids and reading books and then I remember. I think about climate change.,464276 +RT @genemurry: @wallydebling @hockey_99_11 You forgot climate change. He sent billions to countries you can hardly find on the world map!,886163 +RT @BlessedTomorrow: Is it too late to act on climate change? @KHayhoe explain how you can make a change! https://t.co/z97sbN0sko @KTTZ…,187666 +@kayleighmcenany oh here comes the conservative who care about the environment when most of you don't believe in climate change,160670 +The DUB genuinely say climate change isn't real hahahahahaha they are just Twitter conspiracy theorists,285723 +remember when south park had an episode making fun of al gore for thinking climate change was real,272753 +RT @350: Environment Defenders face the biggest threats when fighting climate change. And they are doing it for all of us: https://t.co/nsq…,170877 +"RT @helenzaltzman: TM: 'We'll bond over our dismissal of climate change and human rights!' +DT: 'In real life she's a 4, but in politics, a…",698764 +"RT @NGRPresident: PMB: We cannot succeed alone. Addressing climate change is a shared responsibility, as its negative impacts are universal…",132467 +RT @TheTruth24US: EPA chief's language on climate change contradicts the agency's website... #D10 https://t.co/pTWwJbqJT9 https://t.co/2rDP…,39110 +RT @KurtSchlichter: The death of the climate change scam is just more icing on the cake. @RadioFreeTom @Dmilanesio,606934 +"RT @IsabellaLovin: Watch, please! 150 years of global warming in a minute-long symphony – video https://t.co/g3toq433FX",17095 +"RT @Greenpeace: Observing clouds is key to understanding climate change. ☁☁ + +Happy #WorldMetDay! https://t.co/jIbBxSHyrM https://t.co/gtRve…",13523 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/iH7nDgh3pc,462723 +NIOZatSea-blogs: #BlackSea2017 #Pelagia studying microbial communities and past climate change… https://t.co/CkzOIPOh0y,389239 +COP22 host Morocco launches action plan to fight devastating climate change | Global development | The Guardian https://t.co/8JsmZ1ZGTD,587505 +Scientists tell Trump to pay attention to climate change https://t.co/v9Hct7wpUz https://t.co/EerEHFpSXG,690523 +RT @WorldfNature: Trump took down the White House climate change page — and put up a pledge to drill lots of oil - Vox…,253146 +"https://t.co/LN7lPFrfpJ +We need all hands on deck to fight those who deny climate change and profit from killing our future generations.",167461 +@AltNatParkSer @NASA I believe in climate change & am extremely proud of youz for finding a way to get the word out. Please stay strong!!,716193 +RT @brianklaas: Citing snow in mid-December as evidence against global warming shows a truly amazing level of scientific ignorance. https:/…,754194 +‘Shell knew’: oil giant's 1991 film warned of climate change danger https://t.co/YmikA747Cg,937593 +@HillsHugeBeaver @sean_spicier @mariclaire81 Love this. Does climate change cut people's heads off??,795201 +RT @blusuadie: When you're trying to enjoy the 70 degree weather in January but you know it's because of global warming https://t.co/xG8zaU…,941129 +RT @fatalitiess: S/o to my bitch global warming https://t.co/D0TNnpmns0,951756 +5 movie classics to inspire your inner climate change activist over the festive break 📽 → https://t.co/Aq9v1TPMBR,541050 +"RT @Impeach_D_Trump: The Energy Department climate office bans the use of the phrase ‘climate change’ + +https://t.co/nsmcKo7KD4 + +RETWEET ht…",676119 +RT @joh_berger: Diet & global climate change https://t.co/ldi52gwGsZ via @ScienceDaily https://t.co/ai7LL4jUoy,383346 +@HillaryClinton the science confirms that global warming and climate alarming are unscientific. Your party is anti science,318732 +RT @DannyZuker: Alt-Right doesn't believe in climate change but has no problem believing in this. #CoolPartyBro https://t.co/5th8ltDsML,177261 +Scott Pruitt preparing a team of climate change skeptics to attack sound science at the agency. @EPAScottPruitt @EPA THIS IS TERRIBLY WRONG,374551 +@CdnEncyclopedia global warming. Oh I'm sorry we changed the name cuz there is no global warming.,335242 +But it's snowing for the first time in 37 years in the Sahara so climate change must be a hoax! #sarcasm… https://t.co/TwpjXMwBP1,669156 +"سچی مچی #KPRisesWithKhan +Billion tree tsunami project, an excellent project by KP government which can reduce pollution & global warming",147257 +"RT @BloombergTV: Trump to drop climate change from environmental reviews, source says https://t.co/VqZFH34Nv4 https://t.co/QTFq62KjxE",631258 +RT @ScariestStorys: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/BOeDIqfVKR,577768 +RT @collinrees: Tim Kaine is demolishing #Tillerson over the fact that #ExxonKnew & lied about #climate change. Rex refusing to answer ques…,556221 +"RT @PCRossetti: .@djheakin Explains that there are good solutions to #climate change, but environmentalists are blocking them. https://t.co…",172964 +"RT @SierraClub: Grizzly bears taken off the endangered species list, despite signs that climate change is threatening their survival https:…",767518 +@_SpectrumFM_ and I'm worried marching Earth Day will activate people's partisan identity wrt to climate change and alienate some 2/,905221 +@DailyCaller @GAAnnieLonden If humans had caused a global warming it would be impossible to stop. As geography goes… https://t.co/g4EfzYrOE9,937706 +Infinite challenge got us so emotional lately. When they went to north pole to keep the polar bears. Proving that global warming is serious,676551 +I knew if it warmed up that someone would pull that climate change shit... Not saying it doesn't exist but come on,411028 +RT @mlcalderone: NYT edit board has cited “rock-solid scientific consensus' for 'swift action' on climate change…,968883 +@mericanshetpost @rolandscahill @KellyannePolls @FLOTUS They only trust science when it comes to 'climate change'.… https://t.co/PGpserj3CH,65085 +"Dr. Tim Ball, climate change skeptic, met with Trump's transition team https://t.co/iwKBosxdbO #YouTube #RebelMedia",974176 +UN climate change agency reacts cautiously to Trump plan https://t.co/rORgxqz7Kz,281304 +RT @CNNSotu: Trump has characterized climate change as Chinese hoax. But @SecretaryRoss says NOAA will follow science (which could mean col…,860156 +"RT @grahambsi: The overpriced Dail Express is furious again. But never about poverty, racism, climate change, lack of social care.… ",885791 +"@interUNFAO @chrissyvalentyn @ski_jett @BellaFlokarti +Stop quoting pro global warming groups +Their scientific analysis just doesn't hold up",174569 +"RT @chrismelberger: the world: most of our coral reefs are dying due to climate change + +trump: we will build a greater & better coral reef",674895 +RT @c40cities: 'The decision taken by President Trump will not mark a setback in the fight of #Milano against climate change.” -…,70824 +@genewashington1 @BrianCoz if he was tweeting about global warming or gun control it would get him in faster,604290 +"RT @MikeCarlton01: Most Australians: +Are happy with 18c +Are happy with SSM +Believe in climate change +Want a royal commission into the banks…",927676 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,731245 +Who do you think may have a better understanding of climate change? https://t.co/AZVhoosUZv,143452 +"Scorching heat from this 'artificial sun' could help fight climate change + +https://t.co/qDArYhFIYr",342692 +"RT @bpolitics: Trump may dismiss climate change, but Mar-a-Lago could be lost to the sea https://t.co/P3HWhuxgc3 https://t.co/8UApKW2zER",871087 +@realDonaldTrump climate change is real like tbh,761613 +".@rubiginosa @jlperry_jr @HG54 Back up your man-made global warming rhetoric with hard, empirical evidence or go away.",798311 +Desde CODEX: #DYK How climate change is influencing #FoodSafety? Salmonella spreads due to extreme heat and precipitations events #ParisAgr…,635795 +"I feel like ending world hunger, saving animals from extinction, solving our climate change problem, and reforming our judicial system today",700014 +"RT @TheTheodoreKidd: I just want to give a massive shoutout to global warming on this heated, fine ass day! #sydney #australia #weather #ho…",791049 +RT @TomSteyer: Read @MichaelEMann on how climate change supercharges deadly storms like Harvey. This is science. https://t.co/H046ATmtjw,279700 +"RT @predictability3: Check out our latest blog: Carbon Capture & Storage, Big Oil, climate change mitigate and ... how to turn a profit. +ht…",507646 +@Cane_Matt It's bad but sadly not new. In recent years the Senate has refused to pass HoC legislation on LGBT rights and climate change.,444407 +@bhandel58 climate change is not the only thing of importance going on in the world. Role of govt is not to try to be the sun.,465916 +RT @kushNdiamonds: I'm gonna try to enjoy this weather even tho global warming is well and alive. Sigh.,134834 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,852541 +"Africa's soils are under threat, especially from climate change. So now what? https://t.co/6CVeBrclWD @cgiarclimate… https://t.co/zn1sqlOHjl",962364 +"RT @1followernodad: ok a climate change denier heading the EPA is AWFUL, but what's that shade of lip stain my dude https://t.co/w8BKE4wZ3s",176463 +"RT @thinkprogress: If you want to solve climate change, you need to solve income inequality https://t.co/1dZyIh41CF",992510 +This how we stand to fight the climate change issue #COP22 #UNFCCC #ITKforClimate ##IndigenousPeoples #IIPFCC https://t.co/q9gZR5HxJn,975849 +RT @MintRoyale: He's already solved climate change! https://t.co/MsYPI8fruL,420299 +RT @Emlee_13: #AHSS1190 How do you plan on convincing citizens that climate change is real & an important issue @JustinTrudeau @cathmckenna,704863 +"RT @EnvDefenseFund: If you’re looking for good news about climate change, this is about the best there is right now. https://t.co/EKUYWsPDF2",421447 +Climate champion Carney to stay at the Bank of England | Climate Home - climate change news https://t.co/BbHxwaKAV3 via @ClimateHome,935240 +RT @shadesof666: how can global warming be real when rihanna got this much ice https://t.co/mPFRFeLTEV,461836 +RT @A24: Nothing says climate change like @moonlightmov https://t.co/rOcRLRZJz7,819440 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,419330 +RT @DRTucker: Conservatives elected Trump; now they own climate change | John Abraham | Environment | The Guardian https://t.co/dp21SOqwiP,535890 +"@Sanchordia We really don't have time to play politics with climate change, we need to start hurrying it along.",841407 +RT @KSLibraryGirl: Imagine how much better/cleaner our world would be if people believed in global warming & recycling as much as they beli…,826224 +"RT @XHNews: 2016 is very likely to be the hottest year on record, sounding the alarm for catastrophic climate change…",546860 +"@SFCFinance Hey! We have a new board for bouncing ideas on climate change, are you interested? https://t.co/LTVC09rfhf",624360 +RT @TeoLenzi: I just backed an Arctic Serengeti to fight climate change on Kickstarter! Let's make it happen!!…,587419 +"RT @AnnCoulter: We're hectored to be like the French on adultery & global warming. Why can't we be like the French on hiring large, strong…",389504 +"On climate change, Scott Pruitt causes an uproar &#8212; and contradicts the EPA’s own website https://t.co/PDqWww4BHj",860824 +RT @stevelevine: Bloomberg scoop: Trump singling out Energy Department employees working on climate change. Reindoctrination? Firing? https…,793887 +RT @Mohaduale: Climate change mitigation and adaptation measures are necessary to avert global warming and man made disasters…,945522 +"RT @_mistiu: Want to fight climate change? Have fewer children + +https://t.co/bMwkhQtRQ5",436399 +"@JolyonMaugham The Trump entourage is filled with paranoid fears of other people and yet, paradoxically, is blind to climate change warnings",797196 +RT @350: 'This is a huge stride for human civilization taking on climate change' #100by50 bill launched by @SenJeffMerkley a…,642292 +World heat shatters records in 2016 in new sign of global warming https://t.co/r39GFUjgBL https://t.co/Q1lzSkQLzP,258901 +RT @politico: Badlands National Park climate change tweets deleted https://t.co/4E1maHwiJy https://t.co/VO7Loe0IFc,233757 +U.S. EPA chief unconvinced on CO2 link to global warming https://t.co/VDxUbqBPiJ,875599 +"For the first time on record, human-caused climate change has rerouted an entire river https://t.co/LaUrdR44In https://t.co/b6JvSEd65J",860413 +RT @KathyFoley: Beyond horrified at this toadying. Human rights and climate change (and general decency and respect) matter to Iri…,922066 +RT @poetastrologers: All signs know that climate change is real,719718 +@JunkScience @realDonadTrump 194 countries also support Paris Accord. Trump is the one major world leader denying climate change.,667210 +RT @GregGutfeldShow: Have you seen the trailer for Al Gore's new film on climate change? Well you're in luck! Check it out! #Gutfeld https:…,954662 +"I get why people may not understand global warming but wouldn't you want to do what it takes to save the planet since y'know, you live on it",593300 +"RT @CNN: After previously calling it a 'hoax,' Trump said there's 'some connectivity' between climate change & human activit… ",491493 +@SallyNAitken encourages @ubcforestry graduating students to take on global challenges such as climate change. https://t.co/hw819zSdur,943128 +"RT @techvestventure: Carbon credits are a fake currency for a fake correlation of CO2 to fake global warming fears, just cost shifting a…",670317 +RT @1solwara: Australia's inaction on climate change set to dominate Pacific Island talks - The Guardian https://t.co/KsNQJhCB2w,550089 +We should really stop global warming come on guys #DoItForDave he's been telling us about the melting glaciers for ages now #planetearth2,152533 +Trump's stupidity on climate change will galvanize environmentalists @Smth_Banal,725903 +RT @ArchRecord: Help @ArchRecord with research on attitudes toward climate change by completing this survey:…,685530 +"For you, @hjroaf: We're featuring books about ice and climate change here: +https://t.co/4u1sZlYU8P",679978 +@ZeitgeistGhost climate change is a hoax to line the pockets of the degenerates in Washington. Trump is draining the swamp! #maga,247717 +Trump team memo on climate change alarms Energy Department staff - CNBC https://t.co/wQHwZqjSWW,803475 +"@BillBillshaw yes indeed, why don't we like the Dutch take the Govt to court about the lack of appropriate response to global warming.",776944 +"RT @SirThomasWynne: Despair is not an option when it comes to climate change + +https://t.co/nQN3qRClwd",232693 +"Tech's biggest players tackle climate change despite rollbacks +https://t.co/TQXL2lhFS8 https://t.co/qojt9wWbuR",752730 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",526205 +RT @SarcasticRover: DID YOU KNOW: You can learn about climate change without making it about politics or opinion… because NASA FACTS! https…,831699 +The Guardian view on climate change action: don’t delay | Editorial https://t.co/OD7XBiV8jB - #Climate #News procur… https://t.co/9zbYKcAvdZ,739965 +RT @DrConversano: happy earth day. just a friendly reminder that climate change is real & our planet is a precious resource that deserves t…,251342 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,718512 +"Science strives to make climate change more personal, economically relevant to Americans - The San Diego… https://t.co/ToNFh9biYE",816966 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,903146 +RT @ally_sheehan: trump denying climate change is like cornelius fudge vehemently denying that voldemort had returned,891315 +"RT @PeterFrumhoff: Messenger: When water recedes in Houston, debate over climate change and flooding must rise https://t.co/hAlMxn8Ura via…",787078 +goddam global warming...❄️�� https://t.co/kBZw4PuxQR,21589 +The findings come 2 days before the inauguration of a... president who has called global warming a Chinese plot...' https://t.co/27HWfGIUKZ,322283 +We need nuclear power to solve climate change https://t.co/FGeKzyTliH,867456 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,22847 +RT @guardianeco: ‘Moore’s law’ for carbon offers a clear map to defeat global warming #climatechange https://t.co/VPlN0InCoU,520018 +@wrightleaf i dumped his albums in a field to let climate change destroy them. (the very nerve of demanding that B… https://t.co/npGcOmYufC,767439 +RT @mashable: Enough global warming is in the pipeline to melt all Arctic sea ice in summer by 2030s https://t.co/PVJnl2ADoB,808874 +@amcp HARDtalk crid:40tej6 ... of global warming. Scott Pruitt - a known climate change sceptic - has been accused of ignoring decades ...,257679 +"This is what climate change looks like: https://t.co/bjgDZa9OE4 +#environment",635476 +@SafetyPinDaily @Independent The new French President had issued an invitation to climate change scientists to come to France.,336477 +RT @FoxBusiness: .@realDonaldTrump: 'We will also cancel billions in global warming payments to the United Nations.' https://t.co/HxeORNHL5p,398328 +@KTLA @NOAA well thay say global climate change is not a thing..but who do you believe science or trump,386898 +RT @CFACTCampus: Don’t blame climate change for extreme weather https://t.co/IF3xM3ARpy via @BostonGlobe,559407 +#SelfSufficient Human-caused global warming contributed strongly to record 'snow dr.. https://t.co/FIYvOnYrVY https://t.co/Lp2oWkz59L,658452 +"@tdichristopher @altUSEPA +I currently don't believe Scott Pruitt, so we're even. +Ironic that statement implies he does admit global warming",64700 +RT @mikeandersonsr: I agree brother. Ask any kid today what he thinks about man made climate change? 30 years of #liberal education. https:…,636423 +"RT @CopsAndRoberts_: Just because you don't believe in climate change does not mean it doesn't exist. We need action, not denial.",906223 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/wtN7EL0AeE #KeepCalling,773709 +"RT @teddygoff: Fun fact: if elected, Donald Trump would be the only leader of any nation on earth who denies climate change. https://t.co/9…",441850 +"RT @nadabakos: 6. POTUS might tweet – the sky is not blue, therefore the climate change scientists are only providing FAKE NEWS",133043 +RT @SuperAaronBurr: @GlomarResponder Yes this is an official result. I used the same method climate change believers use to prove their…,553119 +RT @guardian: There’s another story to tell about climate change. And it starts with water | Judith D Schwartz https://t.co/J468H1FWsO,632138 +Q4: Should the US do more in combating climate change? #LHSDebate,320905 +RT @dabigBANGtheory: global warming making shit fuck all up. https://t.co/lB0V5P2bkS,975115 +RT @Colvinius: Reminder: Trump intends to cut NASA's funding to measure climate change effects like this. https://t.co/xtPImGZ0s8,38430 +"RT @1o5CleanEnergy: World has three years left to stop dangerous climate change, warn experts https://t.co/rnNFNQrQt2 #1o5C via @FoEScot",733245 +A story of intimidation and censorship: The great global warming swindle https://t.co/P8ueKqvc0y @YouTube #ClimateScam #tcot #PJNet,384813 +Experts to Trump: climate change threatens the US military https://t.co/xUEkHuDF50 via @voxdotcom,464528 +"RT @iansomerhalder: VOTE VOTE VOTE!!!! +;) VOTING for a candidate that believes climate change is a hoax is the… https://t.co/kaLLCio8eo",786000 +RT @realDonaldTrump: The people that gave you global warming are the same people that gave you ObamaCare!,684182 +"This hirokotabuchi look at how Kansans talk about climate change without saying 'climate change' is exceptional https://t.co/lApdfh2mzN + +—…",221073 +RT @Surfrider: Join us at the #ClimateMarch on 4/29—send a message that climate change is impacting our ocean & must be addressed!…,965970 +"RT @newsbusters: Al Gore is SO concerned with climate change, but he uses private planes ALL the time. Total hypocrite. https://t.co/5IYY89…",691400 +RT @EnvDefenseFund: Scientists say these 9 cities are likely to escape major climate change threats. Can you guess where they are? https://…,691422 +RT @FoEAustralia: Record global warming in 2016 as oppn block Vic govt moves to strengthen Climate Act: https://t.co/GgQTVJQDoy…,63149 +"But hey, climate change is a hoax anyway so the world totally won't be devastated before the end of the century, guys. Right? RIGHT???",94816 +RT @winnersusedrugs: boy we liberals are gonna look really stupid when nuclear winter cancels out global warming,613499 +"RT @KurtSchlichter: I support global warming. +I am glad Don Jr tried to get evidence against Hillary. +You are the sex you were born. +Libera…",910979 +RT @sadserver: I suppose a nuclear winter would be one way to reverse climate change.,50617 +RT @_gabibea: Researchers in China find a 'clearer' connection between climate change and smog. But the sky remains murky... https://t.co/s…,529874 +"RT @janet_ren: @climatehawk1 @theage Solutions are suggested by Ian Dunlop. Australia, deep in #climate change's 'disaster alley',…",144763 +Clouds are impeding global warming... for now https://t.co/qLzIqQ3a7E @Livermore_Lab,477049 +"RT @ArmyStrang: Lol, the military has already declared climate change a security threat but I guess what the fuck ever, let's burn… ",718864 +-Trump administration trying to halt landmark climate change lawsuit that could thwart changes at the EPA https://t.co/XNwK7JFemY,799336 +RT @CatholicClimate: New photo essay on climate change: https://t.co/11ZgoATNrg,429124 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,16399 +RT @ITCnews: #ParisAgreement enters into force today! Trade can play an important role in combating climate change:…,389891 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,803662 +"RT @causticbob: Scientists have warned that 260,000 Muslims could die as a result of global warming. + +On a more serious note my dog's got…",45923 +RT @adamhudson5: This entire thread about feeling despair over climate change is really important & worth reading https://t.co/bTcnBW8bxF,260020 +RT @washingtonpost: 'Trump can’t deny climate change without a fight' https://t.co/ZK2gC8qbxS via @PostOpinions,780749 +"World Trade Center, right now, we need global warming! I’ve said if Ivanka weren’t my enemies tell the other parts of the",618441 +Shut the fuck up. The Bible is a fucking novel. Scientist predicted this shit too. It's called global warming. https://t.co/S1nvL3qmDq,139969 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",723808 +RT @johnpodesta: A breath of clean air on climate change. https://t.co/rl4Gqi1Hxq,188951 +RT @ClimateNexus: The House Science Committee claims scientists faked climate change data—here's what you should know…,609927 +RT @aviandelights: Record hot summer max temps in ACT/NSW ~8 times more likely because of climate change. Hot summers will be more frequent…,98321 +The threat of climate change helped seal the Paris Agreement early https://t.co/kexlBkvuNt #climatechange #ParisAgreement,513818 +"A must-read. Welcome to Pleistocene Park, where Russian scientists want to fight climate change with woolly mammoths https://t.co/mS5SBsjfDJ",943916 +"RT @EmmaVigeland: #Trump appointed climate change denier, Scott Pruitt, to the head of the @EPA. @HillaryClinton would not have done that.…",847508 +RT @EDFbiz: Methane Detectors Challenge: An unlikely partnership to scale affordable technology to fight climate change -…,425538 +"RT @EcoInternet3: Hey anti-science @realDonaldTrump Arctic is 36 degrees hotter than normal and above freezing, still think climate change…",231808 +How can people be so ignorant when it comes to climate change #ClimateCounts @PUANConference @PakUSAlumni #COP22,618984 +"RT @PrisonPlanet: Hey guys, I just checked and global warming isn't a thing. As you were. 🤗 #SnowStorm",810170 +RT @HesselKruisman: Barack Obama on food and climate change: ‘We can still act and it won’t be too late’ https://t.co/67CCMDO2Or,952783 +"@SenatorMRoberts the pollution senator. Never mind climate change, you're promoting long term pollution.",310439 +RT @cr0tchley: never realised republicans are immune to global warming!! https://t.co/0A3JoD6lmh,955627 +UfM representative: ‘Obligation’ to protect Mediterranean from climate change https://t.co/xTQTmgFYs3,201714 +"v upset on this, the most beautiful day of 2016, because a) I didn't bring my camera to campus and b) climate change is terrifying",253507 +#BeforetheFlood is an absolute must-see. It's scary that China is doing so much more than the US to stop climate change.,336728 +#climatechange DailyO 5 climate change challenges India needs to wake up to DailyO In the… https://t.co/xQ64C5gAe2… https://t.co/1O9vV1VJjM,739980 +"RT @larsy_marrsy: PSA: to anyone who doesn't believe in climate change. +Also a PSA: to everyone else that does believe. https://t.co/69aNG…",652034 +RT @katyaelisehenry: If you don't believe in global warming u r a dumbass,786046 +RT @DavidPapp: Trump takes aim at Obama's efforts to curb global warming https://t.co/BrluzB43gi,338331 +"At premiere of 'Inconvenient Truth' sequel, Gore predicts 'win' over climate change https://t.co/Q3Oiz08yqf https://t.co/RgEwIWaeN5",978337 +@AlexWattsEsq good job environmentalism is a sham and climate change is fake,559940 +"RT @RyanMaue: Exactly -- John Kerry's Antarctica trip was selfish, wasteful and against his preaching on climate change. He shou…",930566 +"RT @afenn11: Exxon backs ‘serious action’ on climate change. Motive unclear, progress nonetheless. https://t.co/iCFHdY0f0I",619635 +@POTUS I hope u understand that a majority of Americans know climate change is real & not a hoax! But your policies show u don't give a damn,44405 +"RT @NPR: Rosling had a knack for explaining difficult concepts — global inequality, climate change, disease and poverty — us… ",436944 +"RT @stuart_begg: Increased cyclone intensity and frequency �� global warming �� coal �� galilee basin �� #LNP & @QLDLabor �� numbskulls +#ausp…",609023 +Metro already under threat from effects of climate change - study - https://t.co/udMEdd4N2r https://t.co/gQR4WSyFYI - #ClimateChange,888451 +"RT @bmf: The reality is, no matter who you supported, or who wins, climate change is going to destroy everything you love, much faster than…",565182 +RT @PeteButtigieg: Last year's flood disaster was likely South Bend's first serious taste of climate change. More will come. Pulling out of…,230971 +"RT @_AlexHirsch: Simple. I believe in climate change, a woman's right to choose, gun safety & the wealthy paying their fair share. T…",966471 +RT @NatGeoChannel: One of the easiest ways to help combat climate change in your daily life is to stop eating beef. Here's why:…,633801 +"RT @ClimateChangRR: Scandinavia's Sami struggle with suicide, worsened by climate change https://t.co/SsIpfGIEn6 https://t.co/DKMizjFFBk",596337 +4 things you can do to stop Donald Trump from making climate change worse. https://t.co/yhB5Jp2ENE,434014 +"RT @tveitdal: For China, climate change is no hoax – it’s a business and political opportunity https://t.co/oJmspezGed https://t.co/ytyB8eN…",876617 +@MicheleATittler Nothing you say can change the facts. Human activity is now the primary driver of global climate change. Fact.,60545 +Trump to roll back use of climate change in policy reviews: source https://t.co/eZiTGnfmAO https://t.co/os04EXfHjy,971322 +RT @realscientists: Finally people have asked how climate change could affect insects. So that's what this last thread will be about. (…,634921 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",851954 +"@_Milanko I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",717758 +#climate #p2 RT Vatican says Trump risks losing climate change leadership to China. https://t.co/GXcWtGJAkk #tcot… https://t.co/kbcnAACJoi,421679 +"Have you noticed an amazing event?You hang something in your wardrobe in winter,come summer & it's shrunk 2 sizes!....Bloody global warming!",890281 +Talking about how states are marking out the path of the eclipse next month. States that deny evolution and climate change. Yeah...,665551 +RT @tristanreveur: raise your hand if you believe in climate change https://t.co/l0IiDICgMM,356135 +Trump names climate change skeptic and oil industry ally to lead the EPA https://t.co/CCP6v6MnnQ,963332 +"The comments here are disgusting. Even if climate change isn't man made, why is it bad to protect the earth? https://t.co/CA7V50582T",574829 +"RT @ChristopherNFox: In race to curb #climate change, cities outpace national governments https://t.co/0aALAqJyG3 via @alisterdoyle @Reuters",81371 +RT @TheDreamGhoul: my inner thigh chafe is responsible for global warming,603906 +RT @foodtank: Obama sees new front in climate change battle: Agriculture: https://t.co/ySy3oIYB5u @SEEDSandCHIPS @nytimes…,468076 +RT @MotherJones: Now Donald Trump says there's 'some connectivity' between humans and climate change. https://t.co/vdtJiNW8Wn https://t.co/…,659606 +RT @cathmckenna: 'We believe climate change is one of the greatest threats facing Canadians and the world and it ... needs global so…,97195 +Latest: Kids sue Washington state over climate change https://t.co/C9v6pOeAha,493580 +This forest is being pumped full of carbon dioxide to mimic future global warming https://t.co/tfTXqY41FT via @HuffPostUKTech,880721 +"@libertytarian @BigRichTexasPam There will be climate change, man made global freezing of crops",96026 +RT @OmanReagan: Wildfire is an important part of ecosystems. But fires are increasing in severity because of climate change. https://t.co/f…,252046 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,856130 +Global warming and climate change are not man made. https://t.co/lJKF2PbqBZ,472832 +Obama fires scientist for being “too forthright with lawmakers” regarding global warming sham-science. https://t.co/bx9IcHr65U,209090 +RT @jkaonline: China warns Trump against abandoning climate change deal @FT Against the wishes of the whole planet!,609183 +RT @DailyMemeSuppIy: Unbelievable that Club Penguin is shutting down yet people still deny the impact of climate change on our planet,514259 +"RT @WSJPolitics: In rebuke to Trump policy, GE's CEO says 'climate change is real' https://t.co/cLM1bc2z2o",681249 +Bigger hail might pummel the US as climate change gathers more force https://t.co/v6qEhEdHqg,25872 +RT @France4Hillary: EPA chief Scott Pruitt says CO2 isn't a primary contributor to global warming. The Trump administration doesn't car…,408169 +Trump picks climate change denier for EPA team - https://t.co/uQFPF2hQ8R https://t.co/TUKP0nz09R,905925 +#Blockchain ready to use for climate change / global warming fight https://t.co/6ziqWqFOko,459544 +"From ocean conservation to tackling climate change, @richardbranson’s highlights of the Obama years… https://t.co/n04zt5esoA",913419 +RT @bo_novak: Animal lover? Concerned about climate change? Want to be healthier? #GoVegan for Jan! Lots of support at…,71764 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,92104 +"RT @TheEconomist: Fighting climate change may need stories, not just data https://t.co/ks8WX359mb",74545 +"If the two scripted disasters never gained much, climate change wouldn't find the best answer cybercrime.",870533 +"RT @p_hannam: New coalmines will worsen poverty and escalate climate change, report finds https://t.co/9g7iVLtMjf",393229 +RT @MickKime: Heres a breakdown of Twiggys $400 mill donation. Not one brass razoo for climate change research. Is he taking the…,686549 +RT @NRDC: Scientists just published an entire study refuting Scott Pruitt on climate change. https://t.co/fkEvsNy5PV via @washingtonpost,299868 +@BillNye what the hell though how are 2 of those most brilliant minds on the planet about to munch into the number 1 cause of climate change,725140 +"RT @LouDobbs: G7 leaders agree to do more to fight radical Islamist terrorism, divisions remain on climate change. @EdRollins joins #Dobbs…",661441 +Weather Channel condemns Breitbart for misrepresenting their climate report and climate change data in general https://t.co/aSG2kMQItm,474203 +"@WhiteHouse Even though climate change forces us to abandon fossils, the new energy regime will be cheaper and even cheaper. Forward!",242949 +"RT @PacificStand: From our partners at @highcountrynews - Endangered, with climate change to blame https://t.co/elvvivhhNi https://t.co/BYl…",179621 +Noam Chomsky: Donald Trump's election will accelerate global warming and humanity's 'race to disaster' https://t.co/3efZBbFacy,537577 +RT @alifrance5: Why have a climate change authority when u ignore their expert advice. This resignation will b the 1st of many.…,847478 +"RT @YouSeemFine: no idea why you'd need something like that to respond to climate change, you're right",884263 +RT @HotWaterOnIce: Not your average Monday: chatted to @elliegoulding about ice shelves and climate change! Head to the @wwf_uk Instag…,793221 +RT @SratLifeDaily: Patagonia is a company that strongly believes in climate change so sorry frat boyz you better find a new sweater to wear…,819944 +"RT @kurteichenwald: In full page ad in NYT in 2009, @realDonaldTrump called for urgent action on climate change. Which does he believe? htt…",490010 +"Wa Gov Inslee appeared at the UN on March 23 to address the effort of the West Coast on climate change action. + +https://t.co/kKucZQDc2t",939135 +"RT @lkimjongin: not to be dramatic but kyungsoo's smile can light up a whole town, stop global warming, bright up anyone's day, cur… ",323575 +I'm enjoying the climate change �� https://t.co/fMaPlCBXdJ,893288 +Weather Channel video uses young kids to promote ‘global warming’ fear mongering https://t.co/jHUn0hkE4N https://t.co/LFzn3VKokO,116830 +RT @AskAnshul: Banning cow slaughter has become a major outrage issue in India but US researchers says #beefban can reduce climate change &…,362231 +RT @Bipartisanism: Ask the GOP about climate change & they say 'I'm no scientist.' But with abortion they are all doctors.…,471844 +@Afrotastic21 you got climate change and people ruining the world & you got old men in power who refuse to see what's right in front of them,176547 +They tell me global warming will kill us but Coats are trending…,565202 +RT @brianklaas: The senior Trump administration official who briefed the press about climate change policy is not familiar with bas…,329502 +"Report cites national security risks from climate change via #WIkiLeaks, #WikiLeaksParty #WikiHackersLeaks... https://t.co/Lg3Bhzea2M",638907 +RT @ClimateCentral: This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/8U2CGri1ce htt…,614055 +"RT @climatehawk1: On the Colorado River, #climate change is water change — @WaterDeeply https://t.co/KAccZaDEDS #globalwarming…",51534 +"RT @Rare_Junk: When the weather is A1, but it's really global warming https://t.co/Y7dx2fLpDn",945333 +I liked a @YouTube video https://t.co/ueZz4VYEbT Al Gore thinks God spoke to him about global warming...,122940 +"Everyone's an idiot these days. I'm telling you man, global warming is screwing with your brains.",469138 +RT @FortuneMagazine: Watch: Obama addresses climate change at the 2017 Global Food Innovation Summit https://t.co/bN0Jwki9WR https://t.co/P…,880749 +"♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/PM48Wxg3BD",778694 +@AntagonisticArt @chuckwoolery climate change is anti science,104364 +Why shouldn't Prince Charles speak out on climate change? The science is clear https://t.co/0MCLVjAl5M,368719 +RT FT : Untested waters: Miami Beach and climate change https://t.co/DxNKIRA8sM,193727 +RT @Greenpeace: Denmark's politicians are going vegan to tackle climate change https://t.co/Nv6gf3n1Mb #MeatFreeMonday https://t.co/7F7SHN3…,665192 +RT @jacquep: Leading climate scientists urge Theresa May to pressure Trump on global warming https://t.co/z3heSpImu6,565739 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,343223 +RT @TheDailyShow: .@algore dissects the argument that developing countries don't have the resources to fight climate change.…,279885 +"RT @AaronBastani: There is no 'both sides' of 2 degrees global warming, or technological unemployment, or a crisis of geriatric care.…",892105 +We won't get rid of the right for a women to choose AND will keep some of the toughest climate change laws.… https://t.co/p8b6Z0LvYI,140680 +RT @ClimateCentral: This quiz will help you decide what park you should visit before climate change takes it toll https://t.co/sjNfOhGZ6G,790521 +RT @starax: SAD!!! : EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/olND1I7m1p,412336 +Conference in Morocco on climate change affecting tourism https://t.co/swdNdAaHfH,445997 +Radical thoughts on how climate change may impact health https://t.co/LSlhxDmKIE,779795 +RT @CityLab: Start treating climate change like a public health crisis https://t.co/U0QFTSfuo4 https://t.co/JzM4BPBPh2,681616 +Leading scientists urge May to pressure Trump over climate change https://t.co/SJkdcCkgMD #afmobi,367686 +"RT @jeffnesbit: On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/wW7VTe28tt",506370 +Indigenous Canadians face a crisis as climate change eats away island home https://t.co/C801BGv0Ll https://t.co/bF3hkmaT61,132168 +RT @tiredhan: did u just say...... that someone being gay.... is more likely to cause a hurricane............ than climate change https://t…,759108 +"RT @RanaHarbi: So Assad is to be blamed for Syria, far right white supremacists in the US, food insecurity worldwide, climate change, dinos…",607329 +THE HILL: EPA chief says CO2 is not a 'primary contributor' to climate change despite scientific consensus:… https://t.co/XYLtORnhwA,833214 +RT @GdnDevelopment: Watch our video featuring the late @HansRosling explaining population growth and climate change #hansrosling https://t.…,989639 +"@MayNer4Life @dmoodymayz Yeah..dahil yan sa global warming.. +Sa summer at fashion.. +MAYNER BraverAndStronger",381419 +RT @voxdotcom: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/cjiuP9xDIy,152267 +"Yes, climate change is inevitable, but we're the only species accelerating it by the odd millennium. (Some say cows' arses,too)",84283 +RT @FluffyRipple: @IrisRimon Isaac Cordal's sculpture of Politicians discussing global warming. https://t.co/MAHx9EMsUR,983881 +RT @HenriBontenbal: EU to lead fight on climate change despite Trump: https://t.co/UMt9tMcZq8,657049 +A new study just blew a hole in one of the strongest arguments against global warming https://t.co/JuUCLpR8oG https://t.co/5l9UfGmMah,460356 +"@boxun @MikeinusaGB @YouTube Could it be more evidence of global climate change? Sad. +https://t.co/rIyBUb6CZ0",700177 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,724623 +"RT @WhyEuropeORG: .@EU_ENV preserves forests for our grandchildren. #biodiversity; #forest-based industries, against #climate change.…",269340 +RT @elliegoulding: Really cute that Trump doesn't think climate change is real. Sooooo cute. You wish mate! Poop emoji #ThoughtOfTheDay,535460 +RT @AFP: Alarmed scientists say freakishly high temps in the Arctic are reinforced by a 'vicious circle' of climate change…,552058 +RT @AP: The Gulf of Oman turns green from algae twice a year in what scientists are calling fallout from a warming planet.…,163554 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",243130 +Yet another scary thing to come out of climate change/global warming. https://t.co/6Lp3uDyW8v,943320 +"RT @EcoInternet3: Reindeer becoming smaller due to global warming, research finds: Telegraph https://t.co/H5g50gDRED #climate #environment",931056 +"RT @williamlegate: If you reject the science proving global warming, then please burn your cell phone as well bc it must be powered by witc…",574005 +RT @johnredwood: The BBC loves running endless Brexit and climate change stories. There is permanent anti-Brexit bias in many scripts and q…,321998 +RT @lifeaseva: Taking shorter showers and buying reusable bottles won't stop global warming. It's the main result of our agriculture demand…,313038 +RT @TIME: Goldman Sachs' CEO explains why his first tweet was about Trump and climate change https://t.co/SMgMboycrU,651974 +"RT @savski: When ppl call deforestation, global warming, mass slaughter, abuse, disease, and human anatomy 'views and opinions' https://t.c…",744160 +"RT @richardhorton1: So the G20 fails to include a pledge on climate change, contrary to past practice. America's undermining of multilatera…",911544 +Dumb guy I went to school with posted something about global warming being fake and people tore him apart https://t.co/WAx1dYPvKU,28314 +Plants appear to be trying to rescue us from climate change https://t.co/wXJkO330zi,420118 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",865942 +"RT @CECHR_UoD: Indian farmers fight against climate change using trees as a weapon +https://t.co/rMz1xbJJ0P #Agroforestry gaining t…",782992 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,175154 +RT @OmegaMan58: End to global warming scam in sight. https://t.co/UjK0Hrxv3P,65902 +Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/Q0XvBki7pu,787883 +@JeffVeillette is there any media coverage about Norm being a climate change denier? Or those other issues? I had no idea...sneaky Norm.,791692 +RT @HannahKennison1: Is Trump going to purge the government of anyone who accepts climate change? Maybe! https://t.co/5apNXB5CgP via @slate,207757 +RT @nowthisnews: This is what happens when climate change deniers gain power https://t.co/039stRCh8N,976442 +RT @masondenning1: I'm not saying climate change is real but I'm in shorts in January .,758755 +Please vote 4 Hillary on Tuesday. She's the only 1 who can beat Trump. Trump will ruin the US & Earth (he doesn't believe in global warming),867625 +RT @AudreyEveryDrey: Complaining about global warming isn't going to change the fact that it exists. So stfu and enjoy the god damn nice we…,607007 +Theresa May admits climate change is not on the agenda as she meets Trump at G20 https://t.co/dr4uhwpq9z,938596 +When will people realize that nothing monumental will be done about climate change until there 0 chance to fix it,994970 +RT @KekReddington: There is no significant global warming https://t.co/ChVG2EN0uG,528695 +RT @KolbyBurger: When people dont believe climate change is real but its 65 degrees in feburary..... https://t.co/eBZ1kzDYLp,534510 +"RT @GlobalEcoGuy: California has been leading the fight on climate change in America. + +And we know will double down on this in the co…",661942 +RT @robert_falkner: Arctic ice melt could trigger uncontrollable climate change at global level https://t.co/4pLBkn3XiJ,715352 +Wis. agency scrubs webpage to remove climate change https://t.co/Xnr7rfMsnI via @USATODAY,786120 +"RT @DavMicRot: GOP made science political long time ago & it is not just climate change: evolution, social science funding, women'…",840591 +RT @JohnFugelsang: & Donald Trump wants you know this proves NASA's part of that whole Chinese climate change hoax. https://t.co/Mc7346asP1,649191 +RT @pettyblackgirI: Your president literally doesn't believe in climate change. https://t.co/hQu220KC9l,229841 +No one understands 'climate change' . . . sounds too wishy washy. https://t.co/rgQgBLcm3j,783682 +RT @Imthiyazfahmy: Thank you pres @MohamedNasheed & VP Al Gore and all the international champions for action against climate change 👏…,218198 +"@realDonaldTrump +Please visit Greenland to see climate change firsthand. We all need a decent place for our future generations.",446581 +"From Trump and his new team, mixed signals on climate change https://t.co/RNpRVkXq0M https://t.co/AeYwiYALm5",936827 +"Aside from wether u want to deny climate change or not, it makes economical sense to invest and shift to renewables https://t.co/mxWfXy91HQ",152582 +"RT @tveitdal: America’s youth are suing the government over climate change, and President Obama needs to react https://t.co/GigjqEByB8",728227 +Trump tries to keep 21 kids' climate change lawsuit from going to trial https://t.co/P2hLNngZDz,11920 +Cersei not joinging the fight is as frustrating as people who don't believe in climate change. #gameofthrones #got #thronesyall,622280 +Bc it has been. Every time we have a nice day the next day we get hit with a storm �� global warming is fucking real. https://t.co/NyqwmOXXnm,735540 +"RT @LeoDiCaprio: Want to stop climate change, @UWM? See #BeforeTheFlood at your University #BeforeYouVote. +https://t.co/ubMubJMbkv",9279 +"RT @JennyEda: Baby Boomers and Gen X out here complaining about us, but we understand climate change, know to vaccinate our kids, and tip s…",757282 +RT @midnightoilband: How come everyone believes scientists about #eclipse but some people don’t believe them about climate change? https://…,904522 +RT @ZaibatsuNews: Prehistoric climate change caused three mass extinction events in a row https://t.co/1wEPQg4Mk9 #p2 #ctl https://t.co/glg…,347211 +RT @hfairfield: Trump’s proposed cuts to the Energy Department could affect climate change more than his Paris accord decision. https://t.c…,820479 +RT @jamisonfoser: There’s a simple explanation for this: Donald Trump knows climate change is real but does not give a shit about you. http…,756206 +"RT @SenSanders: LIVE: Join me and Bill Nye for a Facebook Live conversation on climate change: +https://t.co/TAMzOIo32g https://t.co/JQNVUPi…",678920 +South Sudan launches UNEP-supported national action plan to tackle climate change,440259 +RT @NancySinatra: From the WP headlines: One of the most troubling ideas about climate change just found new evidence in its favor https://…,559157 +RT @Independent: Trump's defence secretary has a terrifying warning on climate change https://t.co/P5dFpOrTku,406889 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,388681 +Reindeer are shrinking because of climate change - The Verge https://t.co/eD0PbHZk43,88041 +"RT @guskenworthy: WTF America? You really want an openly racist, sexual assaulting orange monster that doesn't believe in climate change to…",854980 +"RT @SenatorMRoberts: Al Gore has another fictional movie coming out soon about 'climate change'. + +Let's revisit 'The Inconvenient Truth' h…",922520 +RT @TheEconomist: Donald Trump has promised to rip up the Paris Agreement on climate change https://t.co/LQ9VoOi3iM,213898 +"RT @Frazzling: Irony: + +Those who complain re govt debt hurting next generation are fine w/leaving climate change for that generation to de…",145369 +RT @michikokakutani: 'Energy Department climate office supervisor bans use of phrase ‘climate change’.' via @politico https://t.co/puILDZC…,860687 +Cost: $70 mil How much money do they charge to rent a room here?What about global warming? Which foreign bond count… https://t.co/LUWDy6Y8hI,680519 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",321220 +"RT @IISuperwomanII: PSA: I do believe in global warming. + +Obviously...there's so many eggplant emojis being used.",882331 +Step 1 when it comes to addressing climate change is acknowledging the scientific consensus on what's causing it. #ActOnClimate,907463 +RT @TomFitton: Clean house at EPA over fraud by climate change alarmists. https://t.co/P726yLMLgN,335976 +"RT @chrisconsiders: between anti-vaxxers, climate change deniers, and the sudden rise in flat-earthers I'm just waiting for people to stop…",622805 +The Latest: Trump says climate change decision next week https://t.co/l9ize96oCv https://t.co/JY9UX2HMJH,349122 +Agriculture victim of and solution to climate change https://t.co/x5gmd3Qe1A,324368 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",581146 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/ig8sxJGw2f https://t.co/eo85j1GK7j,455964 +"Martins said 2014 law he backed requires pub. works projects to consider climate change under SEQRA, but that law d… https://t.co/KSi7kvyfha",160166 +@thehill 'wayne tracker' tillison is about to be indicted on charges he hid climate change evidence for years with exxon...,580239 +"RT @omgofinternet: To those of you that don't believe in global warming, what is your honest reason?",18671 +"Amid climate change, small-scale farmers find merit in traditional techniques - Christian Science Monitor https://t.co/Uk9Mgrpx5Z",716376 +Does anyone think global warming is a good thing? I love @fentymoonlight . I think he's an interesting artist.,979435 +"RT @spaikin: 'Conservatives want a credible plan to tackle climate change,' says Michael Chong. #cpcldr https://t.co/aw4lv8xucX",252476 +Koalas don't like water but they're being 'driven to drink' by climate change https://t.co/AtM97l2Lkc via @YahooNews,838635 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,846835 +"RT @EmmaGomezzzz: As long as we're marching for life today, let's support policy to protect refugees & people from climate change. Most pro…",981163 +Lisbon will likely be in the middle of a desert by 2100 if we don’t mitigate climate change https://t.co/7NZnFmUABs via @qz,236535 +"getting pregnant is a pre-existing condition +ISPs are selling our data to the government +global warming is being ignored + +all within the…",927987 +Wait so people are mad at Bill Nye for saying that climate change deniers are bad,710593 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,610576 +RT @ChancellorChopp: I'm committed to leading DU’s effort to mitigate climate change & foster a sustainable future. More on my website: ht…,758414 +Most wood energy schemes are a 'disaster' for climate change https://t.co/3KiK6Q3aJo ^BBCBusiness,18822 +@mtlblog This is called climate change or global warming or whatever,424206 +"RT @mrntweet2: Anti-Trump actor fights global warming, but won't give up 14 homes and private jet https://t.co/6UmolLhyTt",154236 +"1 more week to #EarthHour, join churches across Scotland to show support for strong action on climate change https://t.co/pjquTHBavr",729958 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,407521 +"RT @cnnbrk: Trump will sign executive order to curb federal regulations combating climate change, reversing Obama-era legacy.…",824810 +Santa’s reindeer are getting smaller and you can thank climate change https://t.co/gudZU7gwXj by #diamondsforex via @c0nvey,554576 +@ggreenwald is Trump skeptic on the global warming or on the current political which handles it ? #globalwarming #politic,996125 +RT @UN: 12 #globalgoals are directly linked to climate change. The #ParisAgreement is crucial to achieve them.…,508149 +RT @wef: 9 things you absolutely have to know about global warming https://t.co/TESPXixFH7 https://t.co/K8C7PieM3Y,280895 +RT @kurteichenwald: How will 'climate change is a lib fraud' propagandists explain that 100 large US corporations have stiffed Trump & comm…,110710 +@Logic_Argue @seal_1988 @guardian Sorry what part is gibberish? Hasn't Trump appointed a climate change denier to head EPA?,583480 +"RT @OmanReagan: In the North, it's spring - summer is coming - so here's the deal with dress codes, air conditioning, and global warming.",667841 +"2 lessons I have learned from this video: +1.I'm gonna die bc of climate change +2.Weston is in love with Alfie +@Wes10 +https://t.co/fnajPZ3AsG",949978 +@whoebert @NUnl Misschien aardig om dit kader ook de #docu #channel4 The great global warming Swindle te noemen #kijktip,396471 +We gonna die from global warming https://t.co/I102Zi5bGh,837179 +@EPPGroup @ManfredWeber Especially when a climate change denier fills the most powerful political office.,737124 +RT @INCRnews: Bill Gates warns against denying #climate change https://t.co/n8ZtzHd84x via @usatoday,294524 +"RT @nytimes: In China’s Pearl River Delta, breakneck development is colliding with the effects of climate change…",641827 +"RT @SteveSGoddard: As I have been saying all along, climate change is 97% religion, and 3% science. https://t.co/IwRqnjdjK2",416947 +📷 frankunderwood: tfw you’re having a good time and then remember the ravages of global warming on our... https://t.co/uTdBVDMoHV,515505 +China still committed to Paris climate change deal: foreign ministry https://t.co/elNEj70uYe https://t.co/alZ4T6wfUA,588319 +@realDonaldTrump Of course now he'll say its NOT about climate change..������eal facts happening right now!! #flooding… https://t.co/q0xYAyCHko,604614 +@TheDaiLlew Well at least the impending nuclear holocaust will save us from the coming climate change catastrophe.,446458 +Donald Trump: Get Elon Musk to meet with Donald Trump and discuss climate change and renewable energy https://t.co/92RktdclNk via @UKChange,37360 +"RT @RedTube: If global warming isn't real, why am I able to walk around naked in February?",704078 +RT @YahBoyCourage: you a mf corndog if you think global warming is a myth https://t.co/rbXSy8lHd1,544705 +RT @TreeHugger: Architects finally are taking climate change seriously. Sort of. https://t.co/tfa6SKL8l0 https://t.co/EH1SyMU17R,63842 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,901931 +RT @agrifoodaid: #Climatechange? What climate change? Some #farming communities in #Nigeria still not being reached on awareness.…,269577 +RT @Mathius38: Anyone who thinks today's rate of climate change is unprecedented REALLY needs to read this: @tan123 @EcoSenseNow…,138417 +Cities are throwing out “climate change” in favor of “resilience.” #climatechange https://t.co/95wxvbEm8Z,426497 +"RT @TimotheusW: Harrowing read about the relentless pursuit of #CSG in #Australia - 'Australia isn’t “tacklingâ€ climate change, we…",674947 +RT @tveitdal: From best global warming cartoons: https://t.co/46v4Xq6ka5,247478 +"RT @Saltwatertattoo: I just a reminder, The Leader of the Free World said global warming is a hoax invented by the Chinese. That is all, ca…",209270 +"Last chance' to limit global warming to safe levels, UN scientists warn https://t.co/jDwL1pOkhI",992108 +RT @MikeDrucker: Let's not forget that Trump/Pence are anti-science and believe climate change is a myth. https://t.co/gEjAFtocV6,255923 +Why do global warming deniers is really a scam?,972520 +Can we apply 5p bag strategy somehow? #SDG12 Million bottles a minute: plastic binge 'as dangerous as climate change https://t.co/fuSHQt2KbC,942975 +@amrellissy Lawyers: nations obliged to protect heritage sites from climate change. UNESCO must call to account… https://t.co/YokVoZWJY2,664932 +action4ifaw: Urge POTUS to make climate change a priority! https://t.co/1sFGBd23Ci https://t.co/StlTuu795X,799405 +RT @WorldfNature: Computer models show how ancient people responded to climate change - Treehugger https://t.co/FCPkGlGfio https://t.co/unI…,937887 +Scientists call for more precision in global warming predictions @Nine_Banal,173729 +Two days ago it was 60+ degrees and today it's snowing but somehow there are still people that don't believe in climate change 🙄,485359 +Mike Pence gets buried for pretending he can’t understand the importance of climate change https://t.co/K1JDL2QHut via @PalmerReport,134379 +"As Trump enters White House, California renews climate change fight https://t.co/j3wWR3iSNS",760079 +"Tories must 'loudly disown' Trump's #climate change denial or pay electoral price, conservative think tank warns https://t.co/EUDBc94EXQ",398627 +"RT @IvankaToWorkDay: Non-scientist, oil co. shill and questionable human, Scott Pruitt believes CO2 doesn't cause global warming.…",32929 +RT @hellbrat: Growing algae bloom in #Arabian Sea tied to climate change. #TRUMP #Budget #epa #noaa #climatechange https://t.co/Mrp6lBSEtp…,299783 +"RT @ChrisJZullo: If by being #liberals you mean we care about our education system, climate change and wealth/income inequality; I'll wear…",44735 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,728497 +"RT @cnnbrk: As marchers protest President Trump's actions on the environment, EPA removes climate change info from website…",183312 +"RT @chloeonvine: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https://t.…",94753 +Due to pollution and climate change no doubt https://t.co/tZZ0MrgruE,14623 +Highlighting the important role of #tidalmarshes in climate change mitigation and adaptation in #Australia… https://t.co/CWPlSAkAZK,353731 +@shoshally *sighs in global warming*,297818 +Trump is like okay you know nothing about climate change? You're in charge! You know nothing about education? Job is all yours!,713609 +RT @Slate: Trump will be the only world leader to deny climate change. https://t.co/thTQM5qEy6 https://t.co/0WvubdXUqu,362414 +RT @NydiaVelazquez: I believe that climate change is real & the future of our planet depends on what we do NOW to address it. Retweet if yo…,34025 +RT @adamjohnsonNYC: Reminder there wasn't one question in any of the Presidential or VP debates about climate change https://t.co/wMnIuccRha,704233 +RT @EJinAction: Trumpcare and climate change will have the same victims - Are 'You' one of them? https://t.co/6rpd6DrCkc via @grist,579173 +RT @MotherJones: Badlands National Park's viral tweets on climate change just disappeared https://t.co/KPsZIzoD0t https://t.co/vgnPNIiKcG,591696 +RT @PeterAlexander: New WH comms director on climate change & guns. https://t.co/mLHApfPY9m,315835 +@sunrisedailynow the share of climate change and human activities for Lagos incessant flooding is not 50-50. It is 90% human activities.,270023 +"RT @FistFullaHits: Over 50 bands. Fist Fulla Hits an album to end gerrymandering, restore voting rights, fight climate change and hel… ",926733 +We can't beat poverty and injustice unless we beat climate change' - @PaulCookTF on @ChristianToday… https://t.co/gpINPQjz6J,30642 +RT @YaleE360: First large-scale survey of microbial life in sub-Saharan Africa may help protect ecosystems from climate change.…,665957 +"RT @truthout: Noam Chomsky on #DonaldTrump, climate change and our accelerating race toward disaster. https://t.co/4YImHl6lNv #climatechange",28337 +"RT @ezraklein: In this podcast, @ElizKolbert gives the clearest explanation of global warming science I've ever heard: https://t.co/9MlkSSL…",417278 +"RT @James4Labour: The DUP: +- anti-abortion +- anti-LGBT rights +- climate change deniers + +Disgusting that @theresa_may is buddying up with @d…",50742 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,358351 +Bruce causes climate change with his vape #carboncredits,200711 +@ImranKhanPTI @nytimes It is not only climate change but sadly behaviour of own ppl From KP toKarachi streets full of filth clean them first,389793 +"So now we're going to have a US president, house and senate who believe climate change is a conspiracy by the Chinese. Frigging great.",454424 +"RT @Bentler: https://t.co/QNpwe3vktQ +The nation’s freaky February warmth was assisted by climate change +#climate #recordbreaking… ",717217 +RT @LEANAustralia: Brandis uses US climate denier 'I'm not a scientist' line to peddle climate change doubt. Not a proper QC either (7…,294907 +"RT @latimes: CA's governor is defiantly standing his ground on climate change, health care and immigration in the face of Trump… ",198716 +RT @thehill: National Institutes of Health removes references to climate change from website https://t.co/vxopWSVycJ https://t.co/xMpxdMTtvC,606121 +RT @ClimateCentral: California governor pledges US climate change leadership https://t.co/iffosR8su5 via @climatehome https://t.co/HLdFCElV…,970000 +RT @globeandmail: Does Earth Hour have value in the age of climate change denial? https://t.co/NPRXoICp0c #earthhour2017 https://t.co/O4Ka…,398295 +"How to kill a government. +Trump's transition team crafting a new blacklist—for anyone who believes in climate change +https://t.co/b9QJkhJl9W",849951 +"Survive this end of world global warming disastrous situation on your own!! I frankly, Don't give a Dam, about your state!!",971806 +Scientists just published an entire study refuting Scott Pruitt on climate change - The Washington Post https://t.co/a0KGRGMfFZ,500923 +"RT @ReutersScience: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/rGRaEOqkKV https://t.co/12IQZ3cPDC",307702 +Now I Get It: The hot debate over the Paris Agreement on climate change https://t.co/eQBj13Z2wG https://t.co/M2huwt5BGb,960324 +RT @PREAUX_FISH: Fishes were thought to be tolerant of climate change because of studies on adult eels-but larvae/juveniles much mor…,645317 +"RT @NYTScience: How Americans think about climate change, in six maps https://t.co/l5TMk2I88u https://t.co/Ff3ofxt5YD",29213 +RT @SenSanders: To say that President Trump's position on climate change is pathetic is a huge understatement.,477346 +I don't know if I believe in global warming.,299162 +RT @ZeddRebel: Trump 'Hiding the truth about climate change' may indeed be a more effective message than Trump merely 'ignoring effects of…,544515 +"RT @LOLGOP: The birther who said climate change is a hoax & Cruz's dad may have shot JFK can't imagine Putin doing a bad thing. +https://t.c…",880298 +User error is as big a myth as global warming 😂,612332 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",766985 +"@RepJudyChu if we do not stop climate change, civilization will collapse. The only thing more dangerous is large scale nuclear war",361680 +Chicago (IL) Sun-Times: Trump takes aim at Obama's efforts to curb global warming,302664 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,200394 +"RT @Mig_Zamora: Talking about economic sustainability for coffee farmers - yields, price, climate change #WorldCoffeeProducersForum…",447949 +RT @FT: The effect of climate change in the US will be devastating for agriculture. https://t.co/lUKY1OjOb3 https://t.co/0KThR50AOU,99648 +"RT @PauLeBlanc1: @KFILE Here's a list of what Clovis said about birtherism, climate change, and women in his own words: +https://t.co/m0KBuu…",928859 +RT @hondadeal4vets: If we smoke enough blunts and buy enough Hondas I believe we can stop global warming before 2016,83796 +"@xeni @chrislhayes Nah, probably just a symptom of unchecked #climate change…",925802 +"On climate change, Scott Pruitt causes an uproar — and contradicts the EPA’s own website https://t.co/rHgbqXzSp0",294633 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/D6OJmiNFHt https://t.co/KMBKT71FAJ,303648 +Trump team memo on climate change alarms Energy Department staff https://t.co/PkWdoB3exS via @YahooNews,314580 +RT @CNN: Former President Obama is giving a keynote address on food security and climate change. Watch live on Facebook:…,572088 +RT @cjwerleman: My column on the nexus between climate change and terrorism featured in 47th edition of Green News https://t.co/FcFFrm9c7l,200392 +"Apple, Google, Microsoft, and Amazon will continue to fight climate change despite Trump’s order https://t.co/U1Ya6cfWBB",641822 +@CNN Yes climate change bolstered this catastrophic storm!,385091 +"@algore +Your theory is FUCKED-UP!! +I have 'bout ELEVEN INCHES of your 'global warming' on my deck nr @CityRochesterNY!! +YOU'RE AN IDIOT!!",556789 +RT @GCroker9: @AustinJimenez @Tonyveron69 'It's cold therefore global warming doesn't exist' 'My floor is flat therefore the Earth isn't ro…,203724 +Are chemtrail/global weather modification conspiracy theorists safer or more dangerous than climate change... https://t.co/M7remdjDgY,296730 +RT @NatGeoChannel: .@iansomerhalder & @NikkiReed_I_Am are headed to the Bahamas to understand what effect climate change will have on…,916865 +"RT @SierraClub: Psychologist @reneelertzman on how to talk about one of the hardest topics out there: climate change + +https://t.co/MdXZco1R…",435206 +RT @MyT_Mouse76: It hasn't gotten cold enough for cuffing season. We can continue our summer dating patterns. Thank climate change.,797442 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,586862 +RT @washingtonpost: You can’t deny climate change once you see these images https://t.co/k74AEmMmMf,544527 +"@Stella1050 @ProducerKen Like Obama/Pelosi were on Obamacare, Iran Nuke Deal, UN global warming 'treaty'...",342507 +Are u serious.. I thought this global warming shit was working https://t.co/9d4REJ1nOS,159414 +RT @ClimateDesk: Every insane thing Donald Trump has said about global warming https://t.co/EuPtRVlZ1u,873750 +"Here's how to talk climate change to biomedical research, what's next for science.",240786 +"@TommyWells @c40cities...2 climate change in urban cities, creating green jobs,how organizations can promote work from home2 lower carbon...",912315 +"RT @mayatcontreras: 4. You don't believe in global warming, which means you don't believe in science. That disqualifies you. We cannot trus…",430947 +RT @AIANational: We oppose the U.S. withdrawal from the Paris Agreement and reaffirm our commitment to mitigating climate change:…,502009 +RT @Xeno_lith: Teaching climate change to teachers today. Ice cores came out great! https://t.co/2xEoSPwxwA,406685 +"CLIMATE 'CHANGE' US to exit Paris global warming pact, ex-aide says https://t.co/zHmLPNg4gs",783825 +"RT @ProgressOutlook: While we're destroying the planet through climate change, Trump's stocking the EPA with science deniers.",994307 +A carbon fee is a workable approach to fighting climate change - Pittsburgh Post-Gazette https://t.co/6RiAJ27VcZ https://t.co/szFtH3r7Z9,826534 +"RT @grist: If cities really want to fight climate change, they have to fight cars https://t.co/j8IZDe1Qab https://t.co/1I7PDdX0Ek",958248 +Action plan for world climate change #adsw2017 #worldin2026 @Masdar @ADSW2017 https://t.co/71h8KAHQwp,965880 +"@EPA @EPAScottPruitt Smarter means trusting scientists who study the environment, all of whom agree that CO2 causes to global warming.",641657 +UNESCO showcases indigenous knowledge to fight climate change at COP22 #ElGranPipeMF https://t.co/78Rlic9JWG,250465 +"NASA says space mining can solve climate change, food security and other Earthly issues - CNBC https://t.co/18Fmav07Mb",447013 +Neoliberalism has conned us into fighting climate change as individuals | Martin Lukacs https://t.co/yLBi0uQgNI,855359 +RT @StopTrump2020: UNF*&KING BELIEVABLE-99% of scientist agree-Pruitt says carbon dioxide is not a primary contributor 2 global warming htt…,807064 +@JamesCDenny2 do you believe in climate change? https://t.co/gE7DvRAjLs,986805 +RT @iompng: Migrants’ faces tell us the real stories about the adverse impact of climate change: https://t.co/Hk6ELe8CGa #COP22 https://t.…,461201 +"RT @WWF_Kenya: The effects of climate change are caused by us as individuals, we should all be involved in changing the way we mange the ea…",488707 +RT @tzellyyy: Me when Florida is under water because of rising sea levels and Trump still denies climate change https://t.co/wyeaoNLRPc,895905 +RT @Reuters: Trump to drop climate change from environmental reviews: Bloomberg https://t.co/eXCNRGorAe https://t.co/EasZHy1Nqp,801388 +RT @nowthisnews: Watch Al Franken absolutely shut down Rick Perry over climate change https://t.co/Lr80co69W9,34910 +"@RogueSNRadvisor @Olivpit Thank global warming, Donnie.",242159 +RT @IOPenvironment: New in ERL: negative emissions research is growing faster than entire field of climate change https://t.co/7DoB8cZh9v F…,45534 +RT @NomikiKonst: I can't wait for the millennials to take over. If we survive the nuclear apocalypse/ climate change/ water wars.,976055 +These striking photos from #NationalGeographic show how people are documenting climate change. https://t.co/PkVz0nuxfk,937872 +Trump boosts coal as China takes the lead on climate change https://t.co/tk4C19Ziyn https://t.co/v4oIYGjhN3,838818 +RT @politico: Trump adviser compares climate change research to belief Earth is flat https://t.co/4NUlsbicTg https://t.co/J2eiIpYBlz,590122 +RT @vicenews: Trump’s rumored pick to lead the EPA wants everyone to “love global warmingâ€ https://t.co/ZtvfKXCbah https://t.co/HLBRH3Zglr,21289 +@greeneyedlucy84 Well Since Climate Change Is A Hoax And NORKO is all hot air...I'd say climate change o.0,762446 +"RT @TheFoundingSon: First Sahara desert snow in 40 years +Must be global warming at work https://t.co/yhjMr1Ov05",164145 +RT @theblaze: Trump’s budget director outrages liberals with blunt answer on climate change https://t.co/pGIksJtcn9 https://t.co/LQrJt38W…,397452 +"@LifeSite Also, he has been getting cozy with Soros, and his Marxist, climate change crap... What's the real deal w… https://t.co/VMWVj0y8JO",95291 +"5/ transnational oil companies vs. climate change activists +6/world leadership in the balance +7/corporations vying with nation states",870694 +"The UN faces climate change, the ongoing refugee crisis, and heavy skepticism from the new leader of the US. https://t.co/FPsNQumqFj",419126 +"RT @thinkprogress: Sorry deniers, even satellites confirm record global warming +https://t.co/awCbMKlIIa https://t.co/9zayUOqLSn",314286 +RT @RT_com: Stephen Hawking: ‘We are close to the tipping point where global warming becomes irreversible’…,951661 +RT @ParisJackson: 'also climate change is not a thing' https://t.co/LDTgt6XCBY,187089 +"RT @NotJoshEarnest: That's not the way to spell 'climate change' +https://t.co/39Kg6qondm",375759 +I believe climate change and global warming is fake. There are no scientific facts to prove it. #NationalOppositeDay,679611 +"101°F at 8:30pm in NJ in Jun, but global warming isn't really??? https://t.co/HBKsv366gP",422353 +"@LeeAnnMcAdoo Paul Hellyer talks 9/11, the banking cartel, global warming, and Roswell +https://t.co/2brWCTcbho",886918 +watched politics last night and realized that republicans only care about taxes and global warming...#petty,678095 +RT @capitalweather: Consequence of climate change: More octopuses in parking garages. #supermoon #KingTide. Learn more:…,839278 +RT @DailyLiberal1: Someone in the #Trump admin is finally addressing climate change as Jared asks about what to wear when he moves to…,379592 +"RT @Marky_D1970: So if global warming means higher taxes, global cooling means... https://t.co/PkMgeZgh7I",738080 +"RT @washingtonpost: Scientists just measured a rapid growth in acidity in the Arctic ocean, linked to climate change +https://t.co/whQZfJtlFp",336714 +RT @ParaComedian09: The White House website's page on climate change just disappeared. It has been replaced with an ad for a monster truck…,1816 +@WestWingReport Man-made climate change like man-made global warming is a lie and a hoax. It is all about the power… https://t.co/jUJ7jZPF0f,657388 +RT @SalenaZito: For Clinton to send Hollywood liberals here...to preach about climate change was tone deaf on Guinness record-level…,683321 +RT @lt4agreements: Scott Pruitt doesn't believe in climate change. The guy with a law degree. Over the EPA. Making scientific conclusions..…,477660 +RT @solutionary52: Every year is the hottest year ever - global warming. Every week is the worst week ever for the presidency of @realDonal…,223453 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,421643 +"A guy who gets his money from coal, conveniently denies climate change. Now he's heading up Trump EPA transition. https://t.co/iK3Rf3p0ex",43719 +@senronjohnson - from a voter in your district: please consider Carbon Fee and Dividend to address #climate change. @citizensclimate,381965 +It's freaking June it shouldn't be this cold!!! �� Yet people don't believe in climate change!!!,294032 +RT @NRDC: Urge Trump not to threaten our wildlife and wild places or reverse our progress in fighting climate change. https://t.co/U6Q8AN7T…,109220 +Head of EPA denies carbon dioxide causes global warming – video - The Guardian https://t.co/kcVDW8S9X4,874526 +RT @MarcDanDad: The real 'inconvenient truth' about climate change! https://t.co/0uwnSQ6Y7S,440019 +Dr Zahra it is true what he is saying..Cows do fart and belch out methane.. Significant contributors to global warming...,927947 +4 times JK Rowling incorrectly preached at incendiary Muggles on climate change denial by livestreaming Hungarian Horntail secrets.,574554 +"@homeofbees Hey! We have a new board for bouncing ideas on climate change, are you interested? https://t.co/LTVC09rfhf",128567 +"Sec. of State Tillerson used fake name 2 hide his identity when he spoke about climate change +#makeamericagreatagain +https://t.co/H1Zr8oVusV",378707 +RT @BBCWorld: Norway to boost protection of Arctic seed vault from climate change https://t.co/tqRhXP8Qxy,592854 +"RT @officialdruzma: session: climate change affecting diplomacy nd how to build bridges +#PUANConference @COP22 #PakUSAlumni #ClimateCounts…",456458 +"RT @GavinNewsom: Trump's budget would result in: +- Eliminating funding for climate change research +- Curbing UN peace efforts +- Cuts to Me…",962041 +RT @ClimateGuardia: Australia being 'left behind' by globalðŸŒ momentum on climate change (Without action we'll be a pariah state #auspol) ht…,750953 +"@Lexi #WTF ?? Syria, Trump, climate change ring a bell? You know, things that actually really matter. FFS get over it. Just embarrassing ��",52542 +"Wars will be fought over water in the near future, already are in some hot spots. We must deal with climate change… https://t.co/V1p0PlpGuP",122796 +If your hair is becoming white and crusty and your skin is turning orange...global warming is probably a thing.,187289 +RT @guardian: Fact checking @realDonaldTrump: global warming is not a hoax. #GlobalWarning https://t.co/3n8F5g9E3e https://t.co/XzkDUopB5C,265431 +Pope challenges UN to fight climate change - https://t.co/DXobMZ6WIR https://t.co/AYktowWvqO,828671 +RT @INDIEWASHERE: politicians ignoring global warming and the climate change so they can carry killing the planet for money https://t.co/f8…,244357 +RT @HenriBontenbal: Merkel makes climate change G20 priority: https://t.co/zadw4tGBve,753421 +@Jesusramir32Jr global warming. How warm Is it up there?,204521 +RT @Discovery: A key Atlantic Ocean current could be more likely to slow drastically because of global warming. https://t.co/igjs5R88Q0,14384 +Utopian ideas on climate change will get us precisely nowhere - The Guardian https://t.co/uWhVS5V55g,938581 +RT @NotKennyRogers: On a positive note...Al Gore says global warming should wipe out North Korea's nuclear arsenal by no later than 2113.,739493 +Why aren't feminist mad that it's called manmade global warming? I suggest we change that to woman made global warming. Just to be fair.,272480 +RT @People4Bernie: .@BernieSanders on climate change and coal miners. Don't blame the workers. On many issues they're our allies…,293270 +RT @rbaker65708: White House warns Prince Charles against 'lecturing' on climate change https://t.co/shDZ7EwTDU via @nypost,407620 +For the post apocalyptic landscape of climate change finally playing out for our @followwestwood… https://t.co/eceWBtixlG,221779 +#Repost @yearsofliving ・・・ This is why we have to stop climate change NOW -- because the… https://t.co/BExs9foklY,700583 +"RT @CCLsaltlake: More people than ever are worried about #climate change, but will it last? https://t.co/zIF8h0EwyI @deaton_jeremy…",491385 +RT @axbonotto: Rapid decline of Arctic sea ice a combination of climate change and natural variability #environment https://t.co/xrlw7s8fvq,648006 +The White House isn’t answering basic questions about climate change and golf https://t.co/susEiMDQ9Z by @hunterw https://t.co/6xSBdjKbF7,271260 +@jim82mac Don't act like you're not a republican climate change denier...,68436 +"RT @BostonGlobe: Climate change will hit New England hard, according to a draft of a major report about climate change.…",7675 +"RT @markknoller: Summit Host Merkel tells G20 leaders the agenda includes economic growth, climate change, energy policy and the rol…",820467 +RT @WWF: I just published “The time to change climate change is NOW” https://t.co/N82vmk5WnO,957518 +"RT @SenWhitehouse: Here in Congress, there's a history of doing nothing on climate change. Dark, secret money has a lot to do with it. http…",192926 +How Obama's climate change legacy is weakened by US investment in dirty fuel https://t.co/dPRmkSEcpp,970423 +"RT @RT_com: Cockroach bread may replace steak on menus in bid to halt climate change +https://t.co/wkynrduEbo https://t.co/NhRpjg695D",960163 +My professor said climate change is bs :-),458966 +"Nearly 40 per cent of Americans think climate change will cause human extinction +https://t.co/3wd5A0LDBo",644790 +RT @Alythuh: climate change.. pollution.. I'm so sorry earth,85869 +RT @johanntasker: Defra ‘tried to bury’ alarming report on climate change which warns of ‘significant risk’ to food supplies https://t.co/p…,775140 +".@michelle_sham As a human on Earth, I am genuinely afraid of the damage that will be done to this planet by climate change deniers.",802518 +But 'global warming isn't real.' This is saddening. https://t.co/wt8Elwuiuz,110473 +RT @billmckibben: Record drought/fire give way to record flood in Peru--62 dead so far as global warming amps up another notch https://t.co…,640417 +RT @TwitchyTeam: Sally Kohn’s latest evidence of climate change proves she is ‘not a smart person’ https://t.co/uYBbVAPA3R,280223 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",494357 +RT @IntBirdRescue: Seabirds are key indicators of the impact of climate change on the world's oceans: @BirdLife_News…,174044 +people who say things like this are the same people who say that global warming isn't a problem. https://t.co/hCmyYgGCNy,731471 +RT @RawStory: Bill Nye rips climate change-denying Trump adviser comparing the Paris accord to appeasing Hitler…,3723 +Trump doesn't accept that climate change exists. This is ridiculous. #environment #SaveTheWorld,3202 +"Fav accessible book on climate change, tweeps? I'm not as well-read as I'd like to be in this area and have been asked for a rec.",549109 +"RT @ABCPolitics: .@realDonaldTrump vows to cancel 'billions' in climate change funds to UN, adds 'I'm an environmentalist' https://t.co/P1H…",873234 +"i am concerned for people who genuinely think global warming, racism, gender inequality, etc arent real",580874 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,56879 +@amdugg if global warming was the case their would be less storms as the variance of cold air vs warm air would be smaller,608787 +RT @nytimes: Spring came early. Scientists say climate change is a culprit. https://t.co/ktVedZl1pX https://t.co/ZlsmPJbT2a,151713 +"@mslibor @YouTube @politico So they want to die from emphysema,cancer,cause more climate change&make the ozone layer disintegrate?good call.",457952 +"Celebrities, scientists join new nationwide push for action on climate change https://t.co/6Y08KJ2gq4 (News) #newzealand #nznews",155514 +Watch on #Periscope: global warming Winston Neace https://t.co/TaPQ4b7EYJ,572568 +RT @plantbasedbabyy: pls focus on the diet and animal agricultural side of climate change its so important and ur own tastebuds r NOT an ex…,471996 +RT @ThirdWayMattB: Worth noting - American GOP is the only major party in the OECD that denies climate change. #USexceptionalism https://t.…,749681 +"This climate change denier/known liar will sell his mother to stop the demonstrations +https://t.co/D8TGgI0NCx +#PaulRyan #protests #BREAKING",85658 +RT @LibDems: Why isn’t Theresa May challenging Trump on climate change? The future of the planet depends on it. https://t.co/RKcbiYPHXl,509974 +It is no surprise the same party that dismisses global warming would also dismiss the CBO report,45633 +"Ideally let's respond w relief + coordinated efforts to combat climate change, build infrastructure, and plan citie… https://t.co/iwjgC41GOi",163316 +"Wow, nope, no climate change here. Wtf... https://t.co/J3Y61bx2qa",168820 +"@eugenegu Hurricanes have always happened. You do not know that it's climate change, and I do not know that it's no… https://t.co/jMrlfluPl7",540509 +RT @mashable: Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/0PSasLH9p1 https://t.co/uCWkKHlf64,203774 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",589068 +RT @befeqe: Addis Ababa is witnessing climate change. I have never seen such a hailstorm in my experience. https://t.co/gl4XsvKHZT,930997 +"RT @AFP: March for Science attracts thousands around the world, as demonstrators call to fight climate change and protect th…",327726 +Pruitt can go to Congress anytime he wants to ask for more clear authority to fight climate change. #epa #altgov https://t.co/9npTKH6f0z,673125 +RT @Independent: Donald Trump's views on climate change make him a danger to us all https://t.co/6F0cIH9OSY,470462 +Smart cities will put sustainability and climate change first by 2020 https://t.co/OnAnSjLrHg,275391 +RT @c_bartle: Government urged to get tough on climate change in an open letter -signatories include midwifery & nursing organisa…,723919 +"RT @nprscience: Trump's proposed budget slashes money for climate change: +https://t.co/aC2kU3Y536 https://t.co/ug1V8iLaav",446680 +RT @thehill: American Meteorological Society comes out against EPA head on climate change https://t.co/37bJSHukVr https://t.co/XNs9yxBXjD,141194 +RT @mchristine__: i hope someone does something about global warming cause i can't swim my dog can't swim my grandpas in a wheelchair fish…,583867 +"Trump meets William Happer, t Princeton physics professor who claims 'benefits' of climate change outweigh any harm https://t.co/WHA4whGEYk",302930 +Fantastic @heroinebook piece on climate change @PopSci and don't forget call-out on evidence https://t.co/ZoJOEGuWQT,757862 +"RT @Hood_Biologist: The political turmoil, racial & religious division are the systemic drivers behind climate change. Colonialism IS a… ",649240 +"RT @ComedyWorIdStar: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https:…",551327 +"Subliminal message within the story BBC pushing globalist 'global warming' narrative, global #carbontax #conspiracy. https://t.co/T9sA0XgYhf",162535 +Y'all climate change is real like idek how this is still a debate ����,715022 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,356711 +RT @India_Progress: See Donald Trump was right. There is global cooling happening and not global warming 😝😛😛 https://t.co/JtrKL5zxOc,279120 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,564 +"RT @CarolineLucas: A #Budget2017 speech summary: No mention of climate change, a pittance for the #NHS, a woefully inadequate response to s…",121545 +RT @MotherNatureNet: Artist @H_Rothstein reimagined iconic National Park posters to show the future effects of climate change.…,242286 +"RT @gmbutts: The White House's views on climate change may be evolving, but those of the Conservative Party of Canada sure aren'…",625921 +RT @SenatorDurbin: Reminder: @POTUS surrendered our future to Big Oil & believes climate change is a hoax—ignoring major national secu…,216342 +@SteveSGoddard @SenSanders Some politicians are still using climate change to advance their outdated and disgraced political agendas.,534568 +RT @UniofNewcastle: Our research helps to protect the world’s coral reefs from global warming. https://t.co/09TNb97rrv,173469 +Differences in climate change #GHToday,451677 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,565007 +Standing strong for action on climate change! https://t.co/B58np9K77X,858239 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",707167 +RT @UKBanter: Show your support for Earth Hour by using #MakeClimateMatter and help tackle climate change #ad https://t.co/KVnKWhxs0k,581249 +@AngryNatlPark Spending on climate change is sheer madness. That money could be going to tax cuts for the rich. https://t.co/6URDwAynR3,833702 +RT @ABC: Sec. John Kerry becomes highest-ranking U.S. official to visit Antarctica; he's there to learn about climate change…,14926 +"RT @craftyme25: Dear #Electors #ElectoralCollege, a climate change denier will head the @EPA. Likely roll back all progress & safety regs.…",448775 +"RT @wakmax: Ignore Trump for now. Reflect on how far cooperation on climate change has come with EU China, India ploughing ahead https://t.…",864201 +RT @WorldfNature: Meteorologist goes on rant about climate change - KMTV https://t.co/eCELcUeMAK https://t.co/Qp5FH0G61q,15881 +Federal court orders Government to stand trial for causing 'catastrophic' climate change #feelthebern #SCOTUS… https://t.co/src1I0H9qt,57888 +RT @guardianeco: Obama puts pressure on Trump to adhere to US climate change strategy https://t.co/kDdZInePUT,525539 +"So what do you guys think will bring the end of the world first, climate change or nuclear war?",672859 +RT @PattiHarris: Women mayors are on the frontline of progress in the fight against climate change. https://t.co/VyB6f4z1oq…,297051 +too bad our president elect doesn't believe in global warming lol,413953 +RT @JebSanford: Libs are all for science proving climate change is real... but ignore the scientific fact a child with a beating heart is a…,20613 +"RT @mullmands: 'Australia isn't 'tackling' climate change. We are selling it.' +Well worth the read. https://t.co/dmJl8qmvR4",783978 +#MovieIndustryNews - Al Gore presses on with climate change action in the Trump era https://t.co/0dNWcydcBV,44946 +.@moraymo talks about Arctic climate change and her plans to inspire & empower change at the #NorthPoleSummit… https://t.co/xtvkYdflVo,739146 +"RT @RepStevenSmith: A CNN host said we should all vote for Hillary because she believes in climate change. + +These countries make one t…",242763 +physorg_com: #Mustard seeds without mustard flavor: New robust oilseed crop can resist global warming https://t.co/qpJg3ZoHXb uni_copenhag…,427532 +RT @UNFCCC: Have logistical questions about the @UN climate change conference #COP23 in Bonn in November? We've got you covered…,482620 +RT @jalloyd4: The descent into #TrumpHell begins - chooses top #climate change skeptic to lead #Environmental Protection Agency https://t.c…,338775 +RT @JoyceCarolOates: 'Death-wish'--Freudian theory confirmed by masses of US citizens voting in pres. who denies climate change that will k…,963222 +I'm now convinced that no action against climate change is necessary. /s https://t.co/NGM9l5f1WL,853096 +Recent pattern of cloud cover may have masked some global warming https://t.co/GmEGtigEhk,178136 +Does Trump buy climate change? https://t.co/KYbFmCK518 https://t.co/Io5fHoxXzG,507896 +How will global warming gain acceptance when this is the burden of proof to prove the obvious in Premier League foo… https://t.co/DHju1WpEpO,872710 +RT @wef: The cleverest countries on climate change – and what we can learn from them https://t.co/Q74BYERmPv @apoliticalco https://t.co/IPr…,756649 +Will climate change affect forest ecology? - https://t.co/lNS0nFU4rR https://t.co/mlMTrzMRn2,427921 +RT @_eleanorwebster: Remember our climate change garden @The_RHS Chatsworth? Read my blog to find out what it was like behind the scenes…,236300 +RT @LiberalResist: The governor of California and Michael Bloomberg launched a new plan to fight climate change with or without Trump - htt…,472843 +@PaulPabst Did he make his money studying and then predicting the end of human existence in the next ten years due to climate change?,585050 +RT @markhumphrys: Guy who denies link between Islam and Islamic terrorism claims that climate change causes Islamic terrorism. https://t.co…,722000 +RT @ProgressOutlook: Evolution and climate change are real. Teaching them in schools should be standard and not controversial.,652221 +RT @SteveStfler: Only in America do we accept weather predictions from a groundhog but still refuse to believe in climate change from scien…,157054 +RT @JaneMayerNYer: GOP erases climate change information in Wisconsin - will Trump take science censorship national? https://t.co/sL2hu1cy…,758676 +EPA chief: Carbon dioxide not 'primary contributor' to climate change @CNNPolitics https://t.co/bKDzlsIyOs the @realDonaldTrump Cesspool,842465 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,212791 +51% don't believe global warming is caused by humans? 51% of Americans are obviously morons. #globalwarming,695776 +China to Trump: climate change is not a Chinese hoax âž¡ï¸ @c_m_dangelo https://t.co/DpSIi4lbE1 via @HuffPostGreen,699957 +"RT @laynier: 72% of Americans, who want the United States to take aggressive action to slow global warming, would disagree with…",232164 +Why should they have reached out???.....I doubt they discussed 'climate change':) https://t.co/3eFzDArIas,517116 +RT @abedelrey: People who open snaps and don't snap back are the reason global warming exists,930064 +"RT @FoxNews: On 'Cashin' In,' @RCamposDuffy slammed @BarackObama and @algore for their support for strict climate change regulat…",576283 +RT @thehill: De Blasio signs executive order committing New York City to Paris climate change agreement https://t.co/hD0AMERkAA https://t.c…,265567 +"RT @george_chen: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change https://t.co/8Xv44xT…",17842 +Amazing how with all his knowledge Ben Carson believes climate change is a hoax.,798939 +"RT @hannah_lou_m: be racist, support trump, transphobic, homophobic, islamophobic, disrespect women, say climate change is fake, hate…",168339 +"RT @iwelsh: The Obama administration has done nothing meaningful to stop global warming (signing Paris does not count). In fact, they speed…",106814 +"RT @sassygayrepub: Funny how liberals talk about global warming when we set record high temps. Yet, there's almost no talk of it when we se…",825225 +"RT @Samanth_S: What does a rich, ambitious nation if it begins to run out of land? My @NYTmag piece on Singapore & climate change: + +https:/…",360538 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,612554 +Yet some will point to the cold as proof that climate change isn't real smh https://t.co/tYqo3KqiAh,853657 +RT @emlaughsallot88: Bet they are praying to Gaia for global warming to kick in #ldnont #cdnpoli #onpoli https://t.co/HyMXToUEQh,98480 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,177484 +"Scott Pruitt is in place to 'shut up the Fracking protest +along with the climate change nonsense' +Big Oil writes th… https://t.co/222HEdNYR9",777232 +"RT @prchovanec: 79% of European, 66% of American thought leaders say climate change is a major threat.",768047 +"RT @YouTube: .@NatGeo teams up w/ @LeoDiCaprio to explore climate change and prevent catastrophe. + +This is #BeforeTheFlood →…",881405 +"RT @c40cities: To reduce climate change & sea level rise risks, we need substantial and sustained reductions in GHG emissions…",671404 +RT @Greenpeace: Are these the top five worst things Trump has done on climate change so far? https://t.co/1vyBm1cv0y #resist https://t.co/R…,329427 +"@VP Gee, doesn't look like you're POTUS material either. Keep ignoring climate change & it'll just get worse. Not G… https://t.co/wipCKLemtx",184153 +"74 degrees out in the middle of November, global warming is in its prime",859092 +NY AG: Rex Tillerson used alias 'Wayne Tracker' to discuss climate change while CEO... https://t.co/pCLmXESchC https://t.co/YStybJIpzJ,456205 +"RT @andrewbeebe: In rebuke to Drumpf policy, GE chief says ‘climate change is real’ https://t.co/8Vg83hMfIt via @WSJ thank you @generalele…",280330 +RT @theritzlondon: We will be turning off our exterior lights today at 8.30pm for @EarthHour in support to climate change action.…,203075 +RT @Prem_S: What's lame my dear is you. Your ignorance and hypocrisy re climate change is devastating our country yet you don't…,272683 +@JohnBCool @NatGeo @ChelseaClinton Preach it brother. Man made climate change is a lie.,102279 +@jmcdesq @dfaber84 @TopThird cant we just all get along in the short time we have left before climate change kills us all?,251364 +"RT @pdacosta: Hitting back at Trump, Trudeau cites need for 'courage to confront hard truths' on global warming https://t.co/NuUQjSRWtl #Pa…",691018 +RT @EnvDefenseFund: A once doubtful scientist comes around to climate change impact after visiting Greenland. https://t.co/PUFhlfFO8H,171437 +RT @buhmartian1: @TimKalyegira OK Mr expert In everything. You believe climate change is a hoax?,584523 +RT @leanahosea: Act Now #BeforeTheFlood @LeoDiCaprio documentary on climate change is a must see https://t.co/f07mWhMECu,352915 +"@MzVelmaBeasley Also Yes climate change, again we are the only nation on earth not worried...",938918 +How climate change could make extreme rain even worse https://t.co/XGwBFOAxo0 by #TIME via @c0nvey,118705 +@ayana_ramberg and why even bring up global warming right?Me and you both know it's a hoax!None of the stuff you le… https://t.co/9IBShDFRje,362862 +"@Cybren finally, the lack of coverage of climate change is not only a type of politicization, its a huge success for climate deniers",162835 +"Trump is changing policy when it comes to climate change. What's next, is he going to say cigarettes do not cross cancer.",684924 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/6uCYDZLN0V via @Reuters #climatechange #china",192051 +"I want to see Trump dispute tt there's no global warming. HEY if there is, the first to go is the fishes on your pl… https://t.co/JpvBVylJEM",302733 +"Addio olio e pesci: climate change, la catastrofe nascosta | LIBRE https://t.co/4uEhVIqrlQ via @libreidee",338757 +RT @davidschneider: But remember: climate change is a hoax. https://t.co/XK1gbR8vbA,964326 +"RT @VivziePop: @VivziePop but we now have a pres who thinks climate change is a hoax & has no respect for women, sorry if some are upset pa…",84507 +"RT @BrandNew535: Will unchecked climate change kill us, or just starve us? Environmental action becomes more urgent every day. + +https://t.c…",785363 +"The New Yorker asked me to shoot a story on climate change in 2005, and I wound up going to Iceland to shoot a glacier. The",504198 +RT @thoneycombs: yo only socialist governments are capable of the kind of planning we need to combat climate change. #marchforscience,232387 +"RT @CBSNews: To help fight climate change, about 1.5 million people in India plant potentially record-breaking number of trees…",169990 +RT @C_Smart_Climate: After Trump election conservatives own what happens with climate change. https://t.co/p4aYAW4bAs,191543 +RT @StopNuclearWar: Rex Tillerson refuses to admit #ExxonKnew about climate change decades ago https://t.co/vww20MH7xK via @HuffPostPol #Cl…,746266 +Does climate change mean this weather is the new norm? And what can we do to stop it? https://t.co/LAMJ9f0lDV (Phot… https://t.co/dio8oKwKO9,389694 +"RT @davidsirota: If you wouldnt consider ending a subscription to a paper because it promotes climate change denialism, what would make you…",202010 +RT @tdichristopher: EPA chief Scott Pruitt says he doesn't currently believe CO2 is a primary contributor to global warming https://t.co/CF…,693828 +RT @tan123: Over 300 US electoral voters: Ignore Bloomberg on climate change https://t.co/8cGlEWb8e2,234488 +German chancellor Angela Merkel predicts climate change face-off at upcoming G-20 summit https://t.co/gTWZXpAgKa #canada,933815 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,536804 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",568070 +Carteret Islands; ground zero for climate change https://t.co/86qMwBvbY7 https://t.co/WuECewpWcK,757915 +"RT @merrittk: as a millennial, you might expect that my favorite RPG is chrono trigger. when in fact, it's illusion of gaia (climate change)",214113 +RT @ekphora: Here are the tweets that Badland National Parks posted about climate change and that were removed. Science is being…,430081 +"⚡️ “Leonardo DiCaprio met with Donald Trump to discuss climate change” + +https://t.co/nTQPlU1SQA",219191 +"@PatVPeters ..........and farting is the blame for global warming, jack a$$...I don't believe in global warming...just so you know!",154202 +RT @existentialfish: look at the screenshot! someone's actually covering climate change!!! https://t.co/2wqnXCbEBW,265504 +"RT @KJBar: Vast 'back-to-back' coral bleaching disaster due to climate change, not El Niño https://t.co/T5RCZtK4xg https://t.co/2S66QRXypL",192317 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",231203 +"RT @sungevity: #BeforeTheFlood, the must-see new film on climate change from @LeoDiCaprio, is free online. Watch now: https://t.co/RtJCauB…",921692 +"When I read some of y'all tweets, I can feel my brain cells deteriorating @ a > rate than climate change ��",582394 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/bzok3yxdeb,103419 +RT @nature: Editorial: The potential economic damage from global warming should not be influenced by politics…,469177 +"@rjf57bob @WilsoNerdy majority of republicans are in pocket of fossil fuel industry, which is why they're feeding you climate change lies",67327 +RT @GRI_LSE: Check out our 5-day course on climate change economics & policy making https://t.co/KeLfGDWrFr,409807 +RT @rainnwilson: Be very prepared 4 dismantling of the EPA w/oil lobbyists & climate change science “deniersâ€ running the show. https://t.c…,576187 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,550239 +RT @UNUWIDER: Faaiqa Hartley discusses the expected impacts of climate change on South Africa’s economy and the kinds measures ca…,648313 +"@RosieBarton What I hear from the EU is a refusal to acknowledge global warming is here, water wars are here, and its going to be nasty.",375610 +"RT @JakeReedaBook: If global warming isn't real, then explain why Club Penguin is shut down?",288718 +#RickPerry says carbon dioxide is not a primary driver of climate change #ArsTechnica https://t.co/dyXYW6j5sD… https://t.co/FRiGrZ5c86,661607 +Acknowledge climate change and do something about it! https://t.co/0WW7JNIL9a,440008 +"RT @mcspocky: Oklahoma hits 100 ° in the dead of winter, because climate change is real https://t.co/Qtghk6AjUg https://t.co/pQGqXEfqCz",937627 +@RepJimBanks You need to 'hear' this deeply and learn about climate change. Then oppose Trump!! Listen to us!! https://t.co/nwyJwgMKL1,721289 +Rick Perry clarifies an earlier statement - he says the *existence* of man-made climate change is not up for debate.,287145 +Some great explainers from @voxdotcom and @UofCalifornia about climate change here: https://t.co/mXt4LjZy6t,281673 +@TheMorningSongs climate change,886513 +The impact of climate change on agriculture could result in problems with food security'. ~I.Pearson… https://t.co/7iRLkLvv8v,407091 +RT @IndyUSA: Trump signs executive order reversing Obama measures to tackle climate change https://t.co/lPh1tAWG2b https://t.co/LSFprhRssh,42518 +"RT @bani_amor: Contacting reps isn't enough. If yr tryna make sense of climate change, race, place, class,+gender, here's some help https:/…",742525 +The UK could have changed the way the world fights global warming. Instead it blew $200 million.… https://t.co/PoVkPDR0bM,118175 +RT @Newsweek: Global climate change battles are increasingly being won in court https://t.co/88ITY4515w https://t.co/4x0HIgtJoy,339939 +RT @NomikiKonst: Why this Senator has given 150 speeches (and counting) on climate change https://t.co/RSbld2hfLC via @HuffPostPol,746758 +"There are crazy natural disasters happening all over just now, yet people still dont believe climate change?! Our planet is poorly! Help it!",47529 +#DailyClimate Ireland's staggering hypocrisy on climate change. https://t.co/nmr0NwOteD,750212 +Because of climate change:,162028 +We also discuss this in part 3 of our podcast series on climate change and health https://t.co/oJaLOcOzp0,937194 +RT @ag___11: If u don't think climate change is real then fuck you https://t.co/HuDlZPLLpw,491132 +"RT @SecularBloke: - creationists +- flat earthers +- anti-vaxxers +- climate change deniers + +Have I missed anyone off my “absolute fucking mor…",474018 +Philippines to get $8M for climate change measures: Lopez - ABS-CBN News https://t.co/z6RihAnV6r #Business,361042 +"RT @kwilli1046: If you agree with Margaret Thatcher, that climate change is a globalist conspiracy and a major hoax! https://t.co/RQnO4w2xe6",799826 +Say what you want but he'll definitely take care of global warming... via /r/funny https://t.co/vdNOTmGx2W,513377 +Storms linked to climate change caused more than £3.5m to cricket clubs https://t.co/cczvcm5owx,329632 +RT @nytimes: The findings come 2 days before Donald Trump's inauguration. He has called global warming a Chinese plot. https://t.co/Ep4mbko…,994041 +RT @alexgibneyfilm: NY Times hires climate change denier. Why? For 'balance'? What about a flat earth columnist? https://t.co/GUygdZosjH,721268 +"Yes, but now Trump's President there's no such thing as climate change & all will be ok #planetearth2",93850 +Nowhere on earth safe' from climate change as survival challenge grows https://t.co/FDbP7eW4FF #A,610899 +RT @sciam: Antarctica’s southern ocean may no longer help delay global warming https://t.co/dV174aBcHx https://t.co/sL66QUvvwr,418447 +RT @AkzoNobel: Pleased that @CDP has awarded @AkzoNobel A-rating as a leader in combating climate change #PlanetPossible…,502706 +"On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/pSmBRQrEAx Scott Pruitt is dangerous!",910420 +"RT @NatObserver: Pledge now! Support reporting on perils animals face: trophy hunting, LNG, climate change. Get the orig grizzly tee…",103571 +guardianeco: Nicholas Stern: cost of global warming ‘is worse than I feared’ https://t.co/si4qqmPW8V,338728 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,143979 +RT @nytpolitics: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/xLSRpq99zr https…,908115 +"@njdotcom And Houston is the most liberal part of the state, so you can't blame theme for putting climate change deniers in power.",224771 +Thank goodness for global warming or it might really be cold,203179 +@alroker Shocker! That's the climate change new normal in that neck of the hoods,784900 +Jane Goodall calls Trump's climate change agenda 'immensely depressing' https://t.co/RKppanvMnd,795672 +"@1john22 @channel2kwgn @KyleTucker_SEC Not anything -important things that affect the future. Like DACA,climate change,equality",197824 +Donald Trump's climate change deal doesn't change the fact that my dick is still small.,158701 +Our president doesn't believe in climate change https://t.co/FKcYY4yD8W,863844 +RT @ClimateDepot: Watch: Tony Heller dismantles Harvey climate change link in new video https://t.co/EirKxBVE9E via @ClimateDepot,678273 +African penguins are being 'trapped' by climate change https://t.co/Si5i1mOe3X,291587 +"RT @ChuckWendig: Don't forget the widely hated TrumpCare, or the virulent climate change denial, or HEY ho they're all Russian puppets ha h…",380473 +RT @amworldtodaypm: The leaked report says Australia is not on track to meet the Paris climate change commitments and that investment in th…,144028 +It's started raining while the sun is out a lot here lately. I wonder if it's climate change related.,296369 +What TED session on climate change would be complete without. . . . a cameo by Al Gore?' Bill’s blog on #TED2017:… https://t.co/HJq20JWIzN,100221 +"RT @seru25: Labor unions. +People concerned about climate change. +Activists. +Y'all are in for a bumpy 4years.",353354 +"@absurdistwords GOP control in one state is not the same in another. In other words, climate change in IN is not the same worry as in FL.",74660 +"ICYMI: Regarding climate change, Mick Mulvaney said, “We’re not spending money on that anymore.” https://t.co/csDIXGqcEv @theAGU",359734 +"RT @DionneGlynn: It's Nov 10, northern Utah and 65 degrees....should I be worried? +Republicans insist global warming is a hoax, but…",593537 +"@Anon_Eu So actually his logic could be that humans don't cause climate change, coals does, or maybe cars do, or cows. Like guns.",461573 +...said the man who lead a decades-long lie to America about climate change https://t.co/yIVQZNNohN,787803 +@AmyMek do you... understand what climate change is? It's not just your feet could get wet.,498737 +"RT @washingtonpost: Energy Dept. rejects Trump’s request to name climate change workers, who remain worried https://t.co/dbDzb8OvXS",700957 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,504538 +RT @DrRimmer: The Doomsday Clock - scientists on climate change and time - Dr Nicole Rogers at @QUT @QUTlaw #QUTclimatebiz https://t.co/bna…,736901 +RT @ayee_stefyy: Still can't believe our new president is a moron who believes global warming is a hoax...,651995 +"RT @GeorgeMonbiot: I argue that the failure of all govts to engage with automation, climate change and complexity makes war probable: https…",853083 +"RT @lindenashby: President Trump explaining how much he knows about climate change. Or maybe describing the size of his brain, or hi…",582931 +RT @Jason: 15 (!!!) ships burning heavy fuel oil are much worse for global warming than the world’s cars put together ������ https://t.co/CjCZ…,356177 +RT @Ted_Scheinman: This week: a series of short profiles about women on the front lines of climate change — intro by @KateWheeling & me htt…,140282 +The Totalitarian Consensus - Question the totalitarian consensus on climate change and you immediately confront... https://t.co/w1vsQ026cq,615437 +@santose84931250 global warming is fake,59916 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,358757 +RT @NatGeoPhotos: Explore eye-opening ways that climate change has begun to affect our planet: https://t.co/w7wSJjWbaj https://t.co/wrHxW53…,144672 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,239716 +RT @oxford_thinking: Is veganism the way to beat climate change? A thought-provoking look at the future of food with Dr Marco Springmann…,661831 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,795858 +"Indigenous rights are key to preserving forests, climate change study finds https://t.co/xrSUZVv53X",124164 +What the sea wants the sea gets with climate change the Arctic falls... https://t.co/Xadf9RXbtO,129832 +RT @billybragg: Do those who won't vote Lab because Corbyn's views on nukes see nuclear war as greater threat than climate change or destru…,112460 +RT @People4Bernie: Nuclear Weapons and climate change are the two biggest threats to humanity. Thank you @SenSanders for focusing on t…,242681 +"RT @lindsaymeim14: ICYMI: As Trump unravels hard-won protections of people & planet, concern about climate change reaches record high.…",160144 +RT @USFreedomArmy: Hey East Coast libs. Where's the global warming? Enlist in the USFA at https://t.co/oSPeY3QMpH. Patriots only. https://t…,422103 +@danjdob @Noahcoby1 @KvtvComb @ColumbiaBugle Even if climate change isn't real what is the harm in decreasing pollu… https://t.co/G5tB6vsDgD,546746 +The broad footprint of climate change from genes to biomes to people https://t.co/aUS4ri2uxu,219843 +RT @LifeSite: Why are we worried about climate change when we aren't protecting our unborn? https://t.co/NG9x6lTe9E,151006 +RT @BloombergTV: Here's what President Trump's climate policies could mean for global warming https://t.co/9QJ35exuVj https://t.co/QtuCp8ED…,190868 +"RT @CNN: President-elect Donald Trump met today with Al Gore, one of the most vocal advocates of fighting climate change… ",994821 +"These videos are not simulation but representations of available data on climate change. +https://t.co/H9jHBlowhO",531825 +No more climate change legislation or biomedical research for us! Is the beginning of a new Dark Ages-& a reversal… https://t.co/zowE0kh6H0,35242 +RT @BlessedTomorrow: Here's what thousands of scientists have to tell President-elect Donald Trump about climate change…,858151 +"RT @ProgressiveArmy: Next head of UN global climate talks has appealed for US to 'save' Pacific islands from impacts of global warming. +htt…",432143 +"RT @vicenews: As permafrost thaws, climate change will accelerate. A solution is urgently needed. #VICEonHBO https://t.co/TbtwdnKLQX",12320 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,831941 +"RT @rustybarth: Forget about climate change, virtual reality porn is going to lead to the extinction of mankind #foodforthought",584499 +"when it comes to climate change, are hoomans worth saving?",524383 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,795138 +RT @mashanubian: 18Feb1977: Gambia became a pioneer as 1 of 1st in Africa to address climate change w/what is known as 'The Banjul D…,152972 +RT @griffint15: #RememberWhenTrump said this about global warming. https://t.co/nzV4W2dm3i,703808 +RT @HuffPostPol: Trump budget director pick does not believe climate change is a major risk https://t.co/IYcT3c31ii https://t.co/ZMclwgtYy9,620420 +RT @CBSNews: Bernie Sanders: 'What astounds me is that we now have a president-elect who does not believe climate change is real…,465164 +meanwhile our president elect doesn't believe in global warming https://t.co/BQbOLfaPgM,384067 +"RT @UofGuelphNews: Congrats to #UofG Prof @Sherilee_H, heading multi-million dollar climate change, indigenous food security project…",231989 +RT @NewRepublic: Do we have a constitutional right to be protected from climate change? These young activists say yes.…,946557 +"RT @Jeneralizer: Keeping with the theme: +Bugs for extermination +Polar bears for global warming +Dentists for sugar +Postal workers for…",154720 +"What could a couple thousand scientists possibly know about climate change? + +E.P.A. Chief Doubts Consensus View... https://t.co/tsZFLfiNmK",948569 +RT @ajplus: Leo takes on climate change skeptics: “You might as well not believe in gravity.â€ https://t.co/v8EdagKObD,435694 +RT @ObamaStopDAPL: RT OccupyWallStNYC: Remember that for decades #Exxon misled the public about climate change. #RexTillerson https://t.co…,300631 +RT @AJEnglish: Could plastic-eating caterpillars help the fight against climate change? https://t.co/SCSvpmNMAd,702259 +RT @StephenRoweCEO: Call to curtail exposure to climate change - low carbon investing growing - #climatechange #ESG #sustainability https:…,881456 +RT @ClimateGuardia: UN Secretary General calls on the world to remain united in the face of climate change (We must stand firm! #auspol) ht…,870399 +All the idiots who think climate change is a joke are the same idiots who used to take too long at the drinking fountain.,997972 +RT @Hipoklides: @MichaelEMann @NYMag To keep global warming below 2C: a cat's chance in hell https://t.co/o66CAgNHpN,662440 +RT @yuungnasty: @_imJonah were prob a civilization that keeps reseting bc of climate change so we have to migrate planets every few thousan…,733984 +"RT @ErikSolheim: Military advisors warn of mass migrations from climate change. +For many, climate adaptation will mean leaving home.… ",578706 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,232381 +RT @WhatTheFFacts: 46% of Republicans say there is no solid evidence of global warming.,20967 +Why don't people believe in global warming ?,277542 +Diverse landscapes are more productive and adapt better to climate change https://t.co/IegNnqBV8d,191551 +"Next time your favorite politician says climate change isn't real. Look how much shell, Exxon, etc. donated to them.",11712 +"@SecretaryPerry doesnt believe in man made global warming, he also doesnt believe Oxygen is the primary driver to breathing #climatechange",729970 +"RT @EnvDefenseFund: The White House calls climate change research a ‘waste.’ Actually, it’s required by law. https://t.co/FwQ748bDgG",937412 +RT @socalgrip: So Pruitt is smarter than 2000 scientists on climate change. Must have gone to Trump University. #climatechange…,515785 +RT @JenTheMermaid: Tiny islands in the tropics are some of the least responsible for climate change but get the brunt of nature's resu…,27412 +"RT @SkipperClay: Hey Florida, if you go trump, and trump ignores global warming, and the ocean EATS YOU, YOU HAVE NO ONE TO BLAME BUT YOURS…",626724 +@KitDaniels1776 looks like another victim of global warming and unemployment.,718433 +RT @grizzlygirl87: I study ground squirrels and their response to climate change (repro/fitness repercussions) in relation to hibernation e…,467242 +RT @qz: The US is relocating an entire town because of climate change. And this is just the beginning https://t.co/poPq8dbNHv,127677 +RT @EliStokols: Scientist at Dept. of Interior who spoke out about climate change reassigned to job in accounting office. https://t.co/ojhc…,515849 +RT @elonmusk: Tillerson also said that “the risk of climate change does exist” and he believed “action should be taken',962814 +RT @WaskelweeWabbit: @JAmy208 @Morgawr5 @DennisEllerman @Demygodless @CGramstrup the entire concept of manmade climate change is so stupid…,73851 +RT @tutticontenti: Sea levels 'could rise higher than a three-storey building due to climate change' https://t.co/8CpKla1YWq  via @timesofi…,448294 +global warming is a hoax. https://t.co/iJ3yGzWFba,388958 +RT @TPM: Incoming California Republican says climate change hurts 'Muslim nations' which are 'in the hot areas of the world'…,88600 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",815016 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,342255 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,315500 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,397781 +"@reveldor85 Yes, they constantly run anti-global warming articles disguised as naturalist articles too..he's the sc… https://t.co/hbMqo02tI7",497256 +"RT @JustineinTampa: @POTUS I'm 30 now, but I've been promoting climate change since I was in the third grade! #ActOnClimate http://t.co/d77…",900685 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,895026 +RT @KurtSchlichter: YOU WILL NOT SEE THIS IN THE US MSM: World leaders duped by manipulated global warming data https://t.co/wKciX9ix9i via…,837882 +"If Obama buys a house on Martha's Vineyard, he's not concerned about climate change and rising sea levels period.",857718 +"RT @EricBoehlert: i'm glad you asked... + +'e-mail' mentions on cable news since Fri: 2,322 +'climate change' mentions on cable since Fr…",645914 +The president thinks that China invented global warming.,429221 +"RT @GAbulGhanam: #Water is an aerial tour of how climate change, pollution, and human activity are endangering Earth’s most precious… ",733705 +RT @PeePartyExpress: Congressman leaves stage to a chorus of boos after saying the jury is still out on climate change https://t.co/38Gt8Uk…,644143 +At least we won't have to worry about climate change. https://t.co/979xA3mqav,168585 +RT @thehill: Bloomberg pushes foreign leaders to ignore Trump on climate change https://t.co/kgQBltgXoU https://t.co/BtSsJegUmV,823781 +"RT @PoliticalShort: Not even the late, great Billy Mays could sell this 'climate change' garbage these 'experts' continue to peddle. https:…",732801 +RT @OPB: EPA boss Scott Pruitt questions basic facts about climate change. https://t.co/2C42Sk7h27,484639 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",144983 +How was it schorchio last weekend and now I'm freezing my tits off? And people say climate change isn't a thing. Fools.,558804 +"and don't get me wrong, I probably know more about climate change, oil n gas, and alt -tech than the lot of you.. b… https://t.co/Q0sWurxeNz",78602 +to deal with climate change we need a new financial system https://t.co/EtVyPBzNUT,509354 +RT @CNN: Mulvaney on climate change: “We’re not spending money on that anymore. We consider that to be a waste of your money” https://t.co/…,59464 +"RT @DrMikeSparrow: Polar vortex shifting due to climate change, extending winter, study finds https://t.co/s95ROLg0VW",702425 +RT @ClimateCentral: This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/Udcgs75IHN htt…,194139 +RT @pray4peacewlove: Trump set to undo Obama's global warming!���� 'Give it Back to GOD Who Controls All! We can be respectful guests����! htt…,354470 +businessinsider: Trump’s defense chief cites climate change as national-security challenge — via ProPublic … https://t.co/aHTv0VRXjE,697242 +@chrispb13 @roadster2004 @SkyNews We are coming at this from opposite directions. You are a climate change denier (… https://t.co/f81VRBmQ99,959223 +"RT @DuaneBentzen: @oldschoolvet74 @DorH84607784 Yes, global warming, er, um, climate change, er, um, climate disruption. No, liberal psycho…",925997 +"#global warming my ass, temps have been below average for the past 8 days and predicted to be the same for 10 more days #scam #lies",964409 +RT @KingEric55: What kinda simple minded shit is executive order to stop all federal efforts in fight global warming? What an ignoramus.,552441 +"Julia Louis-Dreyfus endorses Clinton, slams Trump over climate change #Clinton #GOTVforHRC https://t.co/VD32iNf3C4",704720 +"Since people are denying climate change solely on it not suiting their interest, I have prepared a short list of ev… https://t.co/RgwbNfKgkp",637471 +RT @nytimes: How the Energy Department tackles climate change https://t.co/AldDJ8ABEW,392090 +RT @thenation: How will climate change affect the future of the planet? Scientists predict it will be nothing short of a nightmare. https:/…,429352 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",418244 +We can’t bank our future on Malcolm Turnbull’s climate change magic pudding. https://t.co/wt6y7frjf8,212699 +#WorldEnvironmentDay2017 : Dumbest quotes ever on global warming and climate change https://t.co/6C85qzfnCb via @IBTimesUK,433115 +who's strong Christian convictions have shaped his... refusal to accept global warming.' Huh? https://t.co/ttfE3NVF6C,596894 +RT @CalumWorthy: We're halfway through #24HoursofReality. Tell me why you care about climate change w/#24HoursofReality and your pos…,744616 +"After centuries of first hand reports & historical data, lib's can't believe in Jesus/God. Faith in climate change… https://t.co/shMNaEpX1B",700389 +Using the world’s longest lived animals to learn about climate change: https://t.co/gDaHzJIdHk https://t.co/FDNTeJoiTX,499577 +"In the southeast, voters backed Trump—but unless he tackles climate change, they may suffer https://t.co/B4EhtpvtGw",939324 +RT @cnni: Donald Trump has called climate change 'a hoax.' Here's what could happen if he rolls back anti-pollution measures https://t.co/Q…,444327 +"RT @solar_chase: I'm frightened by this as evidence of climate change, but pleased at less social pressure to participate in expensi… ",899081 +RT @RawStory: ‘Stop using our video to mislead Americans’: Weather Channel slams Breitbart on climate change denial…,562893 +"Climate change: Fresh doubt over global warming 'pause' +https://t.co/q7vgo6g2jd",430444 +RT @DailySignal: Trump’s EPA chief backs an approach to science that could upend the global warming 'consensus.'…,590926 +@MrDarcyRevenge @CodeFord That looks like global freezing .. not global warming. That's the opposite of the issue.,301275 +RT @joostbrinkman: Wall Street is starting to care about climate change - Axios https://t.co/rXhQQCGx1I,341119 +"RT @PrisonPlanet: The same amount of evidence exists for man-made climate change as Russia 'hacking' the election. + +None whatsoever. + +#Pari…",629890 +"Harvard faculty condemn Trump's withdrawal from climate change agreement +https://t.co/hhDCOF7neW",292105 +RT @IUCN: Not all species are equal in the face of climate change https://t.co/7nzq1kMB4d https://t.co/Nfmpc08Tpr,598093 +RT @DenverWestword: Trump's pick for head of the EPA thinks 'climate change' is a bullying tactic of the left. https://t.co/p3yJ190mwk,578681 +"@JordanUhl @realDonaldTrump I for one love pollution, filthy water, and global warming.",450187 +"RT @CNN: Bernie Sanders: Trump’s order that dismantled climate change regulations is “nonsensical,” “stupid,” and “dangerous” https://t.co/…",806371 +@washingtonpost Yawn. So are you back to global warming now or what?,377791 +RT @termiteking: Trump doesn't care about climate change but we outnumber him. He won't do anything about it but WE will,552683 +New: UK worries about climate change are at their highest level for 5 years https://t.co/EXUEcpQExJ https://t.co/F2PpF6chnM,310662 +"RT @wanderlustmag: How climate change is ruining coral reefs and the changes that can be made +https://t.co/fJLduyIDcs +#climatechange…",493968 +RT @lilmuertitaa: you gotta be the biggest dumbass in the world if you think climate change isn't happening,213428 +RT @FT: Martin Wolf: That the US presidential campaign has unfolded without a focus on climate change is astounding…,323918 +RT @uclg_org: The Climate Summit for Local and Regional Leaders will discuss local action against climate change #COP22…,659778 +"RT @rtpetr: The major US TV networks covered climate change for a grand total of 50 minutes last year—combined + +https://t.co/lxdDFCVWAH",931821 +@LeoDiCaprio How can we stop Trump from destroying all the progress we've made with climate change?,466144 +"Together, we can create lasting impact to protect communities and wildlife from climate change. As the world goes... https://t.co/s83FCmdFfk",485827 +RT @EthanCordsForMN: Trump's presidency will be disastrous for progressive issues such as combating climate change & creating a #MedicareFo…,576534 +RT @JonahNRO: I don't think you got the memo that you're not allowed to say anything positive about climate change. https://t.co/p0ok3eV9jJ,880020 +SecNewsBot: Hacker News - Morocco is a perfect place for the world’s biggest climate change conference https://t.co/SrAZsC1rAE,983767 +RT @KelseyHunterCK: .@ClimateKIC commits to 6 action areas in climate change adaptation - launch of new adaptation innovation approach…,307996 +RT @FCAtlanta: #RegionNews: Atlanta emerging as a nexus to address climate change and global health https://t.co/vNo7bR4Ogj via @SaportaRe…,901703 +remember that time global warming literally took away our winter,787373 +RT @World_Wildlife: Saving forests is crucial to fighting climate change. WWF's Josefina Braña-Varela blogs for #BeforetheFlood: https://t.…,488684 +RT @ThisWeekABC: Michael Bloomberg urges world leaders not to follow Pres. Trump's lead on climate change https://t.co/H4cRcR9vNM https://t…,138535 +RT @browndoode: They should make not believing in climate change a crime. Punishable my forced to wrestle a polar bear,116502 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,418892 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,695046 +"Maybe @realDonaldTrump should read this, stop being a climate change denier! https://t.co/8I95aJt5Es",601032 +"RT @QueequegO925: Our planet isn't experiencing global warming, just an alternative climate.",260117 +Research in climate change will be targeted for cuts. https://t.co/46qzQXLCBu,84408 +"Even at the temperatures we are aiming for, many people will suffer from climate change' - @kevinanderson… https://t.co/RHeIpVTBoM",438427 +RT @4apfelmus: Does anyone think Lady Gaga is a good thimg? I really love global warming,260358 +@BarackObama @HillaryClinton Youre supposed 2 fight for #PeopleOverProfits & climate change. Fight against major co… https://t.co/Wa6Ophd6tv,564732 +RT @VICE: Ivanka Trump met with Al Gore to chat about climate change: https://t.co/bLdevP5Ram https://t.co/fww0u1o3eJ,727187 +the question is not 'do you believe in climate change' it's 'are you aware of the fact it exists',126996 +RT @MeganLeeJoy: Kicking off a global warming 'Winter' season w/ the #RevolveWinterFormal tonight: Drinking away democracy AND depression!…,166715 +"RT @Alex_Verbeek: Nicholas Stern: cost of global warming ‘is worse than I feared’ + +https://t.co/SSBN3BNS1q #climate #climatechange…",941101 +RT @BruceBartlett: Why the left loses & right wins--NYT so open minded it hires a climate change denier; WSJ editorial page won't allow any…,963211 +"RT @Slate: Leftie cities want to fight climate change, but won't take the most obvious step to do it. https://t.co/xbZsc9GU4g https://t.co/…",206732 +Donald Trump urged to ditch his climate change denial by 630 major firms who warn it 'puts… https://t.co/ghGGgMLL9T https://t.co/QsAHewfyX0,754664 +@TewwTALL the joys of global warming,991119 +@AndrewSiffert @70_dbz The next hurricane to hit US will be climate change related because the media will say so. And they're never wrong.,573773 +RT @Khanoisseur: Esteemed climate change scientist Ivanka Trump's in charge of reviewing whether US should withdraw from Paris Treaty https…,733913 +So how little of a brain does it take to support an administration that doesn't believe in climate change? https://t.co/phs441H1nl,324298 +@HeyTammyBruce @CBSNews fake news and Not global warming like you and sanders kept harping about when ISIS is a big problem?,286589 +Most people don’t know climate change is entirely human-made https://t.co/3xyaHvrWM0 https://t.co/CcnXb2pjtx,452072 +Pope Francis handed Trump his encyclical on climate change after their meeting … Pope Francis ��,574560 +@EJohns_1004 it's hard to find any reason to back her up except for her possible concerns for some social issues & climate change,582553 +RT @RobinWhitlock66: Energy Department climate office bans use of phrase ‘climate change’ https://t.co/CpscLQbgp2,387930 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,106633 +"RT @solartrustcentr: 'Is climate change real, and is the world actually getting warmer?' | @Independent https://t.co/BULmJBy2me https://t.c…",209318 +"RT @Neighhomie: u know what pisses me off?? that climate change was not a topic during any of the presidential debates,none of theM. absolU…",247440 +"RT @thinkprogress: ‘Game of Thrones’ star: ‘I saw global warming with my own eyes, and it’s terrifying’ https://t.co/OqIOQ5mI2J https://t.c…",645123 +"Customs bill would limit president's actions on climate change: PARIS, FRANCE – Last night the conference comm.. https://t.co/32q7sKaEUh",632243 +"RT @AstroKatie: If you were going to be a single-issue voter, not making global warming even worse would be a good issue to choose. https:/…",41005 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,510964 +RT @CBSNews: Bernie Sanders: 'What astounds me is that we now have a president-elect who does not believe climate change is real…,126015 +"Once again @rooshv has been proven correct. #FraudNewsCNN blames obesity & global warming. We know the real reason. + +https://t.co/yP7xKMmioE",925313 +RT @Jinkination: This Jinki fancam of 'Excuse me miss' is the reason why global warming is increasing..call the environmental police…,946901 +RT @guardian: Gas grab and global warming could wipe out Wadden Sea heritage site https://t.co/cgiK0GujVW,645629 +"China clarifies for Trump: uh, no, global warming is not a Chinese hoax https://t.co/uxRQLRn8HK https://t.co/Opy5ychd0C + +China clarifies …",568781 +RT @angiebooh: 'politicians discussing global warming' https://t.co/ezMyPJ5CkI,966168 +Adapting to climate change means adapting to Trump – here's how | Dr Aditya V Bahadur: Donald Trump’s scepticism… https://t.co/b2xPqy8GiD,164600 +RT @MotherNatureNet: This coral doesn't sweat the heat -- and may tell us a thing or two about climate change https://t.co/Y7IhcnaSC4 https…,76245 +"@homojihad maybe, and yet, the president claims climate change is a chinese conspiracy, while having to pay flood insurance in Florida.",54719 +RT @Greenpeace: Inaction on climate change 'would be the end of the world as we know it and I have all the evidence'…,7509 +"Keep it in the ground: Shell's 1991 film warning of climate change danger uncovered + +https://t.co/VJaRxAbsJb",434728 +RT @ClimateCentral: A key Atlantic Ocean current could be more likely to collapse because of global warming than previously thought…,68985 +"Sooo sad how climate change leads to drought, leads to violence, leads to extinction of beautiful species.… https://t.co/1QiiOVNVxA",889229 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,617853 +"We can now stop worrying about climate change, war, famine, epidemics, asteroids, & all other mundane ways we can d… https://t.co/juGqRq9DYH",230037 +@cnni I'll have climate change for a 1000 Alex,598028 +"RT @ajplus: ExxonMobil has been knowingly deceiving the public about the severity and effects of climate change, researchers at @Harvard fo…",934017 +RT @good4politics: Articles? like global warming articles? This are many and fake too. @speakout_april @const_liberty1 @USAPatriot2A @Pecul…,204685 +RT @fintlaw: 'Arctic ice melt could trigger uncontrollable climate change at global level' @guardian https://t.co/kHixiauAqT,275992 +RT @mariyhisss: global warming 🤔 https://t.co/eAQVJm1RaQ,365621 +It sucks and climate change is real but this is typical for lousy Smarch. #dlws,71091 +RT @WeNeededHillary: Trump to drop climate change from environmental reviews: Bloomberg https://t.co/O2g3MItioS https://t.co/2uUMvyeDp6,972408 +"RT @ela1ine: As climate change heats up, Arctic residents struggle to keep their homes #Arctic https://t.co/Jy3AS76Hgd #arctic",109470 +In our alternate universe Kanye performs in Philly tonight & denounces Trump & donates $ to prevent climate change… https://t.co/Cb7oNz20os,79549 +"To fight climate change we need #hope. @GlobalEcoGuy explains'Hope is really a verb...And it changes the world.' +https://t.co/3G7pxsMMU0",362284 +RT @ShadowBeatzInc: My president-elect thinks global warming is a hoax ðŸ˜,87027 +"I think around 45 other MP's as well. While you're at it, creationism, climate change and women's rights too.… https://t.co/30c6qPxgQC",7240 +"@joeallenii @A_helena @Reuters oh didn't you hear, global warming also causes cooling in other areas??? Lmao off. The climate changes period",703452 +From climate change by planting crops that trap carbon.,145197 +RT @USFreedomArmy: Repetition works. Just ask the 'global warming' fanatics. Enlist in the #USFA at https://t.co/oSPeY48nOh. Read the…,1945 +RT @DavidCornDC: Every insane thing Donald Trump has said about global warming https://t.co/JUCuqM4ogm via @MotherJones,712767 +RT @UN: 12 #globalgoals are directly linked to climate change. The #ParisAgreement is crucial to achieve them.…,511943 +RT @Reuters: Vatican urges Trump to reconsider climate change position https://t.co/CuAw71CHdv,228503 +"RT @TheMarkRomano: Crazy person explains how 'climate change' is causing wars. + +THIS is the intellectual garbage pushed in college. + +https:…",675038 +RT @liz_buckley: Trump's climate change research. His uncle - a great guy - had 'feelings' https://t.co/h7TsAPGu6B,850882 +"We now know whales help halt climate change +What is the real reason for #Japans ocean assault? +#OpWhales https://t.co/3wWEvEqP2c",157092 +RT @Sustainable_A: #ClimateChange #GIF #New #climate change @Giphy https://t.co/Qa3pjS8hEn https://t.co/rt4NsfToF4,993050 +RT @TEDTalks: Why climate change is a human rights issue: https://t.co/BJWVGworr5 https://t.co/XtdBhF2qHI,190667 +RT @KevinDeKock2: If my calculations are correct (and they are) the nuclear winter will cancel out global warming and Earth will reset to p…,56081 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,320095 +RT @madfreshrisa: Ppl keep theorizing a/b climate change. Islanders don't have that luxury. We see the water rise & we prepare for somethin…,124432 +RT @KTNNews: Do you think you have a personal role to play in fighting climate change? #Worldview @SophiaWanuna @TrixIngado,929212 +U.S. allies plan to give DT an earful on climate change at G-7 summit - The Washington Post https://t.co/VNsn1Zb1vo,770494 +RT @maoridays: florida can drown global warming and natural selection is coming for y'all,759292 +Wow. Woke up to this news. Can't believe people are still denying climate change. The hurts... Huge blow to the Ear… https://t.co/S9HyIdgWv9,726964 +RT @NuclearAnthro: region of US that denies climate change & hates feds will now demand federal aid to cushion consequences of their s…,355876 +RT @SierraClub: EPA chief Scott Pruitt says carbon dioxide is not a primary contributor to climate change https://t.co/2ivfl09IGU https://t…,932500 +"RT @BadHombreNPS: Here's a video on the basics on climate change (because reading is hard for some presidents, apparently): @EPA https://t.…",251875 +RT @thehill: EPA shuts down program helping states adjust to climate change https://t.co/uDC73UjMIX https://t.co/II0pLFNcff,147687 +All these natural (really unnatural bc climate change) disaster going on the most sickening thing is seeing countries fight for relief,124352 +"RT @sethmoulton: The swamp's rising.�� +(Don't blame it on climate change, @GOP.) https://t.co/Sv5QYwQONk",567215 +RT @jaime_brush: Urge President-elect Trump to take climate change seriously and enact policies that will repair our planet. https://t.co/w…,47328 +"Here’s how climate change is already affecting your health, based on the state you live in https://t.co/qdDZbWSiMJ https://t.co/teIgJM4sHH",384546 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,714132 +RT @Independent: China to Donald Trump: climate change is not a hoax we made up https://t.co/1moVjqiMiT,744069 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/tVa99QMXUw,904328 +We will stand tall against the dark forces that denies climate change. @GreenLatino @DorothyFahn @Greenpeace https://t.co/KFUlTVYWtf,174271 +RT @prageru: Do you believe man-made climate change is happening?,946120 +RT @climatehawk1: Trump’s election marks end of any serious hope of limiting #climate change to 2C | @drvox https://t.co/O4uA38Ayq6…,340483 +The new Bill Nye show's first episode was about global warming and I can't believe the liberals brainwashed him too ��,280836 +#TechNews Air pollution deaths expected to rise due to climate change - https://t.co/PgLhUsQmyq,44911 +"RT @ajplus: 'You might as well not believe in gravity.' + +Leo slams climate change skeptics. https://t.co/kdzZbcZHCL",438926 +"@TomiLahren Here is why we liberals care about climate change, guys. https://t.co/Qg14Xr5Sfu",502640 +"RT @gellibeenz: Only Greyface denies global warming. Don't be like Greyface. +#EarthDay +#ScienceMarch https://t.co/HT8jqo67JH",613771 +It's 57 degrees and tn it's gonna drop to 30 and we are going to get 8-10 inches of snow u wanna tell me again how global warming is a myth?,295236 +The delusions of climate change religion. Justify poor character and action because 'I'm saving the world'. https://t.co/665E2uoSAl,651182 +Google:Kinder Morgan Canada president doesn't know if humans causing climate change - Vancouver Sun https://t.co/gQtgfXtBsA,113815 +@RobertWoodham2 @EcoSexuality @peter_upfield @peidays306 @realDonaldTrump Very true - we have to get out - global warming is a hoax -,70411 +Midwestern agriculture stands to lose with climate change skeptics in charge https://t.co/pAswsbsBuc,770580 +@grip__terry They make planetary climate change. Proud people.,425733 +We were talking about global warming then last vegas then smoking then pot then to birds dying bc of windmills and solar panels,952906 +https://t.co/i9PZjYWVL5 Rally to protest Donald Trump's climate change stance marks US president's 100th day - NEWS… https://t.co/hTckHp2ZBy,859485 +"RT @aparnapkin: FACT: There are 50 states +ALT FACT: numbers are a hoax invented by climate change",567060 +"@CoralieVrxx pretty good movie, worth watching if you're interested in sciences/global warming etc. (and Leonardo DiCaprio is a babe.)",533881 +Arnold Schwarzenegger doesn't give a damn if you believe In climate change https://t.co/FF87dgM0Ad,470525 +"#Stella #blizzard2017 reveal all the 'it's snowing, therefore global warming isn't real' idiots that don't seem to understand basic science.",848469 +Trial of the millennium': Judge rules kids can sue US government over climate change - RT https://t.co/OmMUslLXXI,568784 +RT @BernieSanders: Trump: Want to know what fake news is? Your denial of climate change and the lies spread by fossil fuel companies to pro…,877185 +@jpzeeb @acarroll_1114 this is the scariest response to climate change I've ever heard 'you can't stop it so let's just trash the earth',168726 +RT @eco_warrior17: Prince Charles: We must act on climate change to avoid 'potentially devastating consequences' https://t.co/eGFGBL72HI vi…,587093 +RT @Smethanie: Just told the dog Scott Pruitt's thoughts on climate change https://t.co/zK7qpxQWrL,987387 +"RT @washingtonpost: Stop hoping we can fix climate change by pulling carbon out of the air, scientists warn + https://t.co/Ps9TU2E6JX",342669 +"Remember when #Trump bragged about committing sexual assault, disregarded the Geneva conventions, and called climate change a hoax?",725378 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",487075 +Al Gore offers to work with Trump on climate change https://t.co/Jf5a23y4v1,344476 +"RT @thewrens: I'm not saying global warming isn't real, I'm just saying this is one of the colder summers I can remember.",332836 +"My EPA boy, Scott Pruitt, said CO2 isn't a primary contributor to global warming. Rollin' back those regs for grey… https://t.co/DfSBZXVNXW",767844 +"Take a stand: Democracy, climate change, people & planet-there's a lot to do: https://t.co/o00gSYINL2 #ClimateMarch #May1Strike@fairworldprj",262960 +RT @hockeyschtick1: 'Sundance filmgoers warn of ‘global warming’ impacts. Warn 'criminal’ deniers: ‘We are coming for you’' https://t.co/pc…,71648 +RT @Blurred_Trees: This turd gave $2.65 billion over 5 years to help developing countries 'fight climate change' - while 1000's here s…,529828 +"RT @itsmeghun: 'Our children won't have time to debate the existance of climate change. They'll be busy dealing with its effects.' +THANK YO…",980495 +RT @Alyssa_Milano: Please join me in following these organizations fighting climate change @SierraClub @greenpeaceusa @350…,389168 +We have to build a global citizenry fluent in the concepts of climate change #internationalmotherearthday #SDGs… https://t.co/8DHW4Pvnru,981338 +@Mariobatali @Ugaman72 @ChelseaClinton Mario there is only climate change in Russia come on now,795799 +RT @Independent: Trump forces environment agency to delete all climate change references from its website https://t.co/I1kQv2zu3M,976940 +"@PatrickH63 here's a fact, all the predictive models of the last 40 yrs based on global warming have been wrong. + +@Hjbenavi927 @ScottInSC",96321 +"RT @MitchellLawre20: Trustworthy: Pick a lie, any lie. Inauguration crowd, voter fraud, climate change hoax, etc. You have a whole buffet…",41753 +@Seeker The term Climate change is senseless. The climate is always changing. What happened to the term global warming?,194110 +"RT @ecshowalter: Poss death of early cherry blossoms by huge DC snowstorm tomorrow prob climate change, but feels like decree of evil kin…",504128 +"RT @kibblesmith: [Trump makes National Parks delete tweet] + +Dormant Yellowstone Super-Volcano: You want to see some climate change motherfu…",780124 +I'll start the global warming and melt the ice caps with you!,356023 +#CBC Please end the climate change debate to SAVE THE PLANET B 4 it's too late and allow science to say 'proven' for a CO2 end of the world.,398872 +"RT @londonerabroad: Europe faces droughts, floods and storms as climate change accelerates https://t.co/jDDOZ7q82A",345019 +"RT @thefader: Pages dedicated to climate change, civil rights, and more have been removed from the White House website.… ",776169 +"RT @billmckibben: Trump is making biggest bet any leader has ever made: physics isn't real, and climate change can be safely ignored https:…",359849 +@FoxNews so climate change people are criminals? Well now we know,311294 +"@brianalynn_27 your avi is the sole reason my heart beats, a true masterpiece, a gift from god himself, you have cured global warming",618627 +"Carson rejects evolution and climate change, despite overwhelming scientific evidence to the contrary.... https://t.co/miifMq1s1o",155605 +@IvankaTrump @realDonaldTrump THIS is how you make climate change your 'signature' policy? By destroying the planet? #NotMyPresident,397357 +"RT @shampainandcola: Lana: *breathes* +Media: Lana Del Rey is sucking oxygen from the air because she wants global warming so she can die fa…",880594 +"RT @colinmochrie: Lord Dampnut, the device you tweet on at 3am was invented and developed by those who believe in climate change. So pull…",282389 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,8701 +RT @ClimateCentral: Cities from Sydney to Oslo are setting more ambitious targets to cut climate change than their nations https://t.co/nKH…,646950 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,701935 +Donald Trump fails to mention climate change in Earth Day statement #WorldNews https://t.co/xGQNbZpkv0 https://t.co/sh2ITfW3ku,867236 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",169205 +"RT @Chris_Meloni: I repeat: the world is round, the sun stationary, climate change real, and grieving parents in Sandy Hook. Anything… ",677356 +"RT @nytpolitics: Michael Bloomberg says cities will fight climate change, with or without Donald Trump https://t.co/bMd5qKaEFu https://t.co…",551956 +RT @GreenPartyUS: There is only one Presidential ticket taking the biggest threat to our planet - ðŸŒ climate change ðŸŒ - seriously:…,239983 +"RT @alaskapublic: In a rare case of river piracy in the Yukon, climate change is the culprit https://t.co/uHOLUxImn8 https://t.co/91ZtbqaPkt",829555 +"RT @CBSNews: Six ocean hot spots with the biggest mix of species are getting hit hardest by global warming, industrial fishing:… ",90918 +I clicked to stop global warming @Care2: https://t.co/6RBaniGYy6,604275 +64% of Americans are concerned about climate change so why are we stocking the cabinet with morons who straight up don't believe it exists?,172579 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,9475 +Schroders issues climate change warning: Financial Times: “[Global warming] is a real… https://t.co/7G8xZur0Uf,924591 +RT @FatimaAlQadiri: it's 2016 and the biggest threat facing our planet is Nazis & climate change. like Al Gore & Quentin Tarantino made a B…,676803 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,715117 +"Literally global warming is real, shut up.",795553 +@tveitdal I pledge my support to reduce global warming.,672587 +"RT @KatieKummet: Trees for deforestation +Elephants for poaching +Jews for Hitler +Polar bears for global warming +Blacks for the KKK https://t…",273880 +"Shankland bills target climate change, DNR staffing - Stevens Point Journal https://t.co/37xGGEikyH",29004 +RT @theoceanproject: Paris climate change agreement enters into force https://t.co/UhxOtgwmu6 #COP22,596291 +"France, U.N. tell Trump action on climate change unstoppable https://t.co/mP1A4QMTnT",594134 +RT @cwebbonline: It's a crime that we went this whole election cycle with barely a mention of climate change! #BeforeTheFlood…,684013 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",262766 +"@TJackson432 @RichardDawkins Also, when something has scientific consensus that human influence on climate change h… https://t.co/0STzfH2p5u",332492 +"RT @chelseahandler: Yeah, who cares about climate change? Only every single person with a child. Republicans in congress need to end this c…",33218 +"Me talking about climate change with my grandma + +Her: 'Es porque trump es presidente y a dios no le gusta'",511329 +"tell me, akhi, whats life like in the alternate reality you live in? y'all doin the whole climate change thing too? https://t.co/vZLAKyNxFr",626443 +RT @SenKamalaHarris: Science & technology drives our economy and is our only hope to combat global climate change. We need scientists. http…,76165 +"@drownedworld True, but Chewbacca Pontius Yasin is committed to stopping global warming, while all Crumb cares about is drone warfare.",210055 +"@SpeakerRyan climate change is REAL. Pope Francis believes, so should you.",145456 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,131138 +RT @marxismflairism: And it will only get worse each monsoon season due to climate change. Climate change disproportionately impacts poorer…,864046 +"Google:Now under attack, EPA's work on climate change has been going on for decades - The Conversation US https://t.co/z7zz4gIupj",226831 +@ShelleyGolfs global warming!,641620 +im 90% sure there is a mosquito in my room this is all because climate change!! it better not be a female anopheles,121792 +RT @InsuranceBureau: .@IBC_CEO attributes high CAT losses to: increased severe weather linked to climate change & poor land use policies…,593310 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",998283 +Great Barrier Reef is A-OK says climate change denier as she manhandles coral https://t.co/pZj20v5lQ4 by @mashable… https://t.co/wbFjJP5Egz,366049 +RT @mitchellvii: Hollywood should lead on climate change by giving up all the comforts of modern life rather than giving speeches from thei…,790955 +RT @brianschatz: I want a bipartisan dialogue on how to prepare for severe weather caused by climate change. Severe weather costs li…,484959 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,518884 +RT @zoesteckel: If we were actually entering normal December all this rain would be snow but global warming doesn't exist right lol,444593 +RT @OurRevolution: Fracking pollutes water & worsens climate change. No amount of regulation can make it safe. The time to move to sus…,285948 +RT @tutticontenti: Overfishing could be the next problem for climate change https://t.co/kTnOQOYD4o via @Salon,262411 +RT @AgnesMONFRET: Super-heatwaves of 55°C to emerge if global warming continues #ClimateChange #ClimateAction https://t.co/q2Wjy5Gc9Z,544648 +"RT @DisavowTrump16: Tomorrow is Earth Day and if America would've chosen wiser, we could be fighting climate change instead of denying…",181962 +@1thinchip @Bitcoin_IRA They probably just created it to ruin our economy...like global warming.,29667 +"RT @enigmaticpapi: Even if you don't believe in climate change, WHY WOULD YOU BE AGAINST MAKING THE WORLD A BETTER PLACE???? https://t.co/Q…",101815 +RT @HuffingtonPost: Mayoral candidate follows up climate change skepticism with green energy pledge https://t.co/ZmqbMNaZQq https://t.co/yv…,484679 +"Rick 'Glasses Make Me Smarter' Perry as leader of the DOE. Openly a climate change denier, and STILL has a site up running for POTUS 2016. 😡",165310 +RT @Conservatexian: News post: 'Sally Kohn’s latest evidence of climate change proves she is ‘not a smart person’' https://t.co/72WsWJxxdJ,991755 +"RT @ClimateCentral: One graphic, a lot of months of global warming https://t.co/m5vWPwUnYc https://t.co/DxAy1yCQEr",753084 +@imatu777 @LordAcrips No it doesn't. It's a Chinese myth like climate change.,645827 +"@holly_lanier I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",797101 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,652094 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",415350 +RT @davidsirota: WOW: “You and your friends will die of old age and I’m going to die from climate change.â€ https://t.co/tFswYjwczQ,988696 +"Th teaser for GUILT TRIP +a climate change film with a skiing problem is dropping today. +The… https://t.co/wXKmLxqwvH",254341 +#CWParis https://t.co/a0F9709CTr Take a look at what else the climate change protesters in Copenhagen are promoting.,619928 +"@mauricemalone I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",733556 +RT @jonathanvswan: 'We will cancel billions of dollars of global warming payments to the United Nations. We don't even know what they do wi…,874389 +"Extensive, irrefutable scientific proof that the War of 1812 caused global warming.. +Makes as much sense as the oth… https://t.co/hsNZg4gpNF",889535 +"RT @MeckeringBoy: Cost of climate change? + +World's economy will lose $12tn unless greenhouse gases are tackled +CO2 +https://t.co/XIuKadtGS8…",18492 +"Dems MUST fight 2 end income inequality, raise min wage, battle climate change, safe gun cntrl, justice reform, state&fed level w/o GOP",212156 +RT @RealMuckmaker: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/1BHBphcbQc,446936 +RT @womensart1: Argentinian artist Andrea Juan's decade of Antarctica performances/installations highlighting climate change/ecolog…,99337 +RT @simon_reeve: 'Arctic ice melt could trigger uncontrollable climate change at global level ' https://t.co/Eh5YO0XGGX #ArcticLive,366122 +RT @ComedyPics: if global warming isn't real then explain this https://t.co/S8UyJdt2cv,857685 +"@POTUS deleting climate change , ok it's your vision. But minority rights? Do you love to be hated? Saravá!",752290 +"RT @AGSchneiderman: I will continue the urgent fight to protect our planet from climate change, and to hold those who threaten our environm…",784519 +Not to mention listening for more than 3 seconds to climate change deniers https://t.co/Rh0sWzePv8,841029 +"RT @camscience: Astronomer Royal Lord Martin Rees discusses what we can do about climate change, Thurs 16 Mar. Book free ticket:…",818114 +RT @SteveSGoddard: The global warming is bad in Arizona today! https://t.co/3Vc3QtihFo,391759 +Sudan's farmers work to save good soils as climate change brings desert closer | Hannah McNeish: Haphazard rains… https://t.co/KEPlaFp0oZ,218217 +"On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/pVWgXRW20O",514458 +"Ralph Cicerone, former UC Irvine chancellor who studied the causes of climate change, dies at 73 - Los Angeles Times https://t.co/fqGVQGVi80",725621 +"So... Texas, about to be directly impacted by climate change, is probably going to be requesting federal emergency assistance, shortly...",277280 +The people denying climate change are the ones saying 'I know more about science than a large majority of professional scientists.',960351 +Can we find this man another planet? Trump’s head of Env Protection not convinced our CO2 drives climate change. https://t.co/3A6NPQz4y1,497022 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/MCNFdH1ehb https://t.co/Mux…,673763 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",576817 +RT @greenroofsuk: Study recommends huge #taxes on beef and #dairy to reduce #emissions and 'save #lives' - #climate change https://t.co/Dlj…,113307 +Will climate change really destroy our ecosystem in near future? https://t.co/jFHdGRhdrx #globalwarming,623916 +"The greatest danger to America is not ISIS, Russia, or climate change--it's Barack HUSSEIN Obama. https://t.co/5cLNF0TDG6",650738 +"RT @JamesPMorrison: If you can't have an opinion on climate change cause you're 'not a scientist,' you can't have one on abortion if you're…",647394 +RT @HaynesParker1: Libs/the press love to hype climate change even global ice age coming in the 1970s it's all about a carbon tax on y…,764007 +NJ Senate to vote on bill authorizing electric school buses — a tool to reduce carbon emissions & fight climate change. TY @SenGreenstein,732898 +"RT @AstroKatie: In case you were wondering: no, 4 years of US-led inaction on climate change will not go well for the planet. Now is when i…",391659 +RT @elliegoulding: The UK Govt approving a third runway shows that they are in denial about climate change- mankind's greatest threat. Very…,175838 +RT @SBondyNYDN: It's crazy to me that our future president believes climate change is a hoax. https://t.co/rXUoWYx2ay,467890 +If my friends only knew I'm not going to the club w/them tonight cause I got too into reading about parallel universes and global warming. 😂,648786 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,192616 +DNR purges climate change from web page - Milwaukee Journal Sentinel https://t.co/rtckoKIscf,280107 +"Greater pre-2020 action is the “last chanceâ€ to limit global warming to 1.5C, says UN Environment Programme https://t.co/oF5aTiwY5z",231690 +"RT @BraddJaffy: Rick Perry: CO2 is not the main driver of climate change + +American Meteorological Society: Wrong! + +https://t.co/k9ecdWDryY",760479 +RT @DixonDiaz4U: Seems like a bunch of Londoners were injured today by the 'biggest threat to humanity': climate change.,220087 +"RT @ReutersWorld: In a rare move, China has criticized Trump's plan to exit the Paris Agreement on climate change:…",27968 +"RT @MsSarahHunter: 'A cheater! A liar! A climate change denier!' 'Say it loud, say it clear! Immigrants are welcome here!' 'No Trump! No KK…",435534 +#3Novices : Does Donad Trump still think climate change is a hoax? No one can say https://t.co/tIsI7YKIDR The White House refused to say w…,906542 +RT @climateprogress: TV coverage of climate fell 66 percent during a record-setting year for global warming https://t.co/bmhVjr8aWP,682632 +RT @sean_gra: 2/2 that was struck to find the best way to fulfill the NDP's promise to address climate change: https://t.co/QwAhAIclAm #a…,807456 +RT @ConversationUK: 3 reasons we should shift public discourse from 'climate change' to 'pollution' https://t.co/jVB0r1XqB5,985511 +RT @NRDC: Here’s why the @NRDC filed a FOIA request re: Scott Pruitt’s comments on CO2 and climate change. https://t.co/wm7fzvIE6t,531101 +RT @KekReddington: Founder of the weather channel calls global warming a huge hoax founded on faked data and junk science https://t.co/CUUP…,405436 +RT @creative4good: Great infographic showing the impact climate change has on fisheries http://t.co/6OIHDeLQCb via @cisl_cambridge http://t…,477213 +RT @latimes: Which states are trying to reduce greenhouse gas emissions? Take a look at America's fight against climate change…,440967 +RT @jeongsyeons: im sick of people acting like twice's lightstick didnt end global warming,334834 +"RT @naturaeambiente: Cop22, da Parigi a Marrakesh: la sfida contro il global warming https://t.co/eWHuVPxZ6W",906815 +RT @Alyssa_Milano: This is huge. Kids suing the government over climate change can proceed to trial: https://t.co/C53TlAEN13 via @slate,478680 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,184856 +RT @bozchron: Opinions: Denying climate change ignores basic science https://t.co/Yt20qxUCu4 #bdcnews #bdcnews,527493 +RT @DavidJo52951945: When we leave the EU we need to get rid of EU climate change rules https://t.co/VZNGLyKEZB,562159 +"RT @hvgoenka: Huge hands rise out of the water in Venice, Italy. This sculpture aims to highlight the threat of climate change . https://t.…",244745 +New York braces for the looming threats of climate change https://t.co/stJCKSIhFf ^France24,642003 +Study finds global warming could steal postcard-perfect days (from @AP):bad for agriculture https://t.co/vhchGC2FKa,357986 +"RT @Owl_131: Another delusional Democrat, lining his pockets with taxpayer funded schemes. No global warming? How about climate…",46480 +"RT @DavidGrann: National Geographic asked photographers to show the impact of climate change, here’s what they shot https://t.co/ZtqmoA6Mvy",49925 +RT @washingtonpost: Trump meets with Princeton physicist who says global warming is good for us https://t.co/NPbR10qZwL,979680 +"RT @hourlyterrier: MAY: I need 6 weeks to improve my position + +EU: OK + +MAY: *Returns with some climate change denying, fundamentalist…",662792 +The denial of climate change and global warming is the most idiotic strategic move from #Trump ever !!! https://t.co/C2bmuJqZse,75837 +RT @LenniMontiel: NOW - Get into the facebook chat on climate change & inequalities https://t.co/bxEP21qwpc #WESSchat here with the a…,943024 +RT @AltNatParkSer: Somewhere a US student is desperately trying to find the government's stance on climate change for a Spring paper due to…,576033 +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/kY7njEZK5L,345642 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,634597 +RT @Marchant9876: 'Vocal minority': Wife of Liberal Party powerbroker quits over lack of action on climate change https://t.co/cDg8QGezzF…,743366 +"Canada not ready for catastrophic effects of climate change, report warns: The report graded each province an... https://t.co/ySQgh5QpKa",573632 +"RT @V_of_Europe: Terrorism, climate change, cyber attacks atop official Amsterdam risk assessment list https://t.co/PEKXFNWMqR",292228 +Seven things to know about climate change–National Geographic' https://t.co/FIBqtG6369,843750 +@exxonmobil - Exxon climate change controversy: https://t.co/N34QFM7RUm,510205 +"RT @PMOIndia: On issues like climate change and terror, the role of BRICS is important: PM @narendramodi",709542 +"RT @AlexSteffen: We just can't say this enough + +Oil & climate change are at the very core of the current American political crisis.… ",228488 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,922831 +RT @DKAMBinSA: We stand by our promise to continue the battle against climate change #ParisAgreement #WorkingforDK #DKPOL https://t.co/nE0…,579403 +"RT @SafetyPinDaily: The religious case for caring about climate change | By @NesimaAberra +https://t.co/7xKNf3YRWz",395851 +"In an ironic twist: +Based on this theory, will the administration use global warming as rationale for the 'disappoi… https://t.co/1gsumP8Dqy",440675 +"Retweeted Kholla Bashir (@bashir_kholla): + +Worldwide people are much less concerned about climate change.... https://t.co/dsKKtrJegW",714011 +"RT @SimonBanksHB: According to @GeorginaDowner on #QandA, @theipa doesn't have a position on climate change + +https://t.co/T0VGIgPUiK + +#fact…",679588 +RT @JoshMalina: Think how much worse it would be if climate change were real. https://t.co/cP6u15aPjn,154261 +RT @ClimateCentral: Snow cover in North America is on the decline in part due to climate change https://t.co/sY2sDGjPQs https://t.co/pNnGYu…,701991 +RT @airnewsalerts: About two billion people could become climate change refugees by 2100 due to rising ocean levels: Study https://t.co/BC1…,78214 +RT @ClimateCentral: Congress is protecting coasts from climate change with mud https://t.co/i42IFh1dkN https://t.co/ZjTMTteLey,807282 +RT @sacbee_news: California targets dairy cows to combat global warming https://t.co/auwpsEoUaH,668050 +RT @Pamela_Moore13: Terrorists blow up children across Europe but Angela Merkel is unsatisfied with climate change talks. https://t.co/tFnH…,734739 +I just came back to encourage people to watch Before the Flood bc it's super important and climate change is REAL peace out,385189 +"Mexico, a global climate change leader #TCOT #WakeUpAmerica https://t.co/ejpvoV3RYR",413920 +"This is what climate change looks like + +https://t.co/4AY1IaXtbU + +CNN, thanks for more FAKE NEWS!",651019 +@realDonaldTrump I wonder if you are rethinking that climate change is a hoax theory when most of the scientific community says it's real.,255286 +RT @PizzaPartyBen: If global warming is a hoax why is it 8 fucking degrees outside rn,258396 +RT @thehill: Trump admin buries EPA website designed to be kids' guide to climate change https://t.co/dWQcArSzxc https://t.co/hiIZkrXr0K,931784 +RT @charlesmilander: 14 sci-fi books about climate change`s worst case scenarios https://t.co/fHMjpsLFPS https://t.co/Va0EjMJpay,79989 +RT @UNEP: #DYK that #peatlands are a natural way to fight climate change & that satellites are being used to help protect the…,628610 +But global warming is a 'hoax' .... riiiiiiiiiiiiiiight shit drying up like a raisin. https://t.co/Bap8TsamIl,439993 +52 degrees in June. Must be that global warming everyone is talking about,898414 +"RT @melzperspective: EPA chief: Trump to undo Obama plan to curb global warming. +#DemForceNewsBlitz +https://t.co/VMRPPVhiiE",681341 +Climate Champion Seruiratu with climate change leaders at Climate Action Stakeholders Consultation @oceans https://t.co/I9eLvsrvV0,150769 +"@gobbledeegook @Vic_Rollison @GeorginaDowner I doubt they care as long as he trashes climate change response, pro choice policies etc",710936 +"RT @funder: Trump warned of dire effects from climate change in his company's application to build a sea wall + +#TBT #Resist #RT +https://t.…",616628 +RT @100PercFEDUP: #Trumpwins Planned Parenthood..liberal judges..race baiters4hire..Companies who benefit from phony climate change...all #…,811994 +"Indigenous rights are key to preserving forests, climate change study finds https://t.co/KCcYJuPm6y https://t.co/u6buuguT2q",556747 +"RT @morten: @realDonaldTrump This is climate change, Mr. President. It affects us all whether or not you believe in it.",843257 +"RT @insideclimate: Trump's budget treats climate change as the hoax he once called it, slashing funding for action on global warming https:…",99188 +i'm watching bill nye's new show and i'm not even 10 minutes in and he's already talking climate change i LOVE HIM,427006 +RT @XHNews: UN climate conference in Marraketch urges highest political commitment to combat climate change. Find out what Chin…,97899 +RT @NBCNews: Secretary of State Rex Tillerson used the pseudonym 'Wayne Tracker' to email about climate change as Exxon CEO…,706552 +"RT @peta: Meat production is a leading cause of climate change, water waste, and deforestation. If you're concerned about our…",717134 +"From Nasa to climate change: how the Trump presidency will impact science, tech and culture https://t.co/qKytW4J0vI",920814 +RT @freedlander: Trump on climate change and oh my god we are doomed https://t.co/jZtUS5CS8l,583327 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,738594 +"RT @ryanhumm: Planet Earth has power. It doesn't ask: climate change, real? But it asks: what's this marvelous world worth to you? https://…",506262 +RT @AJEnglish: Why you shouldn’t trust climate change deniers - @AJUpFront @mehdirhasan’s Reality Check https://t.co/o2w7vA7dTn,63123 +"RT @SeanMcElwee: during an election that will decide control of the supreme court and action on climate change, this is malpractice.…",929360 +"Retweeted New York Daily News (@NYDailyNews): + +China to Trump: We didn’t invent climate change and it’s not a... https://t.co/Kgh8W4DSzr",741854 +RT @Chemzes: Jesus his first piece for the NYT is about denying climate change. Says polls were wrong about the election so clim…,305707 +"To fight climate change, try one of these diets. New study in @changeclimatic https://t.co/6CzUGcGLtI @FuturityNews",837793 +@jaketapper 2000 scientist say it's 'extremely likely' human activity cause of at least 50% of climate change. Not… https://t.co/KwLBWrprai,742000 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,918334 +"RT @UNICEF: 50m children are on the move and out of the classroom - many fleeing war, poverty & climate change…",956244 +"ministry of energy encourages media on climate change take up +https://t.co/yCDtsefa70 https://t.co/mZJuDScLVS",493656 +RT @RobertStavins: Worth reading re Trump victory & climate change policy https://t.co/0d02CHTYEK @CoralMDavenport @AmyAHarder @LFFriedman…,155104 +UK must not cool stance on global warming: World-renowned British scientist Martin Rees has… https://t.co/lQSsgszsHy,598173 +RT @NatureClimate: Agriculture victim of and solution to climate change https://t.co/YXCUDxicTQ via @YahooNews,693350 +"So @realDonaldTrump , how do you explain the 70 degree weather we had in Scranton here today & now snow if global warming is 'made up'?",858955 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,648396 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,381704 +"Progressives say global warming is a problem. + +I say when @POTUS @realDonaldTrump 'heats up' our economy, global warming goes back burner.",761694 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,880806 +"RT @JCHannah77: The new Minister of the Environment, Michael Gove, with his chief climate change advisor https://t.co/zjlggzqoLg",227080 +"RT @NotJoshEarnest: Esteban Santiago was investigated multiple times by the FBI. Since they didn't find any climate change violations, they…",623268 +RT @hoplitnet: Conservative logic on climate change. https://t.co/xj7EyTwwJX,983828 +Donald Trump pulls US out of global climate change accord https://t.co/qHYhbZDvI4 https://t.co/dQGDemVcxM,802279 +RT @climatehawk1: Four things you can do to stop Donald Trump from making #climate change worse | @PopSci https://t.co/FaF7ekFm3x…,987980 +RT @EcoInternet3: [WATCH] Cycling naked for #climate change: Eyewitness News https://t.co/iZDb5NYpIN #environment,211241 +"100 times more carbon than tropical forests, peatlands matter in the fight against climate change https://t.co/vsfLk3Yu46 via @cifor",265042 +RT @SarahBaska: when ur at a party and u remember ur president doesn't believe in climate change https://t.co/N1m9PCfiEY,174321 +"RT @danspence2006: #DonTheCon idiotic tweets on climate change. + https://t.co/1BtAGsgGHA",461455 +RT @PoliticsNewz: Kids are gearing up to take Trump to court over climate change https://t.co/90KAiyaiJ6 https://t.co/zo5lJ19DXT,399200 +wtf?! someone stood up for a white person?! climate change is real https://t.co/ADLGoadGvw,52238 +Priebus says Pres Trump’s default position is that climate change is 'bunk'. Awful news for US & world. https://t.co/I7B9gxHVDG,619713 +RT @TIME: Google's Earth Day doodle sends an urgent message about climate change https://t.co/3XwgxbVeHk,219773 +Why climate change is good news for wasps https://t.co/9OM91shnLW,276473 +"National Geographic asked photographers to show the impact of climate change, here’s what they shot +https://t.co/8lNdGC44t2",868018 +West Coast states to fight climate change even if #Trump does not,758458 +@wrongwaydan1 @lucmj2003 How inconvenient. Let's have a climate change fundraiser where we serve bacon cheeseburger… https://t.co/7LqEwxAxp4,929280 +"@RiverFilms I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",589155 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",266361 +"RT @PeterGleick: Without #climate change, what are the odds that the worst #drought in California history will be followed by the we… ",914494 +#Google UNEP: .PaulKagame wins #EarthChamps award for leadership in fighting climate change & national environment… https://t.co/P0RAfMGHoJ,560119 +RT @ajplus: This water bottle challenge raises awareness about climate change �� https://t.co/ZFTq66WLEE,486451 +"RT @donaeldunready: Ealdermen keep whining about climate change. Of course climate changes! Winter spring summer autumn, it's called a year…",881623 +"WASHINGTON: While President + +Donald Trump + +'s beliefs about + +global warming + +remain something of a mystery, his ac…… https://t.co/8Ays596xuk",219667 +RT @gnarleymia: people be like global warming isn't real...explain it being 52 degrees rn then,380317 +"RT @manny_ottawa: Delusional are eating their own + +“You and your friends will die of old age and I’m going to die from climate change' http…",221371 +RT @ClimateKIC: The @citiesclimfin lays out how cities and subnational bodies can finance solutions to climate change…,37074 +RT @OCTorg: Reminder: US government has known about danger of climate change for over 5 decades. #youthvgov https://t.co/qnaFSnsRbJ,713540 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,548241 +imagine holding a position in the white house and thinking funding for climate change is a waste of money but a divisive wall isnt. Sad,611865 +Bill Nue Saves the World is so cute and it makes me anxious about climate change at the same time,987116 +RT @Independent: Trump's new executive orders to cut Obama's climate change policies https://t.co/QMqzyabFNM https://t.co/BML3ctOiPQ,322192 +RT @ashenagb: We needed to work on climate change now. We are now four more years behind and I feel that is will be too late to save our pl…,216069 +RT @LuxuryTravel77: 10 places to visit before they disappear due to climate change: https://t.co/Psyibhvhso #travel #thebestisyettocome htt…,629946 +Help us save our climate.Please sign the petition to demand real action against climate change. https://t.co/MxZkuNdtW2 with @jonkortajarena,13575 +RT @TeresaKopec: Which is why Trump was asking for list of scientists working on climate change for Govt. https://t.co/2XsveuvUwK,811195 +RT @NatGeoPhotos: These compelling photos help us visualize climate change:https://t.co/OBwzuViRc7 https://t.co/FeYVHMMF51,265187 +"Proper infrastructure investment must account for climate change, via @HooverInst https://t.co/2TKwP8QV7L",664758 +I didn't realize that they had climate change that far back! https://t.co/x1GgKeQalT,682704 +@Fahrenthold @realDonaldTrump What's with the global warming headline on the phony cover! Bizarre.,403445 +President elect Donald Trump is a global warming denier Tahiti will be under water soon so good time as any to go b… https://t.co/hpjBuIU9eW,254631 +"@SealeTeam1 (1) There is no such thing as global warming. Chuck Norris was cold, so he turned the sun up.",616375 +RT @AP: New EPA chief says he does not believe that carbon dioxide is a primary contributor to global warming. https://t.co/8qw21Gw1sw,772787 +It's fucking November and I'm still in t shirts and track shorts. You can't tell me climate change isn't real.,964612 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",126727 +"RT @washingtonpost: In Trump budget briefing, 'climate change musical' is cited as tax waste. Wait, what? https://t.co/Zz1e74WzSt",804398 +RT @washingtonpost: Analysis: Trump’s climate change shift is really about killing the international order https://t.co/g00Bp4Rdc7,904502 +@WesClarkjr It would also address the future culture of dealing with climate change driven natural disasters as they continue to occur 8/,771068 +RT @climatehawk1: N. Carolina military bases under attack from #climate change | @TheObserver https://t.co/Gm6pyqqwtH #globalwarming…,996118 +And doesn't believe in global warming,48173 +"RT @manakgupta: Terrorism is the BIGGEST threat to world today.....not global warming. + +#LondonAttack +#LondonBridge",210227 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",236789 +RT @CBCAlerts: Expedition to study effect of Arctic warming cancelled due to climate change. Early ice breakup makes Coast Guard ship's tri…,70995 +#NewBluehand #Bluehand Trump: Want to know what fake news is? Your denial of climate change and the lies spread by fossil fuel companies to…,706649 +"RT @StephenWoroniec: ADB warns of 50% more rain under climate change, but continues to fund fossil fuel production +#gas #cleancoal…",785152 +"RT @AYOCali_: Not sayin' I'm for global warming but + +This warm November shit is dope ðŸ˜",905971 +How a rapper is tackling climate change - Deutsche Welle: Deutsche WelleHow a rapper is tackling climate chan... https://t.co/jHjasxglKs,895249 +"RT @kateoneil75: Our children will pay the greatest price for climate change. +What will it take to save them? +What will you do to… ",637993 +We might like this 80 degree day in winter but in a month when it's summer and y'all are melting you'll regret liking global warming,626143 +RT @TheDailyShow: .@jordanklepper finds out how scientists are working with Canada to archive global warming data before the Trump ad…,181536 +RT @MooShooMin: when AQA gives climate change as a 6 marker & the only reason u could remember against climate change is #aqare https://t.c…,462251 +"@TracySueStewar2 Not happy with their climate change stance, my car, hairspray, etc. are not responsible for glacie… https://t.co/5c2EkRbbg2",146057 +"If we want to stop climate change, we're going to have to pay for it https://t.co/u0syR4S5Ae via @HuffPostGreen",186483 +"Sen. Wagner blames body heat, Earth slow death spiral into sun for climate change https://t.co/rixRzNotZt",955391 +"Climate deniers blame global warming on nature. This NASA data begs to differ https://t.co/V5oVLZpx6e +These are what are called facts.",627421 +RT @Independent: Barack Obama has safeguarded America's climate change commitments – for now https://t.co/sCnNxeGJRX,677657 +RT @climatehawk1: Understanding how #climate change is influencing #HurricaneHarvey | @ClimateSignals https://t.co/EcPkQKrg5w…,109807 +RT @LateNightSeth: Ted Cruz once told Seth that global warming is overblown. So we brought in a climate scientist to explain why he’s…,2354 +How climate change hurts the coffee business https://t.co/zSF0qmDADd #NEWS,596661 +Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/zr4ZCUNxIQ,697797 +"RT @NRDC: More permafrost than expected could thaw in the coming years, contributing to climate change. https://t.co/ocdJYz8ZRq via @nytimes",449687 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,89035 +RT @garyscottartist: It's group crit time on Monday - 'show and tell' for my climate change from deconstructed found objects project... htt…,934819 +@ThatGurleyKid but does it really affect any of us if trump doesn't acknowledge climate change?,474445 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,499061 +RT @Libertea2012: Big Oil must pay for climate change. Now we can calculate how much | Myles Allen and Peter C Frumhoff https://t.co/XZZdbT…,222175 +"RT @tulaholmes: Seattle Marched too! ⚡️ “ Protesters march to advocate for greater climate change efforts” + +https://t.co/ldt2PMHIAi https:/…",816137 +Twitter resistance explodes after federal climate change gag order https://t.co/B3BuciJKdb via @HuffPostPol (check out 51 Twitter handles),958446 +RT @VChristabel: I want to be able to understand the people who believe that the government controls the weather but that climate change is…,451394 +RT @supdiskay: lmaoo and people still treat global warming as a joke we're all gonna die https://t.co/ZOrN6XMyF1,988130 +RT @jengerson: Funny how quickly climate change ceases to be an issue when we start talking about ghg-heavy industry in Ontario. https://t.…,39619 +RT @richardbranson: Calling for bold action on climate change https://t.co/qqfEAz98qV @TheElders https://t.co/RYohznljXQ,531092 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",970953 +RT @RichardEngel: Nytimes says report on climate change leaked because source worried Trump admin would suppress findings https://t.co/XhB…,6685 +RT @James_BG: The 'open mind' on Paris Agreement and acceptance of some manmade climate change obviously doesn't extend that far https://t.…,57260 +@PeteWeatherBeat It was very wet too. Wish we would get some of that 'global warming temps' in upstate NY Peter.,339478 +"Climate doesn't care about Pruitt or anyone; climate change will continue and we will lose: fresh water, agricultur… https://t.co/6xqx2l0QGT",854673 +RT @ashokgehlot51: Global warming & climate change is a matter of worry. Switching off lights for an hour will help in creating awareness.…,391664 +RT @LEANAustralia: One set of reasons climate change is a social justice issue. Sooner we have @AlboMP cities minister…,105187 +RT @CNN: Here's what President Trump's executive order on climate change means for the world https://t.co/2ZGK9JDnLB https://t.co/mCevSH3VRH,489312 +"RT @LibyaLiberty: If global warming doesn't get you first, then this will. https://t.co/MbJ1YqIeG6",605384 +"RT @ACCIONA_EN: We teamed up with National Geographic to fight climate change #YEARSproject +https://t.co/xSfGwpg0DE",345792 +"Unsurprising, given pervasive hostility to science, including Darwinism and climate change. https://t.co/PFxA48xmBS",498080 +A disaster for the planet as climate change deniers are handed power: global implications of Trump's ignorance https://t.co/o2yAigdJOE,442883 +@EdMorrissey my climate changed overnight. Yesterday it was windy and rainy. Today it's calm and sunny. It'll change again tomorrow.,366507 +Cold War spy photos of Russia are helping U.S. scientists study climate change https://t.co/ef1YK6pY8o via @VICE https://t.co/3FTV3CxVYU,268424 +@DaveDaverodgers @OntarioGreens We should be focused on eliminating pollution/waste not worrying about 'climate change',548053 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",816356 +Rapid decline of Arctic sea ice a combination of climate change and natural variability https://t.co/Y8GR0PK9I3,319790 +"RT @adirado29: Trump names Scott Pruitt, Oklahoma attorney general suing EPA on climate change, to head the - The Washington Post https://t…",406053 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,749147 +RT @erinisconfused: watching the leo dicaps climate change doc n waiting for him to vape a huge blueberry flavoured cloud into our gd atmos…,860970 +"“...global warming, we know that the real problem is not just fossil fuels – it is the logic of endless growthâ€ https://t.co/9tEjx7KRTt",848457 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",163149 +RT @_Anunnery: @crampell EPA Chief Scott Pruitt says CO2 not contributor to global warming; flat Earth warming because it turned m…,133966 +@Walldo @chrisgeidner Ohhh... like when he told the Times he was open to being good on climate change?,800062 +#wathupondearne 04/08/2017 UPDATE: Research links aerosols to recent slowdown in global warming https://t.co/OGHrsHHZIS :,702964 +Florida voters: this man is not a scientist either so he can't figure out global warming like the rest of us who be… https://t.co/HRF0DNntBt,44870 +"RT @truthout: Noam Chomsky on #DonaldTrump, climate change and our accelerating race toward disaster. https://t.co/4YImHl6lNv #climatechange",370116 +RT @MkIndBrit: @KTHopkins And again the UN silence is deafening. Too busy reaping the financial rewards of climate change policy.,264 +Emmanuel Macron thinks he has convinced Trump to rejoin Paris Agreement on climate change https://t.co/hcCeieJDSl #NewslyTweet,691694 +RT @CounterMoonbat: The people who predicted parts of Manhattan would be underwater by 2008 due to climate change are concerned about 'fake…,386234 +"“Oklahoma hits 100 ° in the dead of winter, because climate change is real” by @NexusMediaNews https://t.co/sTvnR5bph2",622990 +RT @wiscontext: .@snopes confirms that @WDNR removed language about climate change from its website. https://t.co/KMtotfryI0,761421 +"RT @kajsaha: 'In 1989, I wrote a book on climate change, the bad news is things have since gotten much worse' - @billmckibben #atAshesi",550240 +"Vulnerable to climate change, New Mexicans understand its risks - Las Cruces Sun-News https://t.co/UhlkIssu9z",18557 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,880977 +RT @camillefaulk13: you think the reason they lived underwater in the year 3000 is cause of climate change?,900311 +RT @yo: The state that will be most affected by climate change (#Florida) is voting for climate change denier...…,290640 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",834981 +RT @sarahhh_lingle: trump denies that humans have anything to do with climate change or environmental destruction...that's all good night b…,805937 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,5660 +China may leave the U.S. behind on climate change due to Trump https://t.co/hExYzSr2BH via mashable,937229 +"@FaceTheNation Newt is insane, what science degree does Rick Perry have, he is a climate change denier NUTBAG @neiltyson @ENERGY @EPA",602273 +RT @tveitdal: Scientists just published an entire study refuting Scott Pruitt on climate change https://t.co/6a3BK5SbYU,756623 +RT @INDDigitalNinja: This picture shows how polar bears are being affected by climate change😟 || Photo by Kerstin Langenberger…,314251 +@YouTube @NatGeo @LeoDiCaprio He lectures poor Americans about climate change while leaving a million x bigger carbon footprint.,859126 +"RT @siemens_press: Joe Kaeser op-ed in @TIME: «To beat climate change, digitalize the electrical world» https://t.co/B19caeZpT3 #FortuneTim…",625840 +RT @UNEP: How to define preindustrial era and how far back do we need to look for accurate global warming comparisons?…,628722 +"This crater in Siberia, 'doorway to hell,' may allow scientists to view more than 200,000 years of climate change: https://t.co/puV8WlI07g…",31683 +RT @314action: .@DanaRohrabacher says 'dinosaur flatulence' may have caused climate change. We sent a dinosaur to his office with…,637301 +"RT @UCDavisResearch: As a result of climate change, a new UC Davis shows spring is arriving early in the northern hemisphere. In... https:/…",861106 +Saying 'climate change' instead of 'global warming' decreases partisan gap by 30 percent in U.S. https://t.co/bpnlGwS9ZL,962504 +"RT @heyyPJ: We care more about emails and obstruction of justice instead of creating proper healthcare, equality, climate change and more.…",413768 +RT @Hurshal: #climatechange Ventura County Star Ventura moves on climate change plan Ventura County Star……,509887 +RT @CarriganShereck: When you're hitting it off with a little cutie but then she says she thinks climate change is a hoax https://t.co/iecv…,252731 +@CNN Why has USA president and supporters not been able to answer if climate change is a hoax? Real does not know alot of things.,795288 +“you’ll die of old age and I’ll die from climate changeâ€ indeed #JohnGalt https://t.co/3kXUgoedr9,710479 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",174945 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/ig8sxJGw2f,579830 +"RT @mitchellvii: Democrats are planning a mission to the Sun to stop global warming at its source. Just to be safe, they plan to land at n…",229717 +RT @nationalpost: 'The start of a new era': Trump signs executive order rolling back Obama’s climate change efforts…,144271 +"RT @MichaelSalamone: Like Rex Tillerson, I too considered an internet alter-ego for discussing climate change, but @WereAllGonnaDie was tak…",379189 +"Honestly what are millennials, fossil fuel, ice caps, climate change, politics??",290199 +"RT @KikkiPlanet: 'Believing in climate change is not left wing. It's science. If you don't believe in it, that's because of ignorance, not…",200446 +"@steph93065 @Coyote921 You said you deny science and climate change, that's pretty unambiguous.",128390 +"RT @BasedElizabeth: What is it this time, Liberals? + +Did Russians hack the van's GPS or was it global warming and/or workplace violence aga…",699939 +"RT @espiekermann: Hispeed rail symbolic for the US now: fundamentally unprepared to change: transport, climate change, healthcare. https:/…",108841 +"NOAA scientists didn't cook the books on climate change, study finds ➡️ @c_m_dangelo https://t.co/vIOL9vgpiO via @HuffPostGreen",312441 +RT @lenoretaylor: This is ridiculous - EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/ISjRGlcgCK,864148 +RT @Wild_Gramps: Climate change is the challenge of our time. Long-term research is the way we will establish how climate change wil…,950584 +RT @MatthewACherry: When you ask Republicans about climate change https://t.co/abnPPNWykZ,961196 +RT @mygreenschools: The burden of climate change on children is worse because their bodies are still developing. #ClimateChangesHealth…,685323 +RT @nytgraphics: Spring arrived early. Scientists say climate change is a culprit: https://t.co/no0VWLa4JE https://t.co/3gOlL6W3NP,805401 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,698939 +RT @HuffPostPol: . @SenSanders tears into Trump’s 'disaster' of a climate change order ➡️ by @lee_moran https://t.co/KIAYaoN17M https://t.c…,814000 +WUWT:Claim: Next 10 years critical for achieving climate change goals #UKIP #SNP #r4today #Labour #tory #BBCqt https://t.co/bG2h14x76c,58299 +@KayWhiteKTCO they also come from people whose job is dependent upon research dollars for climate change.,23273 +"RT @kylegriffin1: Trump called the mayor of an island that's sinking due to climate change. + +He told the mayor not to worry about it. +https…",995061 +What's the point of studying climate change if we can't tell the farmers what it is & how that will impact their li… https://t.co/mHc0bNunkI,676193 +RT @abcnews: 'We're moving forward without him': @algore says @realDonaldTrump isolated on climate change https://t.co/AleyedrC7v https://t…,546056 +RT @MikeBloomberg: There are immediate steps we can take to address climate change & save our planet. #ClimateofHope shows how.…,655182 +RT @NYDailyNews: China to Trump: We didn’t invent climate change and it’s not a hoax https://t.co/cYeg4H9G9L https://t.co/1T3xFKV3KV,69773 +ExxonMobil’s shareholders force the company to confront climate change head on https://t.co/aMZDDaNJF9,587608 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",17138 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,280642 +RT @ClimateReality: We *should* rely on good science — and 97% of climate scientists agree climate change is real and man-made…,371093 +"RT @SierraClub: Former EPA head is worried about Trump, climate change https://t.co/mtwDUd3vxm #pollutingPruitt",779346 +"If you want to convince people of global warming, 'the only way to fix it is to spend money on all the things Dems want' is the worst way.",818106 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,318382 +"Good thing it doesn't contribute to global warming, though. Right, @ScottPruittOK? https://t.co/C2lGCYlBSn",767509 +RT @SenSanders: We don't need a secretary of state whose company spent millions denying climate change and opposing limits on carbon emissi…,777623 +"@Dfildebrandt make a shadow budget, otherwise you are useless to Alberta. Also, stop denying climate change. https://t.co/AU2AiuRfPE",107387 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,130632 +RT @Ottawa_Tourism: Earth hour begins soon! Turn out the lights & show your support for the fight against climate change #EarthHour https:/…,187272 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,566063 +RT @johnmcternan: Have always been glad that the SNP are followers of @LordMcConnell on climate change even though they never admit it http…,286832 +"Teens suing U.S. over climate change ask for Exxon's 'Wayne Tracker' emails + +https://t.co/d7MSp5YKsk",63870 +Lol global warming isn't real. RIP to the dock. https://t.co/izt7d5SeGX,128230 +RT @TIME: EPA nominee Scott Pruitt acknowledges global warming but wants to restrain the agency https://t.co/ibpA62bT3M,197323 +Except climate change. https://t.co/YMZSPf7cuy,716749 +RT @ClimateCentral: Deforestation accounts for more than 10 percent of the global carbon dioxide emissions driving climate change…,957299 +"RT @Ragcha: Joe Heck voted to repeal Obamacare, defund Planned Parenthood and block measures to combat climate change. Wrong fo…",274019 +RT @_JessssicaLaura: Everyone stfu about saying its global warming it's spring get over it or go do something about it instead of complaini…,203658 +"RT @sierraclub: If elected, Trump would be the only world leader to deny the science of climate change. Be a #ClimateVoter! https://t.co/Bi…",191203 +RT @TIME: What cherry blossoms can teach us about climate change https://t.co/vHgDjgFtEI,267003 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,716822 +Trump and his people are not only climate change deniers but fact deniers. Obama did NOT wiretap DT. How bout an apology Pres. Chump?,375666 +"RT @Reuters: BREAKING: 2016 surpassed 2015 as the warmest on record in 137 years due to global warming, El Nino: U.S. government…",823132 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,377725 +RT @jandynelson: Check out this sculpture by Issac Cordal in Berlin called 'Politicians discussing global warming.' https://t.co/73wHMvPGc8,18572 +"@mitchellvii I think Liberal BS is the primary contributor to global warming. Oh, yeah, don't forget Dope Francis. https://t.co/g9BOsnz0mc",356855 +Here’s how Trump’s new executive order will dismantle Obama’s efforts to reverse climate change ... https://t.co/bRnKbkYpX6,105902 +"RT @josephamodeo: @realDonaldTrump @EPA Also, I hope you'll remain committed to the Paris Agreement on climate change. Lastly, please…",827866 +@DaniiiCali yeah screw global warming,478653 +RT @TheLittleProf: Trump could face the 'biggest trial of the century' - over climate change #OurChildrensTrust https://t.co/2oz5TatMNF,349139 +This is a good article about climate change denialism in mainstream media. https://t.co/buvqai0XXW,68048 +Your mcm calls climate change 'global warming',635269 +Day 1 policy is to reverse all climate change policies https://t.co/JwKete4Y9a,363713 +RT @MatthewPrescott: We needn't wait for government to end climate change. It starts on our plates. https://t.co/mT1gEihSol #ClimateMarch h…,87799 +RT @owenxlang: Me realizing our possible president doesn't believe in climate change https://t.co/8qnBW8vlnE,915713 +"@AssaadRazzouk ��The #1 issue we face is global warming. ��By 2030 over 80% of the boys will be unable to read, think, or write ��Vaxxed TV",609213 +"RT @Gizmodo: A brief chat with Elon Musk about climate change, Rex Tillerson, and Donald Trump https://t.co/IJo34UeDSq https://t.co/xrYj3Dq…",1868 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",777800 +@RiceGum @vasulmao climate change exists,574642 +Tory leadership candidate cheered for dismissing climate change #cdnpoli https://t.co/DM1RW5kP0r via @HuffPostCanada #CO2 #AGW #CAGW,858064 +RT @hannahv_08: Do you believe in climate change?,638221 +"Between their climate change denial garbage, the Blackwater reacharound piece, and Maggie Haberman, @nytimes is really not worth my time.",480115 +RT @CNN: Trump's withdrawal from Paris climate accord met by defiant US mayors and governors vowing to fight global warming…,596549 +"All American climate change theorists sitting in Marrakesh &discussing climate change, you've been Trumped #trumpwins #COP22 #climatechange",573227 +RT @BeckySuess: The White House doubts climate change. Here's why the Pentagon does not https://t.co/oNHJGo3aXu,667910 +"RT @astroengine: So, yeah, I really wish it was a climate change conspiracy, because the alternative is an absolute nightmare for our plane…",269505 +@realDonaldTrump An important issue and one of many reason I back you. Please DON'T do global warming crap,681429 +Nowhere on earth safe' from climate change as survival challenge grows - The Sydney Morning Herald https://t.co/IJcJfyQvNH,980390 +climate change isn’t a myth. get out of the way if you do think it is. we no longer have time for yous,904230 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,261374 +"RT @SteveSGoddard: Imaginary climate change is not going to kill you, and only a complete moron would believe that it will",889016 +"RT @byuAP: As for me and my house, we'll believe in global warming when it shows up in the Bible",1873 +RT @jes1003: What is it about global warming and cleavages? Yesterday's Sun and today's Mail both #indenial @TheSun @DailyMailUK https://t.…,427871 +RT @leftcoastbabe: EPA Sec. #ScottPruitt says CO2 doesn't cause global warming. Waiting for HHS Sec. #TomPrice to say cigarettes don't caus…,574530 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,602979 +#weather Cloudy feedback on global warming – https://t.co/H41ouAUlRU – https://t.co/9aRKJpZIn7 https://t.co/MQCUlDrGrT #forecast,347948 +"@nyt_owl69 @jdobyrne1 @AEOByrne +No global warming here! ��Brrrrrr!! https://t.co/SltHFqFREG",282595 +RT @BuzzFeed: Other major nations officially commit to fighting climate change — with or without Trump https://t.co/HuIYFrqnNU https://t.co…,412481 +RT @TaitumIris: Our new president thinks climate change is a hoax. Our new Vice President believes in conversion therapy.,380725 +RT @iansomerhalder: Speaking of climate change-TONIGHT Is another killer episode of @YEARSofLIVING ! 10/9c on @NatGeoChannel https://t.co/T…,63535 +RT @iaafkampala2017: 'Effects of climate change are real and with us. Part of greening K'la was to address #climatechange @iaaforg Amb Terg…,734774 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,179529 +"@ashrafghani @narendramodi we can fight climate change, pollution,poverty etc by introducing rooftop plantation all over the world.",633917 +"CH: 'Trade, security, climate change and migration challenges are all global issues.'",894682 +"RT @maudnewton: Meanwhile, scientists frantically copy US climate change data lest it vanish under Trump. https://t.co/n1qKjAeV4r",158195 +RT @EnvDefenseFund: Why is Pres Trump attacking climate change efforts that the EPA has been working on for decades? https://t.co/0W25UsRpWL,763806 +I'm reading more and more that CO2 doesn't actually cause global warming and that scientists have been muzzled by Liberals and their media.,848639 +"So Tillerson's emails, under his alias that he used for discussing climate change with Exxon's board, we're... https://t.co/TBhFtAo5Rh",194609 +@realDonaldTrump just withdrew our nation from the global commitment of climate change. #ParisAgreement,865198 +"RT @PCGTW: If you want to fight climate change, you must fight to #StopTPP says @foe_us ' @wwaren1 https://t.co/F9c78bvNj5 https://t.co/GPZ…",565875 +RT @andreshouse: what clouds see - great concept to make climate change accessible to children! https://t.co/zazoyDWz8N,496725 +Positive of climate change...my carrots wintered over this year https://t.co/aHP8Db2Sss,953477 +Trump’s denial of catastrophic climate change is a clear danger https://t.co/kLzpRHx6bi,630968 +Michael Moore calls Trump's actions on climate change a 'Declaration of War' against Planet Earth. https://t.co/ui7vFxWtL0 #POTUS @potus,737186 +"RT @MySunIndia: Mitigate global warming by lowering the emission of greenhouse gases. Think wise, Switch to Solar. #SolarizeIndia https://t…",526033 +"RT @kurteichenwald: In full page ad in NYT in 2009, @realDonaldTrump called for urgent action on climate change. Which does he believe? htt…",404501 +@TurnbullMalcolm replaced the 13 scientists that @TonyAbbottMHR removed from the CSIRO climate change centre they h… https://t.co/CKh4BatFz5,558384 +RT @FarmAid: A new study shows how climate change will affect incomes. Check out that agriculture map... https://t.co/m9NgMrBv1u https://t.…,904548 +@TuckerCarlson is owning another idiot liberal academic who can't give a straight answer on climate change.,328893 +Spotlight: World needs binding measures to combat climate change https://t.co/b1ENpnQwtc https://t.co/yDtCsw6Bkn #CHexit #China #Philippi…,455263 +RT @MelinaSophie: I knew global warming exists but now that I'm in Iceland & there's no snow around in DECEMBER + forecast also looks…,411075 +"RT @RisingSign: Retweeted Climate Reality (@ClimateReality): + +We can debate how to tackle climate change – but the science is... https://t.…",370060 +RT @DollaMD_: Damn this global warming good,116665 +RT @voxdotcom: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/cjiuP9xDIy,432933 +@RepErikPaulsen @theaward unfortunately the BWCA may be spoiled by then due to climate change and the dismantling of EPA. Thoughts?,608567 +Ljubljana utility planning more anti-pollution projects - With November dedicated to adapting to climate change... https://t.co/EJzq3XBTfn,908282 +RT @ajplus: Bill Nye wants you to care about climate change. Here’s why. https://t.co/ljQiheoTay,66979 +#China blames climate change for record #sea #level s https://t.co/SgLBvTdtuH,599838 +RT @EricBoehlert: Politico then: she's going to be the climate czar. Politico now: climate change was never really her thing https://t.co/W…,543212 +"Literary writers resist telling stories about climate change -- Enough of that! “Good Grief” by LENS https://t.co/HUTseocne4 +#anthropocene",885689 +Also cited climate change law - oblivious of fact that UK Parliament adopted first climate change act in world. https://t.co/0uLhUihYFc,443882 +"RT @Alex_Verbeek: �� + +This is #climate change: + +Glacier in 2006 and 2015 + +photos by @extremeice via @ddimick https://t.co/n4j1iFAlvw + +https…",876929 +#ClimateChange UK slashes number of Foreign Office climate change staff https://t.co/UiEsM9WaSU https://t.co/fefLtGfzgw,887643 +RT @CNN: The kids suing Donald Trump over inaction on global warming are marching to the White House https://t.co/s6F5DK504K https://t.co/q…,624540 +RT @JimStLeger: It looks like Trump is making good on his promise to deny climate change. He put a top climate change denier in cha…,34911 +RT @DrSimEvans: Seriously though @WorldCoal – is contributing to climate change not a 'basic coal fact'? https://t.co/OSo2PCVti9,580022 +RT @AmBlujay: People who eat KFC or ribs with fork and knife are the reason we have global warming and wars on earth,198211 +RT @AusConservation: Global green movement prepares to fight Trump on climate change. https://t.co/lsZCtFJfQQ,630440 +RT @semodu_pr: Climate change researchers cancel expedition after climate change makes conditions too dangerous…,542738 +Roboter bedrohen in human-caused climate change denial in human-caused climate change denial in der Welt,871903 +RT @americamag: Here's what Pope Francis and Catholic social teaching have to say about climate change. https://t.co/AxYq2GfNRR,716228 +RT @retroJACE: global warming real as hell. al gore told us. leo dicaprio keep tryna tell us. its 82 degrees and its halloween. sumn aint r…,406230 +RT @WIRED: What a Trump presidency means for the global fight against climate change: https://t.co/JhDmByNpNP,668064 +"RT @ClimateCentral: Using the baseline of 1881-1910, a new, more dire picture of global warming emerges https://t.co/VaF7qpTKds",314274 +Two billion people may become refugees from climate change by the end of the century https://t.co/EWcLby0Qco https://t.co/4xWWROOugC,257686 +Trump's Irish wall plans withdrawn https://t.co/9DAgyhzxEf. Trump admits climate change is real.,101227 +RT @thehill: Trump admin buries EPA website designed to be kids' guide to climate change https://t.co/x4fKywkb56 https://t.co/99dEiYRm6E,25290 +RT @fredguterl: Incoming House science committee member has said climate change is “leftist propaganda.” He should fit right in. https://t.…,375891 +Half of US doctors alarmed about health effects of climate change - Billings Gazette https://t.co/MUreRVESc0,34010 +"RT @NRDC: 'I saw global warming with my own eyes, and it’s terrifying' — Kit Harrington, Game of Thrones https://t.co/iirzGls1yP via @thin…",40365 +RT @BarackObama: Global action on climate change is happening—show your support today: https://t.co/UXy7xHlyA5 #ActOnClimate #SOTU,853758 +Hundreds of millions of British aid 'wasted' on overseas climate change projects https://t.co/5dsPkbIjhQ,788125 +RT @thisfooo: I want to enjoy this weather but this is all a product of global warming and our earth is dying https://t.co/bkD6VcHMye,213338 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,180139 +@ItaloSuave @MuslimIQ @GOP what does that have to do with with climate change? do you know what peer reviewed resea… https://t.co/EJtfG8mp1z,55654 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",834951 +"Energy Dept. rejects Trump’s request to name climate change workers, who remain worried https://t.co/7raN96sTbB",627875 +Pakistan becomes fifth country in the world to adopt legislation on climate change: … on… https://t.co/a2whiindfw,251339 +RT @Greenpeace: This is what climate change looks like in Antarctica https://t.co/Z20NdifSnh via @NatGeo https://t.co/YA85UdVkSn,440126 +RT @Liam_Wagner: 2004 report by Andrew Marshall Office of Net Assessment flagged climate change enormous risk to #security https://t.co/6bY…,272326 +"RT @BarryGardiner: You fool! +Donald Trump risks damaging all our interests by not taking climate change seriously https://t.co/VnANgLfqNp",644600 +"RT @Vilde_Aa: climate change isn't fake nd pls be aware of making changes, even if it's the small things like reusing bottles or… ",398471 +7 projects win funding for climate change solutions: Seven Harvard projects will share $1 million to help battle… https://t.co/QwkgDHmHWb,802594 +RT @climatehawk1: N. Carolina military bases under attack from #climate change | @TheObserver https://t.co/Gm6pyqqwtH #globalwarming…,573749 +@XiuhtezcatlM won the right to sue the government for climate change this week- our update on this #Colorado artist: https://t.co/ti5n5LDIyq,52505 +TRUMP DAILY: Trump’s EPA chief: “We need to continue the debate” on climate change #Trump https://t.co/PsSnduqPQZ,434584 +"RT @RobertKennedyJr: No matter what Trump does, US cities plan to move forward on battling climate change https://t.co/uCwsv99euH",438631 +Weather Channel destroys Breitbart over BS climate change story ➡️ @c_m_dangelo https://t.co/KOtcjwHc8A via @HuffPostScience,427939 +RT @TIME: Why unlikely hero China could end up leading the fight against climate change https://t.co/dN8T4k7RMZ,915148 +RT @anuscosgrove: republicans wanna say climate change isnt real then can they explain why its raining in my house?�� https://t.co/5LUZ1j98kd,860272 +RT @voxdotcom: 'Do you believe?' is the wrong question to ask public officials about climate change https://t.co/ui3RptQvtr,368060 +RT @voxdotcom: A new book ranks the top 100 solutions to climate change. The results are surprising: https://t.co/U6Zic2udiA https://t.co/U…,774835 +"In rare move, China criticizes Trump plan to exit climate change pact",354242 +"RT @RepBarbaraLee: Today, scientists announced Earth hit record temps 3 yrs in a row + +Also today, climate change denier Scott Pruitt b… ",570617 +@In4mdCndn and please you can't even explain the cause and effects of the GSA. What makes you qualified to talk to me about climate change?,70495 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",135174 +"‘We are running out of time’ on climate change, expert warns https://t.co/G8C0yc36ks via @wr_record - #climatechange",682907 +Broadcast news coverage of climate change is the lowest since 2011 https://t.co/fRyHa71Pa9 by #infobencana via… https://t.co/opZ0WBsbL9,372076 +"Dundas business owners suffer tens of thousands in flood damage, blame city but ignore climate change. https://t.co/Ftop5pCMCK",367591 +Bird species vanish from UK due to climate change and habitat loss https://t.co/Go1TkZyxZo,815570 +RT @attn: .@BillNye just destroyed climate change deniers with a great analogy. https://t.co/U3REutsRC7,629181 +"RT @SteveSGoddard: 'We' don't cause any significant global warming, and anyone who says we do deserves massive ridicule.",829720 +"Researchers identify more and more clearly the impacts of global warming on the weather +https://t.co/x8WANRgfmo",221249 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,819991 +A historic mistake. The world is moving forward together on climate change. Paris withdrawal leaves American workers & families behind.,237193 +"RT @MuslimIQ: Reports indicate these Ahmadi Muslim youth yelled ALLAHUAKBAR with every planted tree. + +Combatting climate change…",541924 +RT @Shewenzi: Do you believe climate change is real? #CleanerLagos.,27354 +"RT @theblaze: Energy Department climate change office bans ‘climate change’ language — yes, you read that right…",91111 +RT @GusTheFox: What if climate change is just made up and we create a better world for nothing?,182572 +Bill Gates and other billionaires are launching a climate change fund because we need an “energy miracle” https://t.co/jnppIKuxs7,84978 +CNNMoney: Little is known about how climate change regulation and green tech would impact exxonmobil. That could s… https://t.co/jKu7LmauGH,353319 +"OPINION | If global warming worsens, what will happen to the people and places that matter to me? - InterAksyon https://t.co/Rkpf8IjaeC",760882 +"Mixed metaphor or something like that: +Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/cBngqZMmcC",166329 +"RT @jasbc_: To those who don't believe in global warming... +STEP THE FUCK OUTSIDE WE'RE IN FEBRUARY AND IT FEELS LIKE APRIL",640783 +RT @LeeCamp: Just bc media ignored climate change for the past 8 yrs doesn't make Obama an environmentalist. He was a catastrophe even if T…,328610 +"As Earth gets hotter, scientists break new ground linking #climate change to extreme weather https://t.co/YQ28Q1yhaU",7783 +"RT @RogueNASA: If (when?) the time comes that NASA has been instructed to cease tweeting/sharing info about science and climate change, we…",610090 +Direct quote 'let's deal with climate change and science separately.' Right. Ok. #trumpbudget,880345 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,259391 +"Talking like Trump - Lektion 14: + +'It’s freezing and snowing in New York – we need global warming!”",254046 +RT @EnvDefenseFund: The new administration must act on climate change. Here’s how we can move the needle. https://t.co/lcXNUK027l,483168 +Most Americans want 'aggressive' action on climate change: Reuters/Ipsos poll .. https://t.co/mATQcD08od #climatechange,634613 +Mother nature vs. climate change - Jordan Times https://t.co/Ns2A94nKkn,794011 +"RT @YouTube: .@NatGeo teams up w/ @LeoDiCaprio to explore climate change and prevent catastrophe. + +This is #BeforeTheFlood →…",864337 +RT @nowthisnews: Bernie Sanders has a lot to say about DAPL and climate change https://t.co/2mPEHt0I5C,804186 +Trump can't stop the rest of us from fighting climate change - add your name today. #climateaction via @NRDC https://t.co/8tGlRdsqjf,188819 +2015 is the warmest year in recorded history (since 1850) caused by El Niño and systematic climate change.' #CSIR Dr Engelbrecht,133114 +RT @EnergyFdn: READ—>Why @Walmart is doubling down on its commitment to climate change by Rob Walton @climaterisk @WaltonFamilyFdn…,302105 +Urban design in the time of climate change: making a friend of floods - The Globe and Mail https://t.co/s2xMXYIHOY,879752 +"RT @France4Hillary: The https://t.co/SIcGNDQETu pages for climate change, healthcare, civil rights and LGBT no longer exist. THIS IS WH… ",536387 +RT @QuentinDempster: Australia must warn US @realDonaldTrump that we will apply sanctions if it breaches its Paris climate change obligatio…,193423 +RT @Mathiasian: You should know by now that Al Gore blames his dinner for being cold on climate change. https://t.co/gY74tlDC4y,657857 +Yep. Excuse me for being more bothered about his complete disregard for global warming than that he can't get some… https://t.co/21Z6BMhlsd,380045 +@EricIdle Maunder Minimum of 1645. Look it up dummy. This is an examples of true 'climate change'. You are willfully ignorant.,594314 +RT @TheBaxterBean: Weird. America's fossil fuel-funded Republican Party is the only climate change-denying political party on Earth.…,570237 +Mayors in Florida are grappling with the ugly effects of climate change on housing values. https://t.co/HsH1fYDaqn,670097 +We need more global warming. Tell the teachers to tell the students to ask Premier to #stopthecarbontax https://t.co/umwLCzBGrW,918209 +RT @timdunlop: This entry by Clive James for the stupidest article ever written about climate change is going to be hard to beat https://t.…,837336 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,74832 +RT @scienmag: Investment key in adapting to climate change in West Africa https://t.co/uochSoX2g5,599202 +Utilities knew about climate change back in 1968 and still battled the science. https://t.co/Db7iGWBNwh https://t.co/OeWletgtda,345439 +@P01YN0NYM0U55 *Digression alert* Do you believe in climate change and is the Earth flat? Serious answers please.,597691 +RT BT_India: India emerging as front-runner in fight against climate change: World Bank https://t.co/AWwGmngBWy https://t.co/VVJhJDrFZB,623359 +"RT @RitaPanahi: Let's not jump to conclusions. He was probably radicalised by Trump, Brexit or lack of action on global warming... +https://…",154926 +"RT @altHouseScience: We #resist because last fall House Science member @RepJimBanks said climate change is 'largely leftist propaganda.' +ht…",543345 +RT @zackfox: god is the girl on the bus the nigga gettin punched is our ability to solve global warming the one punching is toxi…,47506 +"RT @CIVILBUCK: climate change is fake, kids https://t.co/ONiTZv9epj",968726 +RT @mellierenee: in science class we read bible verses given as 'proof' that evolution/climate change/etc. doesn't exist. your tax dollars…,417810 +RT @joshgad: The mourning stage is over. Now we fight. Putting a climate change denier as head of EPA is an act of war on our kids. #StandUp,143490 +RT @guardian: ‘There’s no plan B’: climate change scientists fear consequence of Trump victory https://t.co/SPSsRcvGeW,378655 +RT @IFADnews: Astralaga: we should shall strive to implement policies/measures to minimize climate change and negative affects of int. trad…,946596 +Trump to face intense G-7 pressure on climate change https://t.co/EELgftwtOE,35342 +@AmericaFirstPol @DonaldJTrumpJr @POTUS @NASA presumably so long as they don't look for signs of climate change or that the Earth is round.,622888 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,832165 +"RT @Claire_Phipps: 'In the Caribbean we are living with the consequences of climate change,' says Antigua & Barbuda PM @gastonbrowne https:…",192832 +RT @INCIndia: Think @narendramodi takes climate change seriously? Think again. #GST #ParisClimateDeal https://t.co/9xEZcbmJSb,97549 +"The scary, unimpeachable evidence that climate change is already here https://t.co/HqLXf7iWPw via @qz",495487 +RT @dana1981: Conservatives are again denying the very existence of global warming https://t.co/tKpGi0JS3h by @dana1981 via @guardianeco,766048 +RT @ClintSmithIII: I'm watching Planet Earth feeling both in awe of the world and despondent over how all progress on climate change is abo…,939033 +RT @NFUtweets: Ahead of @UNFCCC #COP22 we're tweeting one stat every day to show how British farming helps combat climate change…,138800 +"trumps wins slight favour for india though he is tight on terror but he will be against globalization , climate change #Election2016",228761 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,574754 +RT @ZandarVTS: Trump transition team looking to identify Obama climate change experts in Energy Department ahead of 'shake-up' https://t.co…,626985 +"climate change is real, and its man made.",433348 +But global warming isn't real? https://t.co/8C2jTYKut3,192355 +"@AnthonyGiannino @2DNinja @JaredWyand I have no choice and had no vote, but will suffer under his climate change policies. Why is Obama bad?",963107 +I'm not a climate change denier. I just don't trust the word of the world's leading scientists who have been study… https://t.co/OJTAYJhkUs,999981 +"@rkerth Oh, for sure. Actively dismissing climate change for 8 years is big too",617958 +"RT @peta: Meat production is a leading cause of climate change, water waste, and deforestation. If you're concerned about our…",952959 +"RT @Stuff_Daddy: Only in America do they accept weather predictions from a rodent but deny climate change evidence from scientists. +#Groun…",959362 +RT @dangillmor: The @nytimes has found a new way to not call climate change deniers what they are. An embarrassment to honest journ…,192609 +Meanwhile I've just helped a researcher look at the impact of climate change on health. I'm sure there's a connection somehow.....,66246 +"@SakAttack123 @Al_Lietzz Until habitat loss (climate change and deforestation end), unless you want to live to see… https://t.co/oT8D4Frvto",358555 +RT @tbhjuststop: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus o…,813493 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,382756 +Jerry Brown promises to fight Trump over climate change https://t.co/joHcaSLEjv https://t.co/dZ9GVo4JjG,199914 +RT @FactTank: 49% of Trump supporters care not too much or not at all about climate change: https://t.co/HPmL385tJh https://t.co/eOaAdvWdAN,266290 +RT @Dervla_Gleeson: Leading climate change scientist: ‘We are in the driver’s seat’ - https://t.co/BmiRJMrM6o,553116 +"RT @jeffnesbit: Is climate change real? 'How can you even ask that question?' a mother says beside dying, malnourished children. https://t.…",993994 +NC military bases under attack from climate change https://t.co/Kc30MTdzFf,660130 +RT @kurteichenwald: Russia hack deniers & climate change deniers have a lot in common. Either theyre corrupt or they refuse 2 accept univer…,589516 +Swedish climate minister mocks Trump (Who thinks climate change was invented by China)with all-women photo… https://t.co/sufVpzPdJi,46337 +"RT @gracerauh: 'I think it's a mistake because we need to do something to address global warming right here in this city,' BdB says re deat…",514759 +A brilliant sci-fi thriller imagines how the massive floods of climate change could transform Earth https://t.co/FWh7L9IOjF #scifi #books,162622 +RT @exjon: Everyone believes in climate change. Only progressives think it started 100 years ago. @danpfeiffer,644185 +RT @IAMforstudents: Germaine Bryan now making his submission on climate change. He is one of the cofounders of the Integrity Action mov…,739106 +@sherlockmichael Nothing stops the Christian train wreck. Part of my silly atheist theory but it also includes him believing climate change!,971561 +"RT @StarTribune: Minnesota will proceed with its own climate change strategy, state officials say. https://t.co/jExPoLp1zO",659698 +RT @SenSanders: The Dakota Access Pipeline would be a huge blow to our fight against climate change. #NoDAPL https://t.co/47m6yUu4m5,151215 +RT @daylinleach: #Trump #EPA advice on global warming? 'Wear sunscreen' (really!) Their advice on rising sea levels? I'm guessing 'upgrade…,416432 +RT @DineshDSouza: The climate change 'consensus' basically means everyone being paid to find climate change has concluded the climate is ch…,769917 +RT @ChrisJZullo: Marco Rubio caves on oil man Rex Tillerson. Demand he oppose climate change denier Scott Pruitt 202-224-3121 #florida #mia…,788844 +@Martina GOP cruel to animals & can't get it into their heads that they are being cruel to their children by denying climate change,492700 +RT @Jackthelad1947: It's a man's world when it comes to climate change @huffpostblog https://t.co/M3U8HHqUGe #auspol @ABCcompass #thedrum #…,425952 +"Great Barrier Reef 2050 plan no longer achievable due to climate change, experts say https://t.co/hdqB8VRRWI",235477 +RT @albertocairo: Data and charts changing minds about climate change https://t.co/cdXegxSqpy via @SophieWarnes cc @MichaelEMann https://t.…,527302 +RT @Slate: Trump will be the only world leader to deny climate change: https://t.co/nn1tC60Hdg https://t.co/7Klrd2XCj4,958454 +"RT @climatehawk1: Source of Mekong, Yellow, Yangtze rivers drying up due to #climate change | @ChinaDialogue https://t.co/Yu8EOi15Pv…",602185 +"RT @StopTrump2020: #DoubleChinDon & Ivanka meet w/ climate change advocates-could they change his mind? What happened to Chinese hoax? +http…",532355 +"RT @TrumpUntamed: Putin is Anti: +NWO,climate change,Monsanto & very much Pro Christian.. of course the globalist are going to falsely accu…",421607 +RT @4biddnKnowledge: https://t.co/wmb8299gCp Does the European public understand the impacts of climate change on the ocean? https://t.co/i…,479614 +"You can be sure the words 'climate change' won't be uttered. +I wonder how that multi million dollar lift up Miami s… https://t.co/v3hdiYS3DU",438859 +"So the most powerful person on Earth will be a climate change denying, temperamental psychopath. We're completely fucked",543088 +RT @thehill: Leonardo DiCaprio leads climate march holding 'climate change is REAL' sign https://t.co/RTnzhmG89r https://t.co/fJpW6vz9rw,462257 +"RT @Bill_Nye_Tho: she thinkin bout how she gonna die because ya mans doesnt understand climate change +https://t.co/BeoUg1w94N",590371 +"RT @xtralimb: 'Asked me what my inspiration was, I said global warming.' #youtoofuckingcozy",10969 +@Baileyco303 @mic Man made climate change definitely is #FakeNews. Natural climate change happens daily and is real… https://t.co/wmMgq1yW7k,589424 +RT @nxthompson: Trump likely means there won't be a political solution to global warming. So we need a technical one. https://t.co/ZH9UYaRP…,464478 +@greg_doucette one place I think we'll have legislative disaster is climate change. I have feeling they will gut any climate regs in place,429596 +"RT @lernfern: climate change has killed millions of innocent animal lives and will continue to do so at an exponential rate, jacob https://…",798448 +RT @fmlehman: @Heeth04 @henryfountain In a desiccated tinderbox of a forest drained of moisture thanks to climate change.,23909 +"My photobook Solastalgia, a docufiction on climate change in Venice published by @overlapse, is ready for preorders! https://t.co/wXyu3oGL0l",376272 +@RealLucyLawless meme is: 'tell us again about how climate change is bull💩' https://t.co/2De9SoD8pL,923193 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",823747 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,457355 +"Salt Lake City publishes plan to combat climate change, carbon pollution https://t.co/Ze94KBmgYS",347052 +RT @RedPillTweets: DID YOU KNOW? 97% of global warming alarmists can only say '97% of scientists agree' as their argument.,66502 +"RT @hemantmehta: Don't worry, everyone. When President Trump does nothing about climate change, Florida will be the first to go.",299715 +30 terrifying before and after images of climate change @SFGate https://t.co/jpvGzBqamf,312547 +RT @dickmasterson: Research also shows a correlation between global warming and rise in number of dopey Clinton women with Twitter acc…,826591 +RT @GlblCtzn: Want to help help fight climate change? Simple — go vegan. #WorldVeganDay. https://t.co/YiUmDXYizZ,230066 +mashable : Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/OXRNLqNZ1W … https://t.co/r7Qbsm6kwI,907342 +RT @thehill: White House climate change webpage disappears after Trump's inauguration https://t.co/dTxPJNFSs8 https://t.co/0NGY8DGR8P,185909 +RT @MotherJones: Look at all the climate change deniers vying for jobs in the Trump administration https://t.co/w1uov8VE5u https://t.co/xJa…,964603 +RT @SaleemulHuq: Local funding must be UN climate fund's priority for effective fight against climate change https://t.co/xrrGF66hT8,652858 +"RT @anyclinic: I think that arguing for man made climate change should have you held on a psychiatric ward. + @StephenVieting https://t.co/B…",673484 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,659850 +"RT @AdamsFlaFan: Dem senator slags Trump's EPA pick as 'science-denying, oil-soaked, climate change-causing polluter' https://t.co/LRP0y6Of…",325061 +RT @scalpatriot: @US_Threepers @tony_sanky @HillaryClinton Wherever Hillary goes she creates climate change,91808 +US 'forces G20 to drop any mention of climate change' in joint statement https://t.co/t3zYumCrws,123801 +RT @Rogue_DoD: Russia understands the effects of climate change on the Arctic. Too bad @realDonaldTrump doesn't. https://t.co/xmkKfr6MCH,513943 +"RT @JHolmsted: Lot of celebrity/other elite types being ultra blowhard re: climate change & TX/Harvey. Genuinely interested, any of them ac…",860175 +RT @j_g_allen: “Health is the human face of climate change' - Dean Williams @HarvardChanSPH https://t.co/eS33zDtdGE,815056 +RT @thehill: National park deletes viral climate change tweets that defied Trump social media ban: https://t.co/Jh0avdpRX1 https://t.co/AsS…,486326 +RT @JRegina14: So is global warming. https://t.co/pDRhVeB53T,855450 +Has @HdxAcademy come across this which deals with the closing down of the climate change debate by scientists? https://t.co/BYAt3kWBbt,240653 +@stlpublicradio @NPR @POTUS isn't that trip going to contribute to climate change?,757775 +"RT: @nytimesworld :Islamic State and climate change seen as world’s greatest threats, poll Says https://t.co/hD3dkqsUW7 https://t.co/7BytDct",650557 +RT @OSUWaterBoy: How about protecting tax payers from funding climate change. End fossil fuel and all corporate subsidies now!…,610842 +RT @SheRa_Simpson: @Rog008 @JoRichardsKent @jamboden1 @SkyNews Commitment to lowered emissions and climate change action.,399725 +RT @AbbyMartin: Media seems only concerned w/ Exxon CEO Tillerson's *Russia ties* instead of his company's climate change denial & environm…,348551 +RT @thehill: Energy Dept. tells employees to stop using the phrase 'climate change': report https://t.co/FwfpaIJJIH https://t.co/1aiiuBse4L,83045 +"RT @GeorgeTakei: ICYMI, if not for this leak, we may never have seen this important climate change report. https://t.co/TDPCfvpDYM",70637 +RT @vinayaravind: Next @narendramodi will condemn the polar ice-caps for creating global warming https://t.co/ZRNptb988x,237678 +"Trump thinks climate change is a hoax. He is a racist. He thinks women are toys. No matter where youre from, this should affect you",222133 +We are Going Dark for earth hour ! Back later. Wonder how many lights need turning off to counter the mad idea that global warming's a myth,865701 +#PatioProductions 10 Tips for reducing your global warming emissions at home. Read Blog: https://t.co/alyosEzedG,68152 +"RT @MrRoflWaffles: [Baby it's Cold Outside 2025] + +her: i really cant stay + +him: baby uhhhh r u sure,?? global warming has suffocated the ea…",767679 +RT @oreillyfactor: White House: No more $$$ for 'climate change' https://t.co/xL1TSBfmB9,389088 +"Badlands National Park deletes tweets on climate change +https://t.co/E28yuP1MmH https://t.co/yh1aO1iCN1",575093 +"@gregbagwell @MailOnline chill - global warming luckily doesn't exist any more, so it's a zero sum game",755276 +"RT @ddale8: NYT, accurately, in news story: Trump has turned his 'denials of climate change into national policy.' https://t.co/WD1DrDXHEw",125235 +@HuffingtonPost and global warming and racial inequality and equal pay and...and...and,117833 +RT @NatGeo: Entrepreneurs and new start-ups in Kenya are helping small-scale farmers adapt to the challenge of climate change https://t.co/…,850199 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",665252 +"RT @nytimesworld: “For us, climate change is beyond ideology”: How the Dutch are learning to live with water +https://t.co/Jtc8VERyh7",354103 +RT @CTHouseDems: We must resist any policies that would damage our country’s air quality and exacerbate global warming. https://t.co/jMYSt…,85482 +RT @WayneVisser: Here are 11 cities leading the global fight against #climate change - and some will surprise you! https://t.co/Fo3YAm5QN4…,96215 +RT @business: Trump plans to drop climate change from environmental reviews. Here's what else you missed from Trump today…,420392 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,836749 +"@JuliaHB1 1) please get some manners and 2) human-induced climate change is real, regardless if you like the idea of it or not.",96112 +RT @ReclaimAnglesea: 'Vocal minority': Wife of Liberal Party powerbroker quits over lack of action on climate change #auspol https://t.co/Z…,442655 +RT @path2positive: Mayor urged to sign letter to Trump on #climate change https://t.co/n6HrJH4zIp via @coloradoan https://t.co/O9nLXJZVPI,493632 +"RT @EcoInternet3: Tiny pests eating New Jersey's pines march north as #climate changes, report says: Philadelphia Inquirer https://t.co/tdg…",250104 +RT @ABC: New York billionaire Michael Bloomberg urges world leaders not to follow Pres. Trump's lead on climate change…,431638 +RT @nanjmay6478: Gore left his failed bid in 2000 with very little money. He has made mucho $ since on his global warming hoax. https://t.c…,260943 +RT @knoctua: ถ้าข้อสองนึกไม่ออก ให้นึกถึงลีโอนาร์โดดิคาร์ปริโอกับ climate change เอ็มม่าวัตสันกับ gender หรือถ้าดาราไทยก็ปูไปรยากับ immigra…,28195 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",228403 +"RT @MarkusAWagner: Commenting on results of G-20 summit concerning trade, investment & climate change on @FRANCE24. @warwickuni…",434759 +"RT @sbpdl: If you want to see real climate change, look at 90% white Detroit in 1940 versus 7% white Detroit in 2017.... Demography is dest…",609858 +"RT @MoataTamaira: We should actually all be doing more individually to fight climate change though, right? +Esp now it'll have the added bon…",726626 +This Report discusses how taking the perspective of potential new impacts from climate change worries in their member states.,836744 +RT @YourTumblrFeed: stop global warming i don’t look good in shorts,387382 +RT @spectatorindex: BREAKING: G7 statement says the US is 'not in a position' to join a consensus on climate change,566453 +RT @kate_sheppard: It's possible to think that NYT has excellent climate change reporting AND that their hiring of Bret Stephens is an emba…,43761 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,815572 +RT @ClimateCentral: This is what it's like to be a young climate scientist in the age of climate change https://t.co/QX7wfvDA6w https://t.c…,127076 +RT @ian_mckelvey: The science of climate change has exposed 'mass murderers' but the 59 MILLION babies murdered since 1973 is simply…,350807 +"RT @pablorodas: EnvDefenseFund: Thanks to global warming, Antarctica is beginning to turn green. https://t.co/fk7p7mBOeP",37942 +4 Irrefutable truths about climate change https://t.co/q1U3u0kgiV,367769 +Jill Pelto's watercolors illustrate the strange beauty of climate change data | MNN - Mother Nature Network… https://t.co/8M7xk0V0Aw,374290 +Pacific Islands accuse USA of 'abandoning' them to climate change - AppsforPCdaily https://t.co/ISXNmzUMv8,181464 +RT @TomSteyer: We won't allow Trump to erase the truth. We saved the EPA climate change pages here: https://t.co/VO60Pa2jc1 #climatemarch #…,806379 +RT @BizGreeny: How to combat climate change? Measure emissions correctly https://t.co/m9QZk6UVGB #GreenBusiness,61948 +"Act now before entire species are lost to global warming, say scientists: https://t.co/nFQjT7E3sz via @guardian #ActOnClimate",531906 +RT @Farooqkhan97: Participant's messages on climate change #climatecounts @PUANConference #cop22 #ActOnClimate https://t.co/gR2ZJTbA88,658791 +@realDonaldTrump if climate change & global warming dont exist then you were NOT elected president even Tillerman acknowledges it is problem,322278 +"RT @EcoInternet3: Hey anti-science @realDonaldTrump Arctic is 36 degrees hotter than normal and above freezing, still think climate change…",901920 +This is why I was trying to explain climate change to my 8yo this morning. He also asked if Grandma would be OK. (S… https://t.co/tuaF5c1k47,963328 +RT @JulieCameron214: @SGTROCKUSMC82 @Jmacliberty @GeorgeTakei EPA is climate change denier and Betsy devos...whoa,405596 +RT @medialens: The Independent reported this week that May's government ''tried to bury' its own alarming report on climate change…,11922 +17 House Republicans just signed a resolution committing to fight climate change #Congress https://t.co/0HfqZodX0g https://t.co/l235Yy7xph,74085 +"RT @MatthewGreen02: So May wants UK to help 'lead world' in protectionism, islamophobia, climate change denial and silencing opposition +ht…",616402 +RT @CNN: Badlands National Park deletes tweets on climate change https://t.co/DK1Q5UXxfg https://t.co/PIxD1Ix21K,280716 +"This. Is. Devastating. Trump's budget eliminates $ for ALL climate change research & programs, & strips ALL $ for U… https://t.co/aozlRaZEGs",798339 +“Social form of climate change” parallels are shocking! Internet regulation: is it time to rein in the tech giants? https://t.co/bknZR9b1Sd,133412 +"RT @TheDailyEdge: Well done if you voted Green. You helped elect a President who doesn't believe in climate change, loves coal and wants to…",739578 +RT @MAKERSwomen: Watch LIVE: Amy Poehler’s @smrtgrls talk science and climate change at 3:30pm EST for @BUILDseriesNYC:…,480835 +RT @Oxfam: #ParisAgreement is now in force but action is still needed to help the most vulnerable adapt to climate change. RT…,529150 +RT @VFW_Vet: Trump really doesn't want to face these 21 kids on climate change - Mashable https://t.co/u2ygkq5lpw,174969 +RT @thoneycombs: i don't really fuck with climate change analysis centered around how 'humans are a plague on the earth' or whatever,278166 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,773548 +Pakistan not contributor to global warming but suffered enormously: Justice Syed Mansoor Ali https://t.co/75rgohtHYZ,737855 +RT @thehill: Ex-WH photographer posts photo of Obama in Alaska: 'Where climate change is not a hoax' https://t.co/7m3kr4Zasn https://t.co/X…,410542 +RT @emekapk: #Forests sequestration can help address global climate change https://t.co/iYixin9jkR,211669 +Michael Bloomberg and Mark Carney: How to make a profit from defeating climate change https://t.co/JDxKuGlBer https://t.co/OjiUE1KsNd,423622 +"We had two whole months for this snow to happen, and when it's actually time for spring it wants to snow. *cough* global warming.",708256 +"@NASA with the global warming how much has increased the earth's 'volume'?.if the ozone layer contains a fluid warm,u know the vol increases",448983 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",186031 +"@smbjettyfiremen @lizard51 @RyanMaue You just don't get it man, global warming is causing all the cooling. 🙄",169019 +TanSat: China launches climate change monitoring satellite - BEIJING (APP) – China on Thursday launched a satel... https://t.co/LeU6QoJ6qN,101779 +RT @AstroKatie: Now would be a great time for the rest of the world to find ways to pressure the US on climate change and human rights.,650180 +RT @Da_Rug: the fact that it is going to be 80 degrees today and tomorrow makes me so sad and then reminds me of global warming which makes…,926550 +"RT @woodensheets: Funny, as much bad shit about Hillary there was, she actually was very in favor of net neutrality. Also climate change.",138491 +RT @ron_nilson: Reindeer shrink as climate change in Arctic puts their food on ice https://t.co/EPiQLQN9dL,391450 +"RT @mrbigg450: @tedlieu @DearAuntCrabby 'No such thing as climate change' , coming from someone who is burnt orange.",934166 +"“Oklahoma hits 100 ° in the dead of winter, because climate change is real” by @NexusMediaNews https://t.co/qe0bUUX3Y7",697839 +RT @pablorodas: ClimateCentral: February’s record warmth was brought to you by climate change https://t.co/EHI8h8CssD https://t.co/Q1n9UzOz…,720023 +@AltNatParkSer gives a great new HONEST voice to support climate change research! Go Resisters!,971780 +"RT @ClimateReality: Pruitt denies CO2 is a primary contributor to climate change. + +In other news, cigarettes are healthy and the moon i…",748213 +RT @sarahkendzior: I attended a conference with Pres Niinistro a few months ago. Very concerned about climate change. Should ask him v…,926054 +@meowlickss @BrendaPatt1 @FoxNews @michellemalkin Lol we were talking about global warming you twit.,308665 +pehlay itni garmi hai upar se tire jala ke aur ziyada global warming ko contribute kartey hain,210959 +"RT @jeremycorbyn: . @theresa_may, for the future of the planet, you must remind @realDonaldTrump that climate change is real & not a hoax i…",757381 +RT @BuzzFeedNews: Thousands of science teachers are getting packages in the mail with misinformation about climate change…,519967 +"@tsetiady With global warming and overpopulation, nuclear war is the only hope to protect the Earth from human greed, eh? Very reassuring",517695 +@ClimateNexus @LeoDiCaprio Trump can’t stop corporate America from fighting climate change: https://t.co/64KOxpocNF via @slate,828619 +"@KevinJacksonTBS Actually Nancy, the dishonesty necessary to sell catastrophic, doomsday climate change to any&all… https://t.co/hBLxlrXbw4",786684 +Trump's energy staff can't use the words 'climate change': https://t.co/zkfoHQUqgn,654141 +China very kindly explains to Trump that it didn’t invent climate change as a hoax. https://t.co/H33ga7bosm https://t.co/BCVbGqZbWB,26799 +RT @sweetcheeks5358: The Department of Energy has banned the use of terms 'climate change' and 'emissions reduction' https://t.co/53wgtgjPo2,291929 +RT @ActOnClimateVic: For our mates up in Donald + Charleton: Have your say and encourge Buloke Shire to ramp up action on climate change…,482170 +RT @CBDNews: On Cancún Declaration adopted at #COP13 'Protecting forests is the best way to fight climate change'…,853745 +It is truly a new world when China warns Trump against abandoning climate change deal https://t.co/aQtRZcVkT7 via @FT,300939 +"RT @RobertKennedyJr: A powerful new tool reveals how climate change could transform your hometown +https://t.co/fho5y4uWJn",510814 +"RT @EllenGoddard1: California's conservative farmers tackle climate change, in their own way https://t.co/KTRzYCiOp6",167713 +RT @ivanka: Is climate change real? https://t.co/Q4gcA4azEt,265139 +RT @staycray: y'all voted for a man who thinks global warming was created by CHINA and that's not even the worse thing he stands by,155267 +RT @nytimes: A cheap fix for climate change? Pay people not to chop down trees. https://t.co/fkhYNUYhxQ,228872 +"RT @SominiSengupta: This seed vault was to last forever and save our species. It flooded. Because, well, climate change: https://t.co/8G6rL…",384335 +@isabaedos but did the climate change before humans? Yes.,813193 +CO₂ released from warming soils could make climate change even worse than thought. https://t.co/gkRi3ptlEn,38282 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,183876 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,720812 +RT @Redpainter1: 2 hurricanes in ten days and the mother fucker in the White House still says climate change is a hoax #Irma #Harvey,109534 +RT @KamalaHarris: I intend to fight. I intend to fight against those naysayers who say there is no such thing as climate change.,259492 +"@Rangersfan66 ������Trump/Russia,Orlando massacre had nothing to with Isis,climate change causes terrorism - all prove… https://t.co/FBaoD0WCpF",246290 +#Finnish Gold&Green Foods developed a #vegan meat alternative that could help mitigate climate change. https://t.co/FSuRC40eR7,763749 +@ToryShepherd Birds of a loopy feather deny climate change together. :),642286 +Bloomberg optimistic at start of climate change summit https://t.co/AqQKPRlB02,867952 +"RT @RadioNational: Every day, these scientists face evidence of climate change. They explain how they cope https://t.co/F5Qh4HAeK3 https://…",8216 +@cathmckenna @COP22 @IISD_news more aviation fuel burned impacting the climate change hoax,320110 +RT @billmckibben: Shell took a good long look at climate change--and then went back to drilling. https://t.co/hP7ssox6nG,21464 +"RT @black2dpink824: [FANACC] + +F: Unnie, you're the cause of global warming + +JS: Why? + +F: Because you're so hot + +JS: �� + + https://t.co/RKYiI…",310567 +RT @dana1981: Trump @EPA cuts life-saving clean cookstove program because it mentions climate change https://t.co/aG3LVfDgu6 via @thinkprog…,615005 +"RT @CNNDenverPJ: Al Gore talking climate change and stumping for Hillary in Boulder, CO today https://t.co/veNZJ30JNu",53859 +RT @politico: Pruitt backtracks on climate change https://t.co/GeGxV6ceim https://t.co/IxkjIZrtDq,297063 +Why don't we talk about climate change more? - Grist https://t.co/GxY4X5iPt4,264190 +@EnergyPressSec @SecretaryPerry Too bad climate change DOESN'T CARE.,443998 +Who says climate change doesn't have poetic justice? https://t.co/aF4IERXAnR,757742 +"RT @BryanJFischer: Eco-tyrants: we've passed 'point of no return' on CO2, climate change irreversible. OK, then, LEAVE US ALONE. https://t.…",754862 +Oh god..I just remembered that Trump and the Republican Party refuse to acknowledge climate change is an issue. GREAT! 🙃 #triggered,725854 +"People who deny climate change, C02 issues, poison water…they do it for money. All of it. All of it to make more money right now.",890956 +Donald Trump is slashing programs linking climate change to U.S. national security https://t.co/i3mOc1eVXb by @AlleenBrown,321055 +RT @MattBors: Florida. Half the state's going to disappear in ten years due to global warming. They're going for the guy who says it's a Ch…,634254 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/Q2F7fFl1qS https://t.co/32g…,235754 +RT @EnvDefenseFund: Stuck trying to explain how humans are causing climate change? Here are 9 pieces of evidence that make it easy. https:/…,558955 +"RT @TwitchyTeam: PITIFUL! These ‘instructions’ for climate change protest against Trump’s EPA pick read like stereo instructions + +https://…",65287 +RT @bebraced: Indigenous knowledge crucial to tackling #climate change https://t.co/ncJ2WBDPBM #CBA11 @UNESCO @ODIclimate @IIED…,484377 +I got hot af real quick and now it's cold again. Damn global warming,10455 +"Hey CA48: Just another article showing that DR's 'climate change denial' is WRONG! Pruitt on Climate Change, Again: https://t.co/FuY8v6llAR",286352 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,113454 +The problem with Donald Trump's stance on global warming - https://t.co/YICxNb2Fc4,461270 +"RT @Ashley_L_Grapes: #trump, you promised to represent the people, and we believe in climate change. Please rethink your pick for EPA! Our…",488570 +UK government signs Paris climate change agreement - Sky News https://t.co/G9GLQ0ONx5 #WYKO_NEWS,887186 +Do you think all republicans are wearing hats and scarves today since global warming doesn't exist?,758368 +@HuffPostPol Mike Pence lies as much as Trump and knows full well that climate change is a nonpartisan issue!,814188 +RT @NatureClimate: Air pollution deaths expected to rise because of climate change https://t.co/WyB2KaODDM --- NatureClimate in the news,8804 +Naw just the end of civilization as we know it due to climate change. Great movie score if you like crying and I… https://t.co/PF94RLnwUJ,919559 +RT @mattblaze: Most Americans think global warming is real but will only harm others. Interesting study of how we view risk. https://t.co/Y…,902551 +"RT @billmckibben: Hey, a hit of good news: judge allows youth lawsuit against fed govt on climate change to proceed! https://t.co/P4Y11CEbaQ",836655 +"RT @DineshDSouza: Who are you gonna believe, the global warming lobby or your own lying eyes? https://t.co/XceQUoV9im",259266 +~minor~ details: our new president thinks climate change is a hoax and the KKK openly supported him https://t.co/ITU77sQeGi,843290 +Not only climate change: use/abuse fosil fuel kills 1.7 million children under 5 each year https://t.co/KaU5cm33QI,89878 +"#UpgradeTheGrid video shows how to turn down dirty power plants, clean our air, fight global warming & save us money https://t.co/jCk8gpZ8up",177737 +RT @TheSpinoffTV: 'Bill English says Kiwis don’t care about climate change. That’s not true for the kids I teach on the West Coast' https:/…,709915 +RT @jawshhua_: It's November in Vegas and I'm still wearing shorts and a t-shirt... but global warming doesn't exist right? 🙃,538854 +"@realDonaldTrump confirms the withdrawal from Paris Agreement. He says it's not the climate change, it's just weather. ��",916160 +"RT @FastCompany: Yes, the Vatican has a tech accelerator–and it’s focused on launching startups that tackle climate change. https://t.co/0P…",226541 +"Trump has claimed that climate change is a hoax, so what will that mean for environmental policy on Delmarva? https://t.co/bZRszN5OLx",138347 +Hey @realDonaldTrump good thing all that climate change is bollocks right? All hell breaks loose as the tundra thaws https://t.co/CCDDpyD2ue,189907 +RT @RepJaredPolis: The National Climate Assessment is vital to combating climate change. Disbanding it will only set us back. https://t.co/…,835957 +RT @UCSUSA: MYTH: you have to be a certain type of person to care about #climate change. https://t.co/NgdyNl2G7V https://t.co/h5VXTBHArV vi…,2453 +"RT @jaketapper: On Friday the EPA removed most climate change information from its website, to “reflect the approach of new leadership,' pe…",288234 +"RT @nature_org: If we are going to slow climate change, we must emit less carbon. Protecting nature is critical to that. https://t.co/boTRe…",892628 +#U.S. environmental agency chief #humans #contribute global warming https://t.co/snwYoz2ehP,347594 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",235588 +"RT @Cernovich: Same 'experts' who said Hillary would win claim 'climate change' is real. LOL! Go away, morons, you know nothing and you los…",468709 +"If we want to stop climate change, we're going to have to pay for it https://t.co/T8MsVTF192 via @HuffPostGreen",475853 +"RT @SenatorSurfer: This guy is on my witness last for Senate inquiry into climate change and oceans. Tonight he was close to tears, vi…",508767 +"RT @RiceRPLP: Religion plays a bigger role in evolution skepticism than climate change denial, (our) study finds… ",141974 +Google:Mountain glaciers are showing some of the strongest responses to climate change - UW Today https://t.co/mlVZuY6PKw,505807 +RT @TeamTrump: .@realDonaldTrump will cut taxes & cancel billions in global warming payments to the UN so we can use that money to…,966179 +Trump abolishes climate change in first moments of regime https://t.co/z0VYLcuWKR,800564 +Before the Flood - special screening of this climate change documentary with special guests. At The Brewery Mon 13t… https://t.co/a678gGzGiu,897987 +RT @voxdotcom: We have to bury gigatons of carbon to slow climate change. We’re not even close to ready. https://t.co/eFBz9xvbnN,566665 +"RT @MarsNoelle: Don't talk to me about global climate change if you eat meat, it's like drilling a hole in your boat and complaining about…",31082 +"be formal or informal, find solution for climate change + +@PUANConference @PakUSAlumni #ClimateCounts #COP22",893407 +"Republicans want to fight climate change, but fossil-fuel bullies won't let them - Washington Post https://t.co/VjnrLXELTm",497793 +RT @JRX_SID: Salut Leo DiCaprio sdh berani bikin dokumenter tajam ttg global warming: kritis mengupas nama besar di balik polemi…,271869 +"On global warming and the economy, we’re trapped in an idiotic netherworld https://t.co/GXxDUypyFl https://t.co/If9zgSI0yn",952902 +#EarthHour! Turn off lights at 8:30. But remember animal agriculture is the main cause of climate change! Go Vegan… https://t.co/fyYB0uUJGq,249204 +RT @ReutersUS: NY prosecutor says Exxon's climate change math 'may be a sham' https://t.co/Hhzc7ed6oj https://t.co/OVmoo33UuK,425573 +Donald Trump's likely scientific adviser calls climate change scientists a 'glassy-eyed cult' https://t.co/0t9P2NzGqb,857643 +@MSNBC I hate with a dose of reality. Learn 2 work hard & stop whining about safe spaces and ur global warming hoax. Grow up and make ur way,970991 +@Tyguylf4 mine knows global warming is a figment of the liberal media,820814 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,771165 +How hot are you on global warming? Try our climate change quiz: What is the impact of… https://t.co/kJOR3ho8o0,522475 +Former US Energy Secretary Steven Chu excoriates the Trump White House's climate change policies:… https://t.co/erdKJIU9LE,134378 +"RT @Reuters: In a rare move, China has criticized Trump's plan to exit the Paris Agreement on climate change:…",208843 +"RT @twizler557: Trump is jeopardizing Pentagon’s efforts to fight climate change, retired military leaders fear - https://t.co/r4rdvoNde1",781292 +Cartoon: If the media covered climate change the way it covers Hillary's email https://t.co/SzPDHxISd3,488788 +RT @tveitdal: 50 countries who are disproportionately affected by global warming vow to use 100% renewable energy by 2050…,56755 +"Depression, anxiety, PTSD: The mental impact of climate change It's a dream many city-dwellers long for: moving to… https://t.co/vshmH8hxB2",677231 +And the next president thinks climate change is a hoax created by the Chinese... https://t.co/3xyMhii5u4,430403 +"RT @tarotgod: when will ppl understand that global warming, deforestation, & consumption of animal products is a bigger threat to the earth…",492666 +RT @Aprilll_Mariee: Your Wcw doesn't believe in climate change :(,690704 +How will climate change affect the cost of water? A natural resource economist explains. https://t.co/fjTnNwZVL9,86820 +RT @planetizen: For the good of the planet: a series of four courses on local actions for climate change. https://t.co/2k9vZipnN9 https://t…,729700 +"RT @Moltz: Remember, everything Trump does, from deportations to promoting global warming to congratulating dictators is on the whole Repub…",910595 +#NEWS @USATODAY Punchlines: Want to fix climate change? Just ban the phrase! The week in… https://t.co/iQ8bHZlVVC,627411 +RT AP_Politics: White House official: Trump feels 'much more knowledgeable' about climate change after discussions… https://t.co/N6SFqTCEIE,544675 +Reindeer shrink as climate change in Arctic puts their food on ice | World news https://t.co/e0E9ZZId6B via @ZosteraR,236936 +"RT @OhNoSheTwitnt: [Trump reads that it's the first day of Winter] +See? I called it! I told you that global warming was a myth!",707145 +"RT @ryebarcott: Europeans 'think impacts of climate change such as severe floods and storms are already affecting them, according t… ",723320 +RT @yceek: Breaking discovery: the entire 'climate change' scare is based on faulty mathematics. .. We all KNEW!…,534852 +RT @energyenviro: 'Heat island' effect could double climate change costs for world's cities https://t.co/2t9Gv1oeoj @physorg_com #cities #H…,585851 +"RT @eemanabbasi: Let Harvey (& Sandy, Katrina etc) be a lesson to our leaders tht climate change is real-and deadly. Innocent ppl will keep…",789872 +"@NASAClimate On the other hand, many THOUSANDS of scientists agree global warming is real.",489844 +RT @thehill: Trump climate change order undermines Paris climate deal: https://t.co/EUiCV4L1i3 https://t.co/SQWAIy36bD,626956 +How will a warming climate change our most beloved national parks? https://t.co/wMSl2k0CD0 by #NatGeo via @c0nvey,520654 +@CounterMoonbat In 1970 it was global cooling in the 1990 it was global warming. Now its climate change. Now they'v… https://t.co/UluO1CebfD,466279 +Via @RawStory: Farmers can profit economically and politically by addressing climate change https://t.co/lI1pGI51Rt… https://t.co/ttxZy8VgfP,615839 +RT @GarbageApe: Here's an illustration of the Guardian article 'Neoliberalism has conned us into fighting climate change as individ…,340614 +"If governments were serious about climate change, they would stop funding the problem. #StopFundingFossils… https://t.co/AnHYoy3JBc",578623 +"RT @sleavenworth: Trump picks leading climate change denier to guide NOAA, alarming agency scientists, by me https://t.co/bNP3xxO9ur",986836 +RT @Bill_Nye_Tho: all i wanna do is *gunshot* *gunshot* *gunshot* *gunshot* *click* *cash register noise* and talk climate change,699946 +RT @HarvardCGBC: New #research: Could #governments and oil companies get sued for inaction on #climate change? via @TorontoStar…,491981 +"RT @TheAtlantic: Yes, global warming is real. Here's the kind of question that climate scientists are actually trying to answer.… ",302985 +RT @Doughravme: Left pressures Clinton for position on pipeline https://t.co/XBr4ogxQu3 Back #JILL & work at slowing climate change for our…,821321 +RT @zxkia: if global warming doesn't exist then why is club penguin shutting down,872096 +From Can making houses smarter help combat climate change with a denier.,83112 +Indigenous Canadians face a crisis as climate change eats away island home: Rising sea levels mean that Lennox… https://t.co/IKCBKFlmiO,916902 +"Scott Pruitt's latest climate change denial sparks backlash from scientists, environmentalists https://t.co/IgRFMU6tQh",74318 +"RT @FemaleKnows: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https://t.…",41781 +"RT @Slate: At Exxon, Tillerson allegedly used a hidden alias email to discuss climate change: https://t.co/5DJd1yZL20 https://t.co/uE2qVx59…",108426 +An idiot who thinks climate change is a hoax created by China. Who wants to get rid of the Environment Protection Agency. #Election2016,540514 +RT @SenatorShaheen: Shameful that @EPAScottPruitt refuses to accept science & the role CO2 plays in climate change-isn't up for debate http…,350015 +RT @caitylotz: EPA head doesn’t believe we are causing global warming. Friday @EPA took down most info on climate change science f…,504130 +RT @NickMcKim: Oh dear. I said in the Senate today that Trump thinks climate change is a Chinese hoax. Nationals Senator Barry O'Sullivan s…,569630 +Trump makes major change to US climate change narrative #KeepItInTheGround #ClimateAction https://t.co/nnSdV3DFkr,48076 +Clean cars' will save us from climate change deniers - The world is turning to clean energy and so is the car ind… https://t.co/Nl41uFsaOc,582428 +RT @bpolitics: Donald Trump's position on the origins of climate change remains a mystery https://t.co/iz0JU2v3AV https://t.co/UT5sfaFb0h,678581 +The EPA removed most climate change information from its website Friday https://t.co/iTyuDwbal2 by #CNN via @c0nvey https://t.co/YdZIstMX7H,933542 +"RT @MaryMcAuliffe4: short intro to DUP-not big into women's rights,LGBTI rights,climate change or opening businesses on Sundays! https://t.…",204455 +RT @CNN: Jill Stein: Al Gore needs to 'step up' in climate change fight https://t.co/lHr8LM7ULI https://t.co/RfKZquMLBk,483251 +RT @DJ_Pilla: Everyone pls watch @LeoDiCaprio documentary #BeforetheFlood It is an important/interesting look at climate change. https://t.…,101551 +@PeterGleick Crazy. And even crazier how some people don't believe in climate change..,596456 +"RT @pharris830: Trump natl security advisor thinks Obama is a secret muslim, EPA head a climate change denier, and considering Ted Cruz as…",98551 +RT @WIRED: .@AlGore answers all your burning climate change questions. https://t.co/MYHtlsR2jF,136985 +"RT @ABC: US to continue attending UN climate change meetings, even as Pres. Trump considers pulling US out of Paris agreemen…",378502 +"RT @c40cities: How to fix climate change: put cities, not countries, in charge - +Benjamin Barber https://t.co/3gFPlt3cjT https://t.co/ydhM1…",661017 +@itisprashanth nee Enna ramanan sir eh ?? Dae naayae unaku Enna theriyum climate change pathi ??? Daily firstu Nee kuli,631081 +Government climate change report contradicts Trump's claims: NYT https://t.co/uCgymaRsV0,397495 +Plus investigation into Tillerson's @exxonmobil on climate change. @AGSchneiderman job is to do these inveatigation… https://t.co/Ex52U3Q1O7,429301 +RT @EdwardARowe1: Investors worth $2.8 trillion are uniting against Donald Trump's climate change denial https://t.co/3Io8bOap1K,653053 +"RT @BloktWriter: 'You will die of old age, our children will die of climate change' #NativeNationsRise #NoDAPL by #RuthHHopkins https://t.c…",873776 +"Mereka, borjuis, dengan konsumsi tumpah ruah, mobil pribadi dengan AC dingin, kamar dingin, mungkin tdk trll mrskn efek climate change.",85162 +"RT @NPR: Trump thinks climate change is a hoax & and it probably won't be hard for him to ditch the Paris climate deal. + https://t.co/HZyfy…",721865 +RT @newscientist: Trump could land fatal blow to the fight against climate change https://t.co/zPo0wntgIb https://t.co/FBIaQwPsur,142098 +"Retweeted Climate Reality (@ClimateReality): + +Idaho has dropped climate change from its K-12 science curriculum.... https://t.co/BoUYPdppcN",957871 +RT @amjoyshow: CDC cancels major climate change conference https://t.co/autQvEom5D via @thehill,885270 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,63750 +"@FT US has possibly been the highest contributor to climate change funds,G19+1 will feel the strong pinch in time.",258944 +RT @climatehawk1: Australian farmers planting in smart greenhouses to combat #climate change | @ABCNews https://t.co/ggaqEkX1Yz…,86728 +"Letter to the editor: Pipeline, climate change threaten Maine directly - https://t.co/mEl3pL812g...",70534 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,790364 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",643306 +RT @peterwhill1: That global warming hoax still gets traction though eh???? https://t.co/yG0sWlN2bm,298528 +"RT @washingtonpost: 'It was really a surprise': Even minor global warming could worsen super El Ninos, scientists find https://t.co/JFQ0aTB…",240070 +everybody who brews ale and watches the yeast all die should be able to understand the basic principles of genocidal global warming effects,445578 +RT @CheHanson: We're about to have a president who said global warming is a hoax created by the Chinese.......,678471 +World leaders reaffirm commitment to fighting climate change - Fox News https://t.co/ATN9mityft,112618 +@harrowsand @hockeyschtick1 @tan123 yes this gender crap and climate change lie is alive and well down here in Australia,838761 +"@ThatTimWalker @adamboultonSKY because climate change denial fundamental 2 all of them, those r the regulations Rees-Mogg & co want rid of",604353 +The ECB’s ‘quantitative easing’ funds multinationals and climate change | Corporate Europe Observatory https://t.co/14mRp24hQ3,355764 +WEN have joined the call on health leaders to recognise and act on the interconnectedness of climate change and hea… https://t.co/dd9e7qSTh4,829347 +"RT @PenguinUKBooks: This month, we're launching #LadybirdExperts: a new series for adults, covering climate change to quantum physics.… ",157025 +"@Foxgoose @CllrMikePowell + +Well I certainly don't teach them that man made climate change is a conspiracy theory",528161 +RT @JuddLegum: 3. The problem is that doing something about climate change requires principles and sustained action.,439782 +@bitchxtheme @BABEXFETT we have strong feelings about global warming and 100 demons https://t.co/MyIxd91E9F,412030 +.@joni_yp from @UNICEF_uk children are most vulnerable to climate change,764877 +RT @niallweave: all because of electoral votes the next president is a racist misogynist climate change denying ignorant piece of s…,53914 +@trueelite7 @YGalanter @Unfather @mark_desser @seanhannity The most scary: - There is no climate change!,197159 +RT @NewSecurityBeat: “Experts predict climate change will spur some to move from their homes. How will national security be affected?”…,87861 +synergize - the #COP process tackling climate change goes hand in hamd with implementation of #NewUrbanAgenda https://t.co/Azl4RLrENr,626983 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,852887 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,130659 +An open letter from academics to the Trump administration on climate change. Sign away folks: https://t.co/DTdan9GQei #ParisAgreement,532269 +RT @gazregan: EPA head falsely claims carbon emissions aren’t the cause of global warming https://t.co/QacsYI1glT,721124 +"US Alumni in Pakistan are discussing climate change this weekend - +Dr. Ramay #ActOnClimate https://t.co/SWKtydZuRi",207930 +RT @EverySavage: Pruitt’s office deluged with angry callers after he questions science of global warming - @washingtonpost #Resist https:/…,555759 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,971279 +RT @MousseauJim: Ya now you are muzzling scientists that have proven the climate change is a scam. https://t.co/8AiGh1nTGO,303159 +RT @PopSci: The mystery of Greenland’s icy history could help us survive climate change https://t.co/WpPU06H8T4 https://t.co/wPK2gCMxLo,507693 +"RT @LeeCamp: The fossil fuel industry is spending millions to fill K-12 schools with pro-oil propaganda, to breed more climate change denie…",465871 +"China warns Trump on climate change + +BUT Obama gave China green light for 100's of additional coal fired plants! https://t.co/jnyW5BH4oT",934290 +@TheRealRolfster @MattMcGrathBBC there is plenty of evidence of climate change. However there is few evidence for denial. Come on +,182683 +RT @Newsweek: Why did Donald Trump ignore Ivanka on climate change? Al Gore has the answer https://t.co/Qj2NuRvgR7 https://t.co/mg5DQQ1fIt,825197 +Lmao wait.... global warming??! https://t.co/H8SAHdBpzM,436717 +RT @Fusion: Cartoon: If the media covered climate change the way it covers Hillary's email https://t.co/SmFbaJ97YT https://t.co/U41LmmKl9R,866022 +@DattiloJenna climate change,113016 +RT @Oxiunity: if global warming isn't real why did club penguin shut down,244750 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,502527 +RT @stewartetcie: Ummm... This op ed is from the husband of Canada's minister responsible for climate change. https://t.co/iachAlgpT7,162559 +RT @sad_tiddies420: Trump's top choice for the Environmental Protection Agency is a top climate change denier https://t.co/0FVQJdmIPG,463464 +Why did God bring this hurricane ��' last I checked we are the cause of climate change so.. �� pick ur responsibility up and shut yo mouth,763405 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,18702 +"In race to curb climate change, cities outpace governments: A surfer carries his board as… https://t.co/RWwQDNHN49",238567 +"Trump's new Communications Chief is an anti-science, young Earth, climate change denier. Scum rises to the top. https://t.co/Kw5bbFNooQ",704788 +Hot weather is getting deadlier due to climate change: https://t.co/bIy6F0fNhB via @researchgate,651389 +New York AG: Sec. of State Tillerson used pseudonym 'Wayne Tracker' to discuss climate change while CEO of Exxon… … https://t.co/P3LuNOHmoi,744950 +"#science China to Trump: Actually, no, we didn't invent climate change https://t.co/AvPNdxzjJY https://t.co/OeyeVfJP94 #News #Technology …",129143 +Educate yourself! >> 'How cities can stand up to climate change' via @Curbed https://t.co/w8XT9xqT8A https://t.co/jR4XtmxvNZ,384556 +"RT @robn1980: #Russia a 'growing threat' say MI5. Not up for discussion: tangible threats such as climate change, austerity, fore…",76106 +Experts say global warming may make fish toxic https://t.co/0YIJNfeFcP,256890 +Just watched Leonardo DiCaprio's excellent and eye-opening documentary on climate change entitled 'Before The... https://t.co/n6UQmRfZHX,520293 +Adani Carmichael mine opponents join Indigenous climate change project: The Wangan and Jagalingou are divided over… https://t.co/AP2BifvQoQ,889555 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,746129 +David #Attenborough on climate change: 'The world will be transformed' – video https://t.co/pbn3b51Hp7 #climatechange,427951 +@benshapiro to really make it global warming you need to mention how it's the worse rain in years,731007 +Could abrupt climate change lead to human extinction within 10 years? https://t.co/blubAHZ9qX @whitleystrieber @earthfiles @coasttocoastam,429288 +RT @CatherineForNV: I believe in science. I believe in climate change. Let's protect our precious resources including the air we breathe &…,20860 +"RT @OwenVsTheWorld: The earth is dying and our well-educated, elected officials deny climate change to protect the corruption but.. sho…",993045 +Increasing tornado outbreaks -- is climate change responsible? | EurekAlert! Science News https://t.co/4QQ571wMt7,176478 +"@nbc6 .Earth is not going anywhere. Alaska's Bogoslof Volcano erupted Sunday, sending ash 35,000 feet into the air. that is climate change.",895762 +"@mashable global warming for sure,maybe someone should alert Al Gore and others....",569333 +RT @LoganWi91912989: @SpeakerRyan Great! Glad you will be working on climate change.,212305 +Pollution cause climate change because pollution were designed by sin. It changes what God original plan for this earth. #climatechange,725658 +RT @HeadphoneSpace: @Roger_McYumYum @SenSanders @acobasi the possibility of a rational approach to combatting global warming.,728982 +12 #globalgoals are directly linked to climate change. The #ParisAgreement is... https://t.co/ExW7IJ5Pvm by #ClimateReality via @c0nvey,933352 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",484356 +RT @mariaah_s: open this tweet for a secret message ㅤㅤㅤㅤㅤㅤglobal climate change is real. ㅤㅤㅤㅤㅤㅤㅤㅤㅤ,255786 +"Offshore wind, clever concrete and fake meat: the top climate change innovations! �� https://t.co/NgBUvjBolJ",829635 +"An activist hedge fund put a climate change denier on the board of NRG, which is trying to boost renewables https://t.co/jIhRD5HViu",334593 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,188684 +"Rick Perry wants to hold a dangerous, totally BS debate on human-caused global warming https://t.co/cnBAAtNtBM",815072 +"please watch chasing coral on netflix, and maybe you'll believe in global warming !!!",442122 +shareholder proposals re climate change; C) It's a great talking point to show that Wall Street is recognizing the significant economic /5,36020 +Mondo: 4 PMI su 5 temono impatti del climate change sul business. Italia: rischio sottovalutato https://t.co/TNJ4wedF41,421230 +"WashPost: Thanks to global warming, Antarctica is starting to turn green https://t.co/IwZfY196kk @chriscmooney",627623 +"RT @ChrisJOrtiz: joe: im going to keep the nest password +barack: no youre not +joe: well see if they believe in global warming when i…",980821 +"RT @TwitchyTeam: ‘Do you even science, bro?’ Neil deGrasse Tyson uses the eclipse to prove climate change, trips over SCIENCE https://t.co/…",781008 +"RT @michiganprobz: According to Popular Science everyone will move to MI in 2100 due to climate change..hopefully they be done with I75 +htt…",645631 +RT @JulianCribb: Global 'March for Science' protests call for action on climate change https://t.co/EClvgfNgqg,163845 +RT @Reuters: EPA chief unconvinced on CO2 link to global warming https://t.co/wjaK7belcz https://t.co/NgWBbXPP7u,949415 +Most people don't see how climate change is affecting their lives—and that's a problem https://t.co/U6Ukh4kmqd https://t.co/cD6F7HfOs9,284280 +RT @bets_jones: I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/68CDtDHzHI,961923 +"@alroker +Saw your interview on global warming being real. You should post. ���� +#WeAreAllStewardsOfEarth",138561 +How bucking climate change accord would hinder fight against HIV/AIDS https://t.co/FocaxMSIli https://t.co/fd2FTDJh8c,935550 +"RT @Bentler: https://t.co/rhXbB8VlTO +(Audio) Even in Texas, people worry about climate change +#climate #texas #transition https://t.co/AIBt…",832262 +The CDC canceled a climate change event. Al Gore will host it instead https://t.co/ToezHV4wiZ,712116 +Reports: Trump meets Al Gore for 'extremely interesting' climate change discussion https://t.co/ySmkVvNpFr,713337 +RT @TeslaMotors: Rising temperatures put millions at risk as climate change hotspot @third_pole (world's 3rd-largest store of ice) is melti…,784039 +RT @BrooklynSpoke: Our mayor is so concerned about climate change that his SUV drivers leave their engines running while he rides a st…,702165 +RT @dumbwinks: maybe jesus isnt coming and we've neglected warnings from scientists about climate change for over 30 years,738465 +RT @RichardMunang: Africa smallholder farmers among the most affected by climate change https://t.co/5EXIbOzUUw via @NewTimesRwanda,132050 +Good discussion on cross-party climate change policies in #chch tonight with @KennedyGraham @stuartsmithmp & Denis… https://t.co/FezLTceUKs,499967 +Putin thinks Russia will benefit from climate change and communities will ‘adjust’ - https://t.co/T9kEIY3xdx https://t.co/l8m1OhoN7M,367567 +Trump admin do not believe science about global warming and challenge it based on Technology. #inanefuckingidiots,623626 +RT @danadolan: Great chapter on US climate change policy in @r_deLeo's Anticipatory Policymaking. Doubling back to the chapters I impatient…,825528 +RT @nvisser: Pretty much EVERY living thing on the planet has already felt climate change https://t.co/Xh0AfQWCS7 #COP22,375901 +fuck global warming ��,810713 +"RT @Alex_Verbeek: ���� + +Artist takes on climate change with giant sculpture in Venice Canal + +https://t.co/hK6LNoxQOv #climate #art…",712277 +"Climate deniers welcome climate change, in a cognitive dissonance larded by self interest #conspiracy",102007 +Most people don’t know climate change is entirely human-made | New Scientist https://t.co/m0OVMJ7pII,187527 +#stopthechange check this informative image out to figure out ways to prevent further climate change! https://t.co/frjYMUj1k6,378155 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,634492 +"RT @guardian: We can fix climate change, but only if we refuse to abandon hope | Zoe Williams https://t.co/nKoxFUrkJr",675346 +RT @Lutontweets: Monster snowstorm in Colorado forces postponement of climate change & global warming rally https://t.co/XLdWHNFQVy…,901159 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,466180 +The most effective individual steps to tackle climate change aren't being discussed https://t.co/4HShGrNZ0x,915897 +"RT @jimferguson: What do Dutch trains have in common with climate change deniers? + +They both run on wind power. + +https://t.co/kyQYVV20W4 vi…",804521 +RT @guardian: Merkel vows to put climate change at centre of G20 talks https://t.co/jUWpHBrp2k,145454 +David Hempleman-Adams urges climate change action after Arctic voyage https://t.co/QNcbaoTFUH,178673 +RT @MomKnwsShopping: #NYPost Meteorologists debunk EPA chiefs climate change denial https://t.co/94QdNlJZ1i,617471 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,875322 +RT @OSU_Beaver4life: 'X' marks the spot. #LookUp �� #GeoEngineering #chemtrails the real global warming. ✈️ ��@Dan_E_V @TruthSeeker2115 http…,129150 +We just lost an an area of sea ice as big as India to climate change https://t.co/t1obYQIAZB,622678 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,21744 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,704991 +China may leave the U.S. behind on climate change due to Trump https://t.co/mark30IqCj via @YahooNews,519115 +"On climate change, Scott Pruitt contradicts the EPA’s own website +https://t.co/G2OKWG2syZ",380592 +@fisherstevensbk #beforetheflood taught me more about climate change than my entire formal education!! insightful and bold!!,268542 +RT @DineshDSouza: The real climate change the media now has to adjust to is @realDonaldTrump https://t.co/080YqPw1Ng,291316 +"RT @9GAGTweets: But go on, global warming isn't really a thing... https://t.co/itq5NcnVoz",338268 +RT @wef: Best of Davos: President Xi Jinping on globalization and climate change. https://t.co/FsOm1Z25Sz https://t.co/jA9gu6lsam,239293 +"@sixirontg @stevereneshow @glennbeck billionaires, liberals at highest positions.A trillion $ stimulus, tariffs, amnesty,global warming...",531330 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,300066 +"In the Netherlands, climate change is not a hypothetical or a drag on the economy. It’s an opportunity. https://t.co/Z7KoLwlLx4",50540 +"RT @EPAWouldSay: If you know scientists, you know it's rare to get a room full of them to agree on anything. Except climate change.…",113908 +"Longer heat waves, heavier smog go hand in hand with climate change - DailyRant https://t.co/H5oTQulSvl",585990 +"RT @Grimeandreason: If you don't think climate change & neocolonialism are issues that can bond developing states against us, you got a rud…",752092 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,79291 +"Ugh, six more weeks of winter AND no global warming https://t.co/K9wwa6NhGz",347916 +@sakrejda going to start blaming Bayesians for global warming.,864940 +"climate change denial &racism 4 poor masses, Superconcentratn of wealth &power 4 rich &powerful #auspol THATS TERROR NOT DEMOCRACY #lnp scum",7787 +RT @WorldfNature: Reindeer are shrinking because of climate change - New York Post https://t.co/bECNHPHybW https://t.co/L687FOwy4p,629207 +Thank god for the U.S. allies that plan to give Trump an earful on climate change at G-7 summit https://t.co/LP0mXZPOU0,575917 +"@AJEnglish Uhm, and climate change. Interested to hear if Paris Agreement is brought up.",432436 +Feb 14th e4Dev invites you to watch Before the Flood and witness climate change firsthand w/Leonardo DiCaprio.… https://t.co/3xHiPpVDEs,597885 +RT @jenninemorgan: There is no global warming due to CO2. It is a scam. Climate change happens but is unpredictable as there are too m…,173756 +@realDonaldTrump I voted for you but you need to understand that climate change is real....so please look into it more,867822 +RT @JoshBBornstein: Guy who says climate change is a giant international conspiracy advocates ABC be staffed with serial sexual harasse…,278415 +RT @motherboard: Mayors unite to fight climate change from city to city: https://t.co/yj3e4z2xQ0 https://t.co/CBZpwE7NB7,528119 +"RT @FabiusMaximus01: The cold facts about the Paris Agreement, global warming, & the Constitution https://t.co/Ny8uv5t17H https://t.co/hJ6q…",118755 +RT @VICE: What the future looks like with a climate change denier in the White House: https://t.co/957NwcUBbq https://t.co/cNoEW5AGRW,356576 +climate change is a chinese hoax! Sad! https://t.co/d0Oc7ug5xy,748080 +"@marcorubio yay so cool to see a homegrown miami boy denying the science of climate change, I'll miss you miami, sry grandchildren congrats!",51429 +"RT @OwenJones84: And lo! The Tories did conjure up the magic money tree to shower gifts on their homophobic, anti-choice, climate change de…",698409 +RT @MohamedMOSalih: Sadly we'll see more natural disasters being called man-made disasters if we don't ALL act on climate change.,388085 +RT @tricyclemag: Few are optimistic about reversing the effects of global warming. And then there’s environmentalist Paul Hawken: https://t…,307283 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,704405 +It's such a beautiful day to think about climate change eroding the fabric of civilization.,812733 +Seth Meyers has some thoughts on Donald Trump and climate change https://t.co/ZFRUPgdFk3 via @TheWeek,717339 +Who wants to place bets on @realDonaldTrump calling global warming fake tomorrow morning because of the snowstorm?,293579 +Al Gore is going to build a wall to stop global warming,406738 +"tanghaling mainit, gabing malamig. ramdam na ramdam kita climate change.",228132 +"RT @ResisttheNazis: Trump will be the only world leader who denies climate change, giving the U.S. the official title of Dumbest Countr…",286368 +RT @AgriEngrs: I invite everyone to plant some trees! Spread awareness and do your work to stop climate change. https://t.co/kQ7iinJRgt,577734 +RT @pepcanadell: Can we slow global warming and still grow? The New Yorker https://t.co/gFvIovHDNV https://t.co/ggZ53ZcVlB,135143 +RT @peddoc63: Forget about cow farts causing global warming. How about the flatulence being excreted by liberals at all their sil…,620854 +RT @homemadeguitars: They'll have to quit. Their new Scammander-in-Chief doesn't permit acknowledging global warming. Sorry. https://t.co/R…,369683 +RT @ClutchGodx: Oh so y'all still think global warming a joke huh https://t.co/mmTeVs6l8t,323400 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",417301 +Company directors can be held legally liable for ignoring the risks from climate change https://t.co/zAggEUS5p5 https://t.co/rrxllsi0ti,436059 +RT @6esm: Economists call for $4 trillion carbon tax to save humanity from climate change https://t.co/m2tomoZxdq - #climatechange,721249 +"Effects of climate change may 'wreak havoc' on mental health, doctors say https://t.co/BwLlVvN5SW via @upi",773767 +"RT @GeorgeMonbiot: Talking about climate change in the context of #HurricaneHarvey is 'politicising' the issue? No, *not* talking about it…",333656 +Rex Tillerson: Secretary of State used fake name ‘Wayne Tracker’ to discuss climate change while Exxon Mobil CEO: C… https://t.co/vQVq0M6CxH,568768 +#CLIMATE #p2 RT Do mild days fuel climate change scepticism? https://t.co/rxRJo8lWK9 #tcot #2A https://t.co/i12sd3BMPN,43272 +"Mitigating climate change isn’t the only issue, says Gord Beal of CPA Canada. Adaptation also needs a national plan. https://t.co/A3dXUaYZLY",938568 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",172948 +Feeling helpless when it comes to climate change? This article offers small actions we can take to help. https://t.co/rk84fwiOx9 @UpshotNYT,983276 +"Youth interested in climate change adaptation and mitigation?? Don't miss +https://t.co/uHrqc2zvOU",803312 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",76720 +"RT @otterhouse: National Geographic images of climate change, from California to India https://t.co/AauOzdLwBK by @drcrypt via @FastCoDes…",511620 +@anniebeans59 @tofs1a @foxnewspolitics it was dumbfuck Republicans who refused to believe global warming b/c they needed a jacket outside,512613 +Bloomberg urges world leaders not to follow Trump's lead on climate change https://t.co/6Y7nF07ok0,984860 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,95573 +"RT @MikeElChingon: Trump put a climate change denier as head of EPA and an anti-labor, anti-healthcare for min wage workers as Labor Secrat…",850914 +AGU responds to comments by EPA Administrator Scott Pruitt denying CO2 role in climate change. https://t.co/83bZ6wmkb1,482213 +Petro Industry News: How does climate change compare to other national threats? https://t.co/WC5rRZz7l1,269621 +Lifelines: A guide to the best reads on climate change and food' #podcasts #feedly https://t.co/kg8Vsq1TuG,193531 +#WorldNews Donald Trump's environment boss doesn't think humans are driving climate change despite…… https://t.co/sEyCC1fFzS,595368 +How climate change is a 'death sentence' in Afghanistan's highlands https://t.co/zWubvxJ55V,107866 +"RT @esmewinonamae: Boy - 'What that mouth do?' + +Mouth - 'Animal agriculture is the leading cause of: climate change, species extinction & o…",469303 +". Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/lH2yMhL3Ll via @ShipsandPorts",818727 +G7 leaders blame Trump for failure to reach climate change agreement https://t.co/QS6jbSxc2U,635858 +RT @UN: Starts today in Marrakesh: @UNESCO conf. on indigenous knowledge & climate change https://t.co/obyaU13EWR…,965686 +"RT @democracynow: .@guardian columnist @GeorgeMonbiot: 'By not mentioning [climate change], you are politicizing it... It's a politic…",299643 +RT @SwankCobainn: Donald trump doesn't believe in climate change this nigga is actually an idiot I'm concerned lol,624867 +RT @Newsweek: Trump is hurting thousands of small towns with his denial of climate change – and here's how https://t.co/69bLhLTUF8 https://…,304109 +RT @MomeeGul: Real player for change are private sector. Regional coopertion on climate change @ShakeelRamay #SDC2016 https://t.co/m8WCXHA…,88015 +"RT @RollFwdEnviro: Economy continues to grow, but you WON'T BELIEVE the impact on global warming pollution...for THIRD STRAIGHT YEAR!!…",26930 +"@pattonoswalt @lesleym14 @scott_tobias global warming, dude.",764165 +Oh lovely—EPA Scott Pruitt voicing claims that carbon dioxide doesn't have anything to do with climate change! Say goodbye Planet Earth!,830407 +RT @thehill: Sanders tears into EPA head for saying CO2 isn't a 'primary contributor' to climate change https://t.co/s46XxZqRCw https://t.c…,533945 +What you can do to help with climate change: https://t.co/cg0V8OaCBd,832256 +RT @FortuneMagazine: Donald Trump’s energy pick softens stance on climate change https://t.co/wm35sNIWlu https://t.co/0c3bBSi0H1,730474 +"@RepBost @HouseHomeland Threats to Peace and Stability: global terrorism, climate change, geopolitical crises, econ… https://t.co/km31NzrVyH",142120 +RT @Travon: The CEO of Carl's Jr opposes minimum wage increase and gets to be labor secretary. A climate change denier gets to…,52465 +"97% of climate scientists believe in global warming. Know what else 97% of scientists believed in at one time? Geocentrism. +#Woke #Kony2012",970804 +"It didn't take long for #China to fill #America's shoes on #climate change +https://t.co/yCGqRZJCkb",415836 +We destroy so many good things. Hopefully global warming kills us all,605423 +RT @SteveSGoddard: The brutal global warming in Colorado continues https://t.co/pKxPl3ezpF,472333 +#RhodeIsland #IdiotDemocratic senator uses Okla. tornado for anti-GOP rant over global warming https://t.co/KxNsXtOvQM via @dailycaller,248830 +"RT @IseeBS: @realDonaldTrump 1/ Liberals love declaring settled science on climate change. Yet when it comes to gender, they ac…",47690 +The importance of palaeo studies for understanding climate change. https://t.co/n2zgfm3Pjm,816723 +"RT @samwhiteout: If only there was a scientifically established explanation for this... + +climate change. https://t.co/ZKBuBOFMZz",278217 +The video-clip says 'mining' is part of climate change we humans are all suffering now. Might be a sweeping... https://t.co/iZFFGbVoST,204745 +"RT @EricBoehlert: reminder: network evening newscasts this yr spent 125 mins on Clinton emails, 0 mins on climate change;…",100347 +"RT @Energydesk: On #IntlForestDay, watch how 750 billion trees at the top of the earth could make or break climate change https://t.co/Hz1g…",17989 +"RT @GigiDatome: Tonight will be #EarthHour, let's fight the climate change! At 20:30 turn off the light for one hour, let's win... https://…",385330 +The scientist cooked books for government climate change whistle blower says scientist part of obamas SS network in government t yrs cl up,659215 +"Longer heat waves, heavier smog go hand in hand with climate change https://t.co/uGLMKX9atN https://t.co/Dl0DQLX5zS",575962 +"RT @StevenCowan: As Jacinda Ardern says 'climate change' is a defining issue, will Labour now change present policy and ban all offshore oi…",41877 +What if climate change was brought about by witchcraft,147107 +"RT @starburstt: Tonight, we go undercover. But first, nachos and a Cold War Cocktail (melted, but hey, global warming, amirite?)…",12509 +@mglessman @weatherchannel Thank you for sharing the information about climate change!,873931 +"Watch J-CCCP's 'Feel the Change' campaign video, launched as a part of the Belize climate change communications... https://t.co/GGdYdvEaoH",961460 +RT @etribune: Four forestry initiatives #Pakistan is taking to fight climate change https://t.co/X8aEO97K6E https://t.co/LkceCG7LbA,991948 +Want to know how we tackle climate change in the Trump era? It starts with cities & states stepping up to the plate https://t.co/Wyd3Txr7kG,882799 +@puglover3817 @PBS they push climate change,597075 +RT @WFS_Geography: Refugee crisis: Is climate change affecting mass migration? https://t.co/9VcsxYaPRH #geog4b #WFSyear13,397560 +"RT @Lucan07: 3000% years ago humans stopped eating Cows & started worshipping them global warming spiked, then came McDonalds &…",922131 +when i was a kid i always thought all star was about global warming,516390 +Nicholas Stern: cost of global warming ‘is worse than I feared' #COP21 https://t.co/mPA3lXpTqm,36679 +"RT @cnni: Polar bears will struggle to survive if climate change continues, according to a new US government report… ",355749 +RT @vaqarahmed: Thank U Dr @AdilNajam 4 talk on #post-truth narrative and #climate change at @SDPIPakistan #globaldev,111961 +RT @theecoheroes: Shareholders increasingly concerned about impact of climate change: Teck #finance #climatechange #environment…,333377 +#StrongerTogether #Debate #Rigged #DNCLeak #Iamwithher climate change is directly related to global terrorism https://t.co/6SoXS3kdim,519677 +RT @KekReddington: @AmyMek @GemMar333 There is no man made global warming https://t.co/mXTgSrtX2Y,292196 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,200571 +"RT @AyaanG: @marianokhadar @Somaliland could not agree more, we have to proactive and not responsive to effects of climate change",532693 +Efforts to slow climate change could keep the planet habitable and boost the world economy by $19 trillion! https://t.co/CRu41wXREo,696374 +RT @BeingFarhad: 'Trump is wrong — the people of Pittsburgh care about climate change' https://t.co/bayVMbJY4g via voxdotcom #ClimateChange,36398 +RT @WorldResources: #NowReading Trump disbands federal advisory panel on climate change @thehill https://t.co/AqALMAds46 | Learn more…,963871 +RT @FollowYayu: I blame you for global warming… your hotness is too much for the planet to handle! https://t.co/R1qXVAQ5EB,760952 +RT @omarchahrouk: Collaboration. Communication. Cooperation. To achieve climate change action! @ourcbcity @dizdarm @RamadanHal…,507103 +"RT @imskytrash: evidence global warming is not a hoax: + +1) record temperatures +2) water levels steadily rising +3) FUCKING CLUB PENGUIN SHU…",243383 +Trump to drop climate change from environmental reviews: https://t.co/07E5BdcY4P via @AOLGood for you Mr. President.,51662 +RT @ChinaEurasia: China may assist Pakistan agriculture on climate change affects under CPEC https://t.co/tcE9hbPCAK,788143 +"RT @XiuhtezcatlM: Join my Q&A with @DefendOurFuture, young leaders in the fight against climate change at 3pm EST! #DefendOurFuture https:/…",193781 +"RT @realDonaldTrump: Give me clean, beautiful and healthy air - not the same old climate change (global warming) bullshit! I am tired of he…",102407 +RT @SierraClub: Trump administration sued over climate change ‘censorship’ https://t.co/tIBDcZ0g5s (via @ClimateHome),76051 +RT @qz: Angela Merkel’s husband is taking Ivanka and Melania Trump on a climate change tour https://t.co/Z5P7MalB0C,41988 +if taking an env geography class has done one thing for me it has allowed me to shitpost more efficiently in /pol/ climate change threads,29210 +RT @RogueNASA: Energy Department climate office bans use of phrase ‘climate change’ https://t.co/4zdhWPcwJe,733080 +"RT @amlozyk: Trudeau is injecting climate change fear to people by taxing us. Dividing, I will not get into that, but he said 'w…",985373 +RT @UN: Most hungry people live in places prone to disasters; climate change makes it worse. @WFP & @Oxfam on #r4resilience https://t.co/h…,872691 +@SadUSNVeteran not global warming crap that's just normal always have been since I could remember,49560 +"RT @Greenpeaceafric: Research shows that more people are starting to see global warming as a current crisis, not something to come:…",198799 +78° in Mid-November. Sure glad that climate change thing isn't real.,601351 +RT @SenFranken: You can’t erase facts. Man-made climate change is a fact. @POTUS' EO is a political ploy not grounded in reality. https://t…,767895 +RT @CauseWereGuys: if global warming doesn't exist then why is club penguin shutting down,88166 +"RT @ClimateNexus: New Gallup: 45% of Americans now say they worry 'a great deal' about global warming, up from 37% a year ago…",272120 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,761653 +RT @Crudes: if global warming isn't real then explain why club penguin is shutting down?,439734 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,225986 +"RT @TheRickyDavila: Al Franken shutting down Rick Perry over climate change is everything & more. +https://t.co/OaNYolpEjH",271947 +RT @thatonejuan: 'What's harder? Convincing a Trump supporter that climate change is real or convincing Mello gang that Deadmau5 is better?',20794 +"RT @whitefishglobal: Two words the Trump Administration can't say: climate change +#resist #TheResistance https://t.co/Rfpjkw9dp4",172350 +"RT @ScottAdamsSays: How Trump makes money for the country out of nothing. Also, some climate change stuff: https://t.co/BQczBRfYHG #Trump #…",93349 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,207577 +"RT @SovietSergey: School history teacher, year 2150: + +'And then Donald googled 'climate change hoax' and that is why we all must now… ",193393 +RT @philkearney: Climate deniers blame global warming on nature. They are wrong. Here's the data from NASA. https://t.co/oSilqgmDhO Worth…,919838 +It's unfathomable how anyone can deny climate change,303267 +Who needs global warming when you can simply light $1.6 billion on fire. https://t.co/K9fBxXxqfv,215238 +RT @EnergyBoom: China: Trump's election will not jeopardize global efforts to combat climate change #COP22 https://t.co/diYvzdVwNP,753001 +RT @UNESCO: It is essential that we work as one together with indigenous peoples to address climate change…,860932 +"RT @AngelicaJoy__: It's so nice out LOL global warming, we're all finna die https://t.co/8QsUzRURXz",731781 +I've failed to tell you global warming,772579 +"This is the letters from Americans. Today, 20M more Americans now know the financial security of climate change is dangerous.",945782 +RT @BirdLife_News: Researchers in Denmark conclude that climate change is a threat to the survival of migratory birds…,565594 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,668399 +RT @WorldfNature: Alaska wildfires linked to climate change - Alaska Public Radio Network https://t.co/xiNzFmI3W1 https://t.co/Ey2PjdmFms,187894 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",24733 +"Guys, go watch National Geographic / L. DiCaprio's doc on climate change, Before the Flood. It's free so no excuses. https://t.co/sNqiOes2UL",127237 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,57546 +So it's 50 degrees on January 3rd and you guys still don't believe in climate change huh,813037 +"I saw this on the BBC and thought you should see it: + +G7 talks: Trump isolated over Paris climate change deal - https://t.co/jPWk5vFog8",365946 +RT @noturbine: @SpaceWeather101 @wattsupwiththat It's not global warming. Industrial wind turbines that do that.,486202 +@MrBanksIsSaved @jbarro to equating BLM to the KKK and calling global warming bullshit.,226177 +RT @nytimes: Senator Tim Kaine challenged Rex Tillerson on his climate change views https://t.co/NeTBkpFS9L https://t.co/ahyVybQqYg,83339 +RT @350: What American workers know about climate change: it's real and we can fix it. @1199SEIU + @billmckibben lay it down…,475772 +"RT @Greenpeace: If climate change goes unchecked, many areas in southern Europe could become deserts. https://t.co/PGRHflqMtb #scary https:…",733562 +EPA chief: Carbon dioxide not 'primary contributor' to climate change https://t.co/G4l6z57wlB,672377 +Corbyn says he would confront Trump on climate change if he were Prime Minister https://t.co/9XjRsR7Cfb,325473 +"RT @ArthurNeslen: Lobbying data reveals carmakers' influence in Berlin, by me on climate change news: https://t.co/MaGuWjrXFP via @ClimateH…",960228 +So much for global warming ... don't they wish! https://t.co/0RnM39hphL,338453 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",303865 +"RT @AynRandy: Hell yeah I wanna FUCK + +F ind solutions to climate change +U ndo the damage caused to the reef +C ombat skeptics +K support the…",984308 +"Parks season has officially started! Today I met @cathmckenna, the minister of environment and climate change today… https://t.co/TvghgtWGks",176390 +RT @Independent: The proof that something terrifying really is happening with climate change https://t.co/fle5ks3xm9,110266 +"@AbundanceInv Fur sure would! Seen how activists have been impacting energy companies, due to climate change? https://t.co/YdKTOIXIu7",723823 +RT @LodhiMaleeha: I was honoured to deposit Pakistan's instrument of accession to the Paris agreement on climate change at UN today. https:…,713426 +"@CNN ♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/dLAgihdmOI",65837 +"RT @Robbinsds: US the outlier The divisions were most bitter on climate change, 19 leaders formed a unified front against Trump. https://t.…",959568 +RT @YahooNews: Billionaire climate change activist says he’ll spend whatever it takes to fight Trump https://t.co/9PxJKpE4hR https://t.co/8…,259915 +#CLIMATEchange #p2 RT Centrica has donated to US climate change-denying thinktank https://t.co/wBHriFEWQD #COP22 https://t.co/16xjXKntDx,414319 +RT @afreedma: Amazing to me that @CNBC isn't responding with a segment on what the science actually says on climate change. It's not hard t…,734239 +RT @LKrauss1: Major drivers of climate change involve basic physics and chemistry. That is why denying them is so fundamentally misplaced.,951585 +RT @BBAnimals: The effects of global warming https://t.co/twFnLF4XNw,991551 +"I think the Pope needs to get his shit together. W/no moral high blathers on about Trump, climate change... +Hey Va… https://t.co/mwPwD5WzVE",538053 +RT @AdrianoVeneto: @fattoquotidiano global warming IS a hoax,159032 +@realDonaldTrump As you're signing these EO's just remember ' DC's avg. temp is higher than your approval rating' global warming is real,760242 +The Paris Agreement on climate change comes into force https://t.co/UILnLPKkJK,511303 +No such thing as climate change idiots! It's called weather and weather happens. https://t.co/E8CCjgykr7,205139 +RT AlexCKaufman: scootlet: Jeff Sessions last year said climate change is a conspiracy against poor people and I g… https://t.co/cpNOFDRBsq,713411 +"RT @MikeOkuda: The so-called 'president' wants less warning of hurricanes, because he's afraid of more data on climate change. https://t.co…",404299 +"Anna Coogan on Trump, climate change and breakup songs - The Independent https://t.co/mrejrldmky https://t.co/ROrjKhqTI9",520934 +RT @eemanabbasi: I'm just tryna enjoy this 50 deg weather in the middle of winter but I kno it's bc of global warming & polar bears…,962258 +RT @Green_Europe: #FutureofEurope enhances energy efficiency & keeps global warming well below 2°C. Join #SDGambassadors @ #EP…,589683 +RT @jfagone: Trump admin apparently taking steps to purge scientists who study climate change. https://t.co/mxo5WQCxYd,879487 +Still pushing the global warming scaremongering... Maybe ppl shouldn't build houses in such areas! �� https://t.co/WjxnUgJiFa,595853 +"RT @ReclaimAnglesea: How climate change battles are increasingly being fought, & won, in court (Courts ⚖️step up as pollies fail #auspol) h…",893537 +RT @danprimack: Mulvaney: 'We are not spending money on climate change anymore. We view it as a waste of your money.',510701 +"RT @lisapjackson: 'The main culprit, experts say, is climate change.' https://t.co/57puMM6H5z",506168 +"RT @mattmfm: 1) Plans to cut insurance for 24M +2) Doesn't believe in climate change +3) Has no economic agenda +4) Is a policy dun…",935401 +Excuse me? Dems are NOT worse than GOP. #MuslimBan the blocking #ACA along with the denial of climate change? You s… https://t.co/kjueEvDUst,172217 +RT @wikileaks: Full doc: Leaked draft NASA/NOAA US climate change report https://t.co/OdGBsPt9MM https://t.co/FWie4E28Eo,107737 +RT @Jackthelad1947: Company directors to face penalties for ignoring climate change #auspol politicians should too https://t.co/sHkGVfRQUm,843898 +RT @TIME: Justin Trudeau kayaked up to a family to talk about climate change https://t.co/Gwj1ImAJHe,75963 +global warming toys for teens https://t.co/ODdU3PQfFo,792583 +"RT @insideclimate: In the draft U.S. climate report, scientists describe overwhelming evidence of manmade climate change underway now. http…",788850 +RT @Adam_Stirling: The idea that carbon pollution must have a price is the most important tool human beings have to fight climate change. P…,171453 +GE CEO Jeff Immelt seeks to fill void left by #Trump in #climate change efforts: Biz Journals https://t.co/xsmuz923u4 #environment,721682 +"It's important we start talking to our children now about climate change that will affect their future, our... https://t.co/BYpvAexnZV",504393 +The remarkable pace at which nations of the world have ratified the Paris Agreement on climate change gives us all hope. Mitigation...,457122 +RT @SOMEXlCAN: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/WQA1LQp07o,967876 +RT @MarianSmedley: Of course we can - and we need to to tackle climate change https://t.co/ok0Mgc5BxC,778564 +"RT @NPR: Trump plans to cancel billions in payments to UN climate change programs & use money to fix America's water, environmental infrast…",384288 +"RT @pablorodas: EnvDefenseFund: The White House calls climate change research a “waste.” Actually, it’s required by law. #ActOnCli… https:/…",918649 +I'm ready for climate change! The desert sucks!,932202 +RT @yourlocalemo: TELL YOUR BOYFRIEND IF HE SAYS HES GOT BEEF THAT animal food production is one of the leading causes of climate change an…,596826 +How untreated water is making our kids sick: Researcher explores possible climate change link - Science Daily https://t.co/Tvxws1llou,533476 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",510491 +RT @TheEconomist: Uncoupling emissions growth and economic expansion is important for slowing climate change https://t.co/hliGxDO4wa https:…,542316 +RT @GWPnews: .@VivDeloge @BWS2016: Involving #youth in decision making ensures the climate change transition @ofqj_france https://t.co/FUUG…,994967 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,19929 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/IXW10VS2uP https://t.co/LLG…,600094 +RT @latimes: UCLA scientists mark Trump's inauguration with plan to protect climate change data https://t.co/JJV1snB4AF https://t.co/1isbR5…,415619 +"@icouldbeannyone I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",954438 +"RT @816Bike: Hey since it's super nice lately (global warming perhaps?), we are bringing back (weather permitting) BIKE SALE SAT… https://t…",68040 +"esok presentation bi gp +aq tntang global warming.. +wish me luck.. ������",621500 +"RT @nytimes: As global warming cooks the U.S. in the decades ahead, not all states will suffer equally https://t.co/iYOuzqhB7r",219085 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",511936 +RT @katya_zamo: . @realDonaldTrump how can u deny climate change when my pussy this hot 🔥☀️🔥 https://t.co/NFISe5vliE,24310 +"RT @c40cities: Urban heat threatens not only public health, but local economies too. #CoolCities keep the costs of climate change…",92102 +RT @MikeCarlton01: The culpable idiocy of Abbott and the climate change cranks https://t.co/jh7zXDdm9K via @ABCNews,606534 +RT @elizabarclay: Trump’s budget envisions a US government that barely deals with climate change at all https://t.co/jhF3QDBMjf via @voxdot…,71316 +RT @MandaPrincessXo: So the very people protesting climate change are lighting cars on fire which put toxic fumes out into the air...�� M…,680063 +RT @ilo: Decent work for indigenous peoples helps advance the fight against climate change #WeAreIndigenous…,322709 +RT @frankieboyle: Don't worry about Trump. With air pollution and climate change in 50 years we'll all be dementia sufferers fighting off 1…,489062 +RT @LarrySabato: I for one am thrilled that we've partnered with titans Syria and Nicaragua to deny climate change. It's the New World Orde…,508651 +RT @wassilaamr: people worried abt egypt's falling economy and not realising we're all dying bc of global warming lol,727703 +@realDonaldTrump I hope you reconsider your position on climate change. Consider the cost of possibly being wrong - is it worth it?,4932 +RT @SteveSGoddard: This week in 1988 marked the beginning of the global warming scam by @NASA's James Hansen. This is an important rea…,962717 +@grouch_ass @RalstonReports that's like saying global warming isn't a thing because it's freezing on a certain day.,261801 +@HeyTammyBruce @NYJooo State of Fear by Michael Crichton is good about global warming,235490 +"this might be a matter of opinion, but climate change is real, love is love, and a woman does have right to choose.",526141 +RT @MattBellassai: i bought an amazing winter coat so im gonna need global warming to stop fuckin around with my ability to achieve a winte…,464597 +"RT @fifaroni: the stock market is crashing, California wants to recede, & our newly elected president believes climate change is…",402932 +RT @schemaly: 48.4% of conservative white men think global warming won’t happen compared to 8.6% of other adults #whitemaleeffect https://t…,874966 +@tedlieu It's why they still deny climate change. They're owned by the fossil fuel industry. EPA chief Pruitt would… https://t.co/7hdoypdxBZ,38647 +RT @irinnews: How does climate change affect food security? What can farmers do? Read our helpful guide: https://t.co/NRN9xcp7nq https://t.…,874952 +#Climatechange Belfast Telegraph Ellie Goulding urges action on climate change ahead of Earth Hour…… https://t.co/Usl3KTpBfb,45839 +"Al Gore slithering on climate change, future of Paris accord https://t.co/oUNp2BsHvT",11704 +RT @Reuters: Trump to officially scrap climate change rules: https://t.co/llU62LQ6sV via @ReutersTV https://t.co/esGhI8ZvOe,415601 +RT @washingtonpost: Why so many white evangelicals in Trump’s base are deeply skeptical of climate change https://t.co/D1AhkGxQcH,62116 +"RT @mitchellvii: CBS News This Morning: 'Isn't this hurricane proof of climate change?' + +Sure, just like the climate change in 1900 when Ga…",857982 +RT @RichieBandRich2: 75 degrees in Chicago on November 1st...global warming but aye it's bussin,270552 +"RT @Devilstower: Trump team has demanded names of people working to study climate change, protect women's rights, and fight hate groups. #L…",916824 +"@mariepiperbooks And maybe we can get down to pressing issues - climate change, for starters.",195763 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,580302 +Keynote: Modeling impacts of climate change- what are information needs? Tim Carter Finnish Env Institute #SASAS2016 https://t.co/ySnbZ9eSFp,746004 +"On climate change, Scott Pruitt contradicts the EPA’s own website https://t.co/jdcIBxMjsH https://t.co/QepMcn8ugt",21524 +.@CNBC's @JoeSquawk praises Rick Perry for saying seawater probably causes climate change. ��https://t.co/imXRIlkEyT https://t.co/zY4K16tlXG,756045 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,291523 +RT @NatGeoChannel: Nearly every week for the past 4 years Democratic @SenWhitehouse has taken the issue of climate change to the senat…,168193 +"@ddiamond To the person, who send me a tweet on no climate change, what do you call this pollution",951740 +RT @mmfa: None of the corporate broadcast news stations covered the impact of climate change before the election:…,719914 +Does he think China will give a rip what a gov of a state thinks about climate change? China will always do whats… https://t.co/70TYM8p1Wc,221414 +RT @mpsmithnews: 'Thought-leader & change-agent' Chelsea Clinton says climate change interconnected to child marriage https://t.co/pBX6P3Dp…,46653 +RT @climatetruth: The @EPA just buried its #climate change website for kids https://t.co/7UNpV35nD4 #StandUpForScience #ScienceNotSilence,682720 +RT @billycastro16: Girls are the reason for global warming https://t.co/5JFkb0GZrV,358950 +@SFmeteorologist @ReasonablySmart Just wait for 'unskewed' weather forecasts to hide climate change.,287098 +"RT @ABCPolitics: Sec. of State Rex Tillerson used alias account in some climate change emails during tenure at Exxon, prosecutors sa…",98062 +"RT @RokuPlayer: Watch @LeoDiCaprio 3-year journey exploring the subject of climate change, #BeforeTheFlood now on @NatGeoChannel:…",129794 +RT @MallowNews: Enda Kenny has warned Theresa May against doing a deal with a group of climate change denying crooks https://t.co/LQV3hXQ0ia,881908 +"RT @newsduluth: As Trump dismantles U.S. efforts to thwart climate change, his defense secretary says it's a huge security issue: https://t…",346851 +"@thehill climate change has been happening for billions of years, it's natural, blow up the planet is the only way to stop it",420600 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,496637 +i'm literally the only person in my family who believes global warming is a thing 🤦🏼‍♂️ it's time to head back to civilization,184565 +RT @USS_Armageddon: https://t.co/GhjLehYyuA Good. It's a scam anyway. The anthropogenic hypothesis of global warming (which is now called c…,806189 +Climate change deniers are starting to say 'hey it's getting cold in places! There's no climate change!' It's... https://t.co/OH6aDr80qR,309088 +RT @EnvDefenseFund: Global climate change action ‘unstoppable’ despite Trump. https://t.co/9Bf9QDIz1s,377531 +"POTUS Trump can take care of climate change Hillary I mean after all if he can take care of U, the Devils spawn, wh… https://t.co/Bqgsk9kzjv",767728 +@Carbongate anyway to speed up global warming? It will help..,366827 +“Chevron is first oil major to warn investors of risks from climate change lawsuits” by @climateprogress https://t.co/8TGls4o5yC,268773 +Your mcm thinks climate change is a hoax.,434121 +.@UNFCCC @CarbonBubble You people do not understand climate change. Decades. Centuries. Millions of years. https://t.co/QbkLJ5JdJ4 #climate,416182 +Jill Stein: Al Gore needs to 'step up' in climate change fight https://t.co/IkLELrjq9Q,768348 +"RT @Scgator1414: Question, leftists claim global warming, this mean all the snowflakes will defrost soon? https://t.co/mWzWn8WOZM",451039 +RT @SpiKeyyy_101: Ok calm down global warming because I i just put away my shorts.,141243 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,400389 +RT @business: This ski-resort exec is going uphill to beat climate change https://t.co/0Pb7W38giT https://t.co/f5lrSNDewx,984894 +RT @CounterMoonbat: The people who predicted parts of Manhattan would be underwater by 2008 due to climate change are concerned about 'fake…,844684 +RT @Dennis_QH3: One of the top debunkers of climate change fear-mongering on Twitter is @SteveSGoddard. You need to follow him. His feed is…,413599 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",366303 +"If global warming is real, then why did @clubpenguin shut down?",934357 +Government face being sued over failure to fight climate change https://t.co/BeFcuSbFUS,710000 +How to market the reality of climate change more effectively. https://t.co/3L034cLTkH @DericBownds #Psychology,76567 +If you aren't watching Leonardo's documentary on climate change then wyd,273418 +"RT @EmmaCaterine: No, his ties to oil are why we can't trust him. Russia did not block climate change studies. Russia did not steal o… ",169343 +RT @ckmarie: The scientific consensus that human activity is driving global warming has only grown more conclusive. https://t.co/NuKx9EF9aS,158615 +RT @TomCrowe: It's... it's almost as if major planetary climate changes have little to do with human activity... https://t.co/tusLgqk6WA,568416 +"RT @evattey: ..improve living conditions, and solve climate change, then I think we are onto a winner- President @MohamedNasheed #EmergingPV",529243 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,951670 +RT @buzz_us: Apple and Walmart stand by climate change policies despite President Trump’s... https://t.co/ix2fyK9maY by #helenmag via @c0nv…,163851 +When did global warming turn into climate change? Hahaha,111020 +"What's causing the 'pause' in global warming? Idk, I'm not a scientist. Low solar activity might be slowing down global warming temporarily",222806 +"RT @TheRickyDavila: Angela Merkel is in no way backing down from fighting climate change. (A real leader). +https://t.co/HPsEuPf7xe",504194 +RT @EcoInternet3: Energy Secretary Rick Perry incorrectly claims CO2 is not primary cause of #climate change: Climate Feedback https://t.co…,403341 +RT @joelgehman: A classic splainer: Climate deniers blame global warming on nature. This NASA data begs to differ https://t.co/jMZbWQHNbT,409964 +What do you think of the DNR's removal of language saying humans cause climate change? https://t.co/PTiUJUQrP4,164886 +@realDonaldTrump pulling out of Paris deal! He don't give a fuck about climate change he here to snatch America by the Pussy!,575926 +"RT @AP: The Latest: Germany leader says G-20 summit talks were 'difficult,' U.S. position on climate change 'regrettable.' https://t.co/F0s…",50353 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",511508 +"RT @awudrick: If climate change and debt are equally bad, why does your government only care about one of the two? #cdnpoli https://t.co/15…",824922 +"RT @APHealthScience: Some warm-blooded animals got smaller in response to ancient global warming, scientists say. By @borenbears https://t.…",306457 +RT @SteveBrownBC: Instrumental recordings and as of 1978 satellite measurements show no catastrophic global warming. But computer mod…,791734 +"RT @Alex_Verbeek: �� ���� + +This is climate change in your lifetime + +https://t.co/12Tva4urTT + +#climate #glaciers #travel #hiking #Chile…",320087 +RT @Forbes: Countries are turning to green bonds as a way to enlist private investors in their fight against climate change. https://t.co/4…,389556 +"Spotted skunk evolution driven by climate change, suggest researchers https://t.co/FDB0XS1agz",7867 +"@_Incech @topical_storm Not true....im a racist, xenophobic, sexist, climate change denier that wants to destroy the NHS.",266834 +Trump takes aim at Obama's efforts to curb global warming https://t.co/rNfJBQffSi,297246 +"RT @nytimes: This Alaskan village is losing an estimated 38,000 square feet a year due to the effects of climate change… ",972720 +"Liberals love to credit science when it comes to climate change; the moment we talk about gender, science is off the table.",832558 +"RT @BernieSanders: Trump's choice to lead EPA doesn't just deny climate change, he's worked with oil & gas companies to make us more depend…",973815 +RT @Forbes: What does China’s new and growing dominance of global energy financing mean for climate change?…,121239 +RT @TIME: 'Acting on climate change is actually where the money is' https://t.co/WhpRiKNbSD,173190 +"@SteveSGoddard Global Warming; climate change; & unusual weather all caused by human production of CO2, now .04% of… https://t.co/wIOvmuGSBj",347349 +"RT @AP: In a #360video, scientist drill into in an Oman mountain range to study carbon’s role in climate change. Read more:…",801067 +Reducing #foodwaste is also one way to mitigate climate change. #sustainableag https://t.co/w0ro3cojZn,554970 +If you still don't believe in climate change you are a fool.,942489 +RT @SenKamalaHarris: We can either be part of a climate change solution or force generations to come to deal with this problem.,318547 +RT @tauriqmoosa: @PolitiFact This is how the President of America discusses the major issue of international climate change control:…,433231 +"RT @drjanaway: Ironic that oil companies denying climate change cosy up to creationists that deny dinosaurs. + +Where's your fuel coming fro…",214255 +Pakistan determined to deal with impacts of climate change: PM Nawaz https://t.co/gaGJ6Xb8Ef,964352 +"National Geographic asked photographers to show the impact of climate change, here’s what they shot https://t.co/PhRbcBy2NA",296345 +RT @TIME: EPA chief says carbon isn’t a ‘primary contributor’ to climate change. Science says he’s wrong https://t.co/kGLtWgsz6M,369301 +@itsmimiace I actually bitch frequently that if the world when vegan we would pretty much resolve global warming and world hunger,786938 +RT @ThomasB00001: We can debate how to tackle climate change – but the science is settled #ClimateMarch #ActOnClimate https://t.co/llNRliCf…,248151 +RT @Underdawg47: #ImVoting4JillBecause she is the only candidate truly dedicated to fighting global warming,706539 +RT @guardian: Heathrow third runway 'may break government's climate change laws' https://t.co/26iK4Rltfx,243277 +Why the media must make climate change a vital issue for President Trump https://t.co/0ln1kLn2et https://t.co/Wok0SIe1b9,1848 +"RT @wef: Many young people fear climate change and poverty, as much as they fear terrorism https://t.co/AAKBNN5IkP https://t.co/waO86tUyjj",988928 +RT @businessinsider: A climate change skeptic is leading Trump's EPA transition — but these charts prove that climate change is very real h…,829412 +RT @ClimateReality: There is no scientific debate about climate change. It’s irresponsible journalism to pretend otherwise https://t.co/lX4…,876162 +RT @WorldBankWater: .@WorldBank launches MENA #ClimateAction Plan to address climate change in the Arab World: https://t.co/KYLIDGHfc4 #CO…,983975 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,920807 +RT @Aiannucci: The US elected Trump but the rest of the world didn't.So what do we do if US policies ( e.g. climate change) threaten the re…,857409 +@JoyAnnReid 2016 is the Hottest Year in recorded history.....but there's no climate change! https://t.co/Y8YGVQIoRi,642964 +"RT @Independent: Secret government documents reveal climate change measures to be ‘scaled down’ in bid to secure post-Brexit trade +https://…",740115 +@HaezelBae tru climate change is the more technical term sowee ��,287561 +"RT @ClimateCentral: A new, interactive map shows where climate change has affected extreme weather events https://t.co/MSooXzkQpR",65414 +RT @jonathanvswan: 'We will cancel billions of dollars of global warming payments to the United Nations. We don't even know what they do wi…,115578 +"Me a couple years ago: +'At least the Appalachians will be safe from climate change disaster.' +Today: +https://t.co/1ruRvqCOqI",996029 +RT @RushHolt: Ignoring evidence of climate change = ignoring evidence of gravity & jumping off bldg. #EPA should follow evidence. https://t…,530221 +"RT @ClimateCentral: Remember hearing about that climate change lawsuit filed by 21 kids in Oregon? + +It's moving forward. + +Against Trump. ht…",390917 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,879745 +RT @UN: New research predicts the future of coral reefs under climate change - @UNEP explains: https://t.co/TKxyf4GwqU https://t.co/PyFbkwO…,664859 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",29179 +"GOOD! If the PEOTUS & EPA appointee won't fight climate change in the 2nd most polluting country, the rest of us ne… https://t.co/Ej44pQaRZi",329827 +RT @business: Google and Facebook join cities pledging their support for policies combating climate change https://t.co/D79SXUxE26 https://…,76057 +"RT @IndiaExplained: Why not also throw in animal cruelty, global warming, potholes in Mumbai, and the Bombay Gym denying women membersh…",815249 +RT @TheCritninja: #HurricaneHarvey didn't come out of the blue. Now is the time to talk about climate change. https://t.co/GcNtOtacPx by @N…,516224 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,879490 +"RT @JohnLynch4GrPrz: @LeeCamp The Arctic Ocean creates the Under Ocean Current. When it stops, there will be catastrophic climate change. #…",870513 +Trump's channels King Canute as he orders Agencies & the military not to adapt to extreme weather & climate change https://t.co/Z5gAeVSskf,447999 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,282117 +"Retweeted alex D (@_alexduffus): + +It's 2016 and trump is going to appoint a climate change denier to the head of... https://t.co/ug1eAxCzky",551584 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",896735 +Immersive installation EXIT turns climate change & refugee into art https://t.co/R3QMcd5fUP @UNSW #unswGC Grand Challenges,378299 +"@1950Kevin I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",362462 +MPs urge May to tackle Trump on climate change - https://t.co/qpwWuLEL4g,817340 +Google:Democrats protest after schools sent material that questions climate change - Washington Examiner https://t.co/dU36xPwH41,339234 +"RT @Independent: Donald Trump has chosen the worst man possible to head up the climate change department +https://t.co/3Na4tunv5w",384300 +@MakiSpoke what about climate change denial? His complete dismissal of police brutality? His party's insistence on trans prejudice?,372535 +Frequently asked questions on climate change and disaster displacement https://t.co/ixbrGsFLzd,481501 +"RT @AngelicaJoy__: It's so nice out LOL global warming, we're all finna die https://t.co/8QsUzRURXz",22762 +"RT @Soldierjohn: Trump win stokes fears over climate change goals, hits renewable stocks https://t.co/vmPFoQ9Ifu via @Reuters SCREW THE COR…",485119 +so I just watched @LeoDiCaprio's climate change documentary and I am now a climate change activist,960924 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,1286 +RT @CBSNews: Al Gore's quest to change the thinking on global warming https://t.co/9WN6JTdS4h https://t.co/ifICZKj5ja,484608 +Since this weather hit I haven't heard a damn thing about global warming🐸☕️,96406 +"RT @Fusion: Imagine, if you will, a world where the media covered climate change the way it covers Hillary Clinton's emails…",119877 +@JordanUhl @TrumpResponders This just proves how Trump supporters want 2 Blame Obama 4 everything/ at least he believes about climate change,704187 +RT @sciam: How do you talk to someone who is skeptical about the impact climate change will have? https://t.co/wveBCHKH8E,639303 +How are global warming deniers going to explain the fact that there's a wildfire in Greenland?,226794 +"Most staple food crops are vulnerable to climate change and eruption of uncontrolled diseases.Food production,Banana being a first victim.",466728 +"RT @curryja: Are climate alarmists afraid of climate change, or fossil fuels? https://t.co/1oXsBT0lIF",267290 +"RT @Earthjustice: Scott Pruitt: “Reasonable minds can disagree about the science behind global warming' + +No they can't, agrees 99% o… ",197811 +My english prof asked the class if climate change was real and i whispered 'how is it not real' and the prof yelled at me for talking... ok,192879 +@ShellenbergerMD @DrSimEvans @bradplumer @JigarShahDC should we care about the economics when fighting climate change?,541183 +@L1bertyh3ad it's been one of the most important feedback devices in natural climate change throughout the past. It… https://t.co/ZRIYQOrhnl,268167 +"RT @Independent: World food supplies at risk as climate change threatens international trade, warn experts https://t.co/jPfCwhcHvr",222652 +The military says climate change is a threat. The whole world now believes in climate change except for our government. #FaithlessElectors,389701 +#3Novices : Historic climate pact comes into force https://t.co/RXhYE6Qiah A worldwide pact to battle global warming entered into force on…,778178 +RT @NYMag: EPA head Scott Pruitt denies carbon dioxide’s role in climate change https://t.co/XBv0N5OxJh,899742 +"RT @KathrynBruscoBk: Maybe, ancient diseases will wake-up climate change deniers. +#ClimateChange #ActOnClimate https://t.co/gipVmGDG88",611148 +"RT @climatehawk1: In Davos, bracing for shifting U.S. stance on #climate change - @stanleyreed12 @nytimes https://t.co/wZJEeWnSdo… ",412287 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,154379 +"RT @dakasler: Can state run on sun and wind alone? Facing Trump, California weighs aggressive climate change measures https://t.co/aYzKk6BD…",337433 +"Yeah, but climate change is a hoax, right Donnie? #Resist https://t.co/FSfQi6OhOC",4992 +RT @RogueEPAstaff: Both EPA and Interior have now scrubbed climate change from their websites. https://t.co/fxfRag6qWU,952134 +"2016 Was The Hottest Year Yet, Scientists Declare: Last year, global warming reached record high temperatures — and… https://t.co/yE5qFIWavP",614950 +"RT @YahooNews: Trump calls global warming a 'hoax,' but he cites its effects in fight to build a wall at his Ireland golf course…",433589 +RT @RogueNASA: 👇🏽👇🏽👇🏽 Direct impact of climate change 👇🏽👇🏽👇🏽 https://t.co/a3KjSPKYmd,431329 +"RT @TIME: Rex Tillerson allegedly used an email alias at Exxon to discuss climate change +https://t.co/xJcCa3Ar5i",973104 +"RT @truthout: Noam Chomsky on #DonaldTrump, climate change and our accelerating race toward disaster. https://t.co/4YImHl6lNv #climatechange",345041 +"RT @Ayylmao297: As serious as a heart attack, world hunger, and climate change combined https://t.co/LVWshF224J",9154 +RT @ALT_uscis: Conservatives are trolling Trump with climate change ads on Fox News and Morning Joe https://t.co/gB0KtTjeEO via @Verge,159443 +"RT @GMB: WATCH: Earlier #StephenHawking joined us to discuss Trump, climate change and Brexit. Watch the full interview here…",328167 +"RT @UniteBlue: #ClimateMarch2017 + +#ClimateMarch + +#UniteBlue + +These 21 photos show that climate change isn't a fringe issue via Mic…",410690 +RT @BigGhostLtd: This album might end global warming,560172 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",475421 +#EntrepreneurshipEmpowers micro-entrepreneurs by uplifting households out of poverty and combating #climate change.… https://t.co/hmFqKivPQ4,693871 +RT @nationaltrust: “What if bees & butterflies become extinct?' Read Kathy Jetnil-Kijiner's moving poem on climate change:…,765176 +@terngirl @morganpratchett and yet twitter is full of climate change deniers and the worlds remains silent! what can we do to stop this???,473084 +"RT @turnip_patch: @JacquiLambie Yep, let's just give up on global warming and all move somewhere else. Oh, wait...",948517 +a punishment of jail time & force-feeding meat for trying to counteract the global warming he doesnt believe in.. so he can sell more steaks,614570 +"@Salon If Trump pulls the US out of the international climate change agreemeent, the backlash will dwarf what he ha… https://t.co/gNwm1kS7ZO",240361 +RT @jkzsells: If global warming isn't real then how come the Ice Climbers aren't in Smash 4,179722 +RT @tutticontenti: Arctic ice melt could trigger uncontrollable climate change at global level https://t.co/iaUwmO1L1T,221023 +"RT @davidaxelrod: Shouldn't we start naming these repeated Storms-of-the-Century after key climate change deniers? +Hurricane Donald. +Hurric…",147626 +"Lend your voice to our planet, our home and be part of making climate change history + https://t.co/b6R0MxAyNP by #NiliMajumder",82010 +"Devastating global warming is inevitable due to inaction of international community, says leading economist https://t.co/seQaREaK6G",660216 +"RT @AP_Politics: Trump working to unravel Obama efforts on global warming, +by @MatthewDalyWDC and @colvinj +https://t.co/1WFXVgxM9B",954078 +RT @JSTORPlants: Outwitting climate change with a plant 'dimmer'? @TU_Muenchen#PlantsAreCool https://t.co/aFtMDL01Pd https://t.co/f7Z9swVVek,201149 +"RT @nytimes: In a new ad for The New York Times, Josh Haner reflects on the effects of climate change on polar bears. https://t.co/IVkEAwo1…",362596 +RT @RacingXtinction: One of the easiest ways to help combat climate change is to stop eating beef #BeforeTheFlood #RacingExtinction https:/…,306287 +RT @travisgrossi: All the people who don't believe in the science of global warming should look directly at the eclipse and see what happen…,480623 +"RT @BNONews: President-elect Trump is examining how to withdraw from historic Paris deal that seeks to reduce climate change, source tells…",83287 +RT @NatGeoPhotos: Explore eye-opening ways that climate change has begun to affect our planet: https://t.co/w7wSJjWbaj https://t.co/wrHxW53…,860488 +"RT @WendyandCharles: YourNewBooks: Androids Rule The World due to climate change, but not for long. #scifi #99c … https://t.co/dJTV585bz0",659668 +RT @lauralhaynes: I'm an #actuallivingscientist! I study past climate change and ocean acidification using tiny zooplankton shells…,443467 +"RT @nytimes: Americans are eating less beef, and that might help in the fight against climate change https://t.co/ZsY4wbRKcR",401669 +@jamesrbuk @JonnElledge @dickdotcom It reminds me of that ad for climate change action where a school teacher blew… https://t.co/WsqDTCc30A,605414 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,411340 +#pos 'Trump rolls back Obama-era climate change policies' https://t.co/mLRtf2r3vA,6215 +RT @Budz442Bud: Don't be fooled by the daily BS trump is about Russia and the money he plans to make off global warming & Siberian…,34173 +RT @NotJoshEarnest: Hijackers are threatening to blow up a plane in Malta. Let's hold off on blaming climate change until we know for sure.,927611 +"EPA chief wants his useless climate change 'debate' televised, and I need a drink https://t.co/4YXRDhLLfD #tech… https://t.co/9yoSNkSVKb",417370 +"RT @tealC17: Humans are causing the sixth mass extinction- some causes are climate change, agriculture, wildlife crime, pollutio… ",829063 +RT @washingtonpost: How climate change could be breaking up a 200-million-year-old relationship https://t.co/r6fsGwC4nK,955137 +RT @WIRED: This is what pulling out of the Paris Agreement means for climate change—and America https://t.co/HYlt4LTyzn,974180 +RT @AstroKatie: Providing access to preventative healthcare is cheaper than letting people get sick. Mitigating climate change is cheaper t…,513478 +Tech and cash is not enough when it comes to health and climate change via @mashable https://t.co/RyU1sogkxs https://t.co/QQ750OEkml,63637 +RT @KajEmbren: A man who rejects settled science on climate change should not lead the EPA - Via @washingtonpost #climatechange https://t.…,3608 +RT @HuffingtonPost: Trump says 'nobody really knows' if climate change is real (It is.) https://t.co/feVtU9oQlm https://t.co/oiUHYkEUbj,143481 +RT @guardian: ‘Shell knew’: oil giant's 1991 film warned of climate change danger https://t.co/UTnCGwO9GA,279637 +"No, it's been horrendous to watch and our POS government is ran by money hungry climate change deniers so disasters… https://t.co/nO4cLiV9To",12633 +Lakes worldwide feel the heat from climate change https://t.co/J2gpTOOVQH via @AddThis,91354 +RT @JacksonSeattle: Says the man who doesn't believe in global warming... https://t.co/8rv9F7c7fR,456539 +Idc what the data says global warming is real to what extent no one knows but environment or jobs tough call can't have both yet,103459 +"RT @wwf_uk: Great reactions to our Polar Bear #aprilfools. Good fun, but climate change impact on arctic is sadly very real. https://t.co/…",724466 +"The change has been so drastic in Colorado my frequent snarky phrase of the year is, “oh but don’t worry, global warming isn’t real”",917465 +Green News: EU requires pension funds to assess climate change risks https://t.co/0n5qMab0jv,677645 +@KellyannePolls @Grammy8 no Russia did not hack#if Trump walked on water they would say he can't swim or blame global warming 4 frozen water,625671 +RT @kirillklip: #China the Center of #Lithium Universe becomes the driving force for climate change actions with its New Energy Plan https:…,368134 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,418287 +Signs of climate change at Arctic tree line - EarthSky https://t.co/BKNBWW12w1,830297 +"RT @McFaul: Please @realDonaldTrump , study the long term implications of climate change. I know you care about conflict & mig…",850990 +"RT @Oxfam: Last year, 190+ countries signed the #ParisAgreement promising help to those worst hit by climate change. Promises…",99241 +"RT @PeterSinger: I talked to @Ecosia about climate change, environmental action, ethical business, and pleasure. +https://t.co/JPQjudsasu",713539 +RT @HuffingtonPost: National park defies Trump with climate change facts https://t.co/az2ifNOpDl https://t.co/CDtwqP1LOz,776332 +"RT @_TheKingLeo_: Republican logic: Renewable resources are imaginary, like climate change https://t.co/orN3DfTUZ0",611692 +RT @katiecouric: These kids sued the government to demand climate change action: https://t.co/kfwD0QKVyX,378145 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,692646 +RT @lliiiiizzzzzzz: sad that well renowned scientists who devote their life to scientific research on climate change still have to argue w/…,551222 +"80% of petroleum geochemists don't believe climate change is a serious problem' -- still a bad analogy, but one le… https://t.co/WpifWHn065",41841 +"#BreakingNews In race to curb climate change, cities outpace governments: https://t.co/OTOmn7xyMr https://t.co/yTHvrelJiQ",676647 +"RT @AndyBrown1_: Earth could hit 1.5 degrees of global warming in just nine years, scientists say @Independent https://t.co/bXOWHhqmdr",964118 +"RT @bennydiego: Trump has spouted misogynistic, racist, xenophobic & climate change-denying views every step of the way. I do not wish him…",829668 +Michael Barone: Lukewarm and partisan on global warming https://t.co/vi5J4OuZCk,416481 +#Mitigating global warming by CO2 storage? Check for continental stress https://t.co/7U99DBscXh,585188 +"RT @CNN: President Trump has long been skeptical of climate change, often saying that it isn't real https://t.co/JuBuekL1aD https://t.co/YQ…",119077 +RT @Reuters_Davos: Trudeau to DiCaprio: Shush on climate change! https://t.co/rA6AXLXF8u #Davos #WEF16 https://t.co/iJt0MTfQfG,122135 +"RT @TheRoot: Environmental Protection Agency head, Scott Pruitt, continues to deny climate change: https://t.co/9NCnvq7hoM https://t.co/tZ…",541838 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,176060 +RT @Janefonda: If you're in your room silently panicking about climate change and Trump--join us in DC on April 29. Group therapy! https://…,864487 +Using the Freyer model to deepen our understanding of climate change. https://t.co/6KC5pzQcqT,751214 +"If you can watch this video, and still believe in the global warming scam - then you are an idiot. +https://t.co/p9tOXEpQPV",219125 +Concerns global warming 'worse than thought' https://t.co/5xpNmACh4P https://t.co/TM5oF9ZZ7J,660479 +RT @kwilli1046: CNN's B.Stelter destroyed by Weather Channel founder John Coleman over global warming. This deserves endless retweet https:…,490868 +RT @AJBiden14: People who believe in man made 'climate change' are also 500% more likely to believe Nigerian prince emails.,826967 +RT @drvox: 1. Here's an annoying dynamic in US politics. It goes like this: a) pigeonhole climate change as an 'environmental problem.' b)…,129768 +"RT @Gus_802: Enjoy your new climate change denier EPA administrator. + +'Keep it in the ground!' + +HAHAHAHAHAHA!",750892 +"RT @RFCSwitcheroo: 6.2 earthquake in NZ shortly followed by 6.2 quake in Argentina. But don't worry folks, I'm sure climate change has noth…",720402 +@ajthompson13 @ArbyHyde @kaupapa @johnkeypm @TVONENZ @Vance world's elite are doing as much about that as they're doing about climate change,453224 +"RT @BuckyIsotope: TRUMP: climate change is a hoax. Muslims and Mexicans are all criminals. I am your new god. +MATTHEW MCCONAUGHEY: alright…",704902 +Signs of climate change at Arctic tree line - EarthSky https://t.co/bDPtVTNHav,796499 +"Many of my fair-weather friends have abandoned me. + +I blame climate change.",533138 +RT @teamcobynigeria: Technology isn't our sole salvation in tackling climate change https://t.co/u4ovzTaNT1 #GrnBz via @GreenBiz @Ygurgoz @…,751954 +RT @NBCNews: World powers line up against Trump on climate change https://t.co/2OZcB3kacs https://t.co/KyZiUr5sHb,654466 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",379806 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",584321 +Franciacorta embraces forgotten grape to fight climate change - Decanter https://t.co/McdFIHy0G0 via @decanter,21580 +Via @sejorg- EPA head casts doubt on ‘supposed’ threat from climate change - @thehill https://t.co/aIzQwu6F7l,628187 +"RT @TheStranger: There is no getting over or under climate change. +https://t.co/jPdbQvEJtn",604103 +RT @AJEnglish: Will a Trump presidency set back the fight against climate change? Share with us your thoughts below #COP22,324896 +RT @FAOForestry: #nowreading #Forests fight global warming in ways more important than previously understood https://t.co/sr8GsXIGir…,403714 +"RT @scividence: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming +https://t.co/cNFM27fazR",679294 +"RT @WilDonnelly: Irma has exceeded theoretical max intensity. I'm sure it has nothing 2 do w/ climate change, just God punishing som…",288757 +@Valefigu 'climate change isn't real !!!',885811 +"RT @AskRaushan: #beefban can mitigate climate change: US researchers +https://t.co/8bMoTzLoqw",87060 +"The White House calls climate change research a 'waste.' Actually, it's required by law https://t.co/2IzNL1juGH",226855 +1/x The potential case for why HAVING kids may be a better answer for solving climate change: https://t.co/Hxq5fCrQfW,208873 +@_lsm3000 @lsm3000 and ppl who claim to care about climate change but don't change any of the daily habits to contribute less 😜😜,385795 +RT @weathernetwork: New study shows future of Lyme disease in Canada and how climate change could fuel the increase of infected ticks:…,36354 +"Underwater volcanoes, not climate change, reason behind melting of West Antarctic Ice Sheet . . . Haaa Ha + +https://t.co/lBg4R6zfqu",231516 +WIRED: Rex Tillerson's confirmation hearing did not inspire confidence in the US role in fighting climate change https://t.co/nDO75xFhu6,898881 +@NancyPelosi we should debate things that matter- ok let's debate the lie of climate change! Liberals have lost there ability to reason !,439774 +@jacksonbrattain We were talking about climate change though too ��,41702 +Agriculture victim of and solution to climate change https://t.co/FYTxcAp8PY,697039 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",118268 +"#TeamFollowBack Climate talks: 'Save us' from global warming, US urged https://t.co/KIRJJHb1xa #AutoFollowback",230412 +"RT @mch7576: Trump appointees on climate change: Not a hoax, but not a big deal either https://t.co/Ba2StC1w6m",401943 +RT @Toby_Johnson: China warns Trump against abandoning climate change deal #COP22 https://t.co/hwCi1hwRc7,317235 +RT @SladeWentworth: I guess I shouldn't be surprised that climate change deniers exist when I still see so many seatbelt deniers on the roa…,190442 +RT @guardian: What Shell knew about climate change in 1991 – video explainer https://t.co/VRhkQKMvg0,324957 +Fighting climate change could trigger a massive financial crash https://t.co/5F9b840L2S,211902 +"RT @coalaction: BREAKING “We think #climate change represents a material risk” - NZ Super Fund divests from oil, gas, #coal co's +https://t…",719624 +@TL_Wiese @HillaryClinton @realDonaldTrump He's hot headed and vindictive. He's pro use of nukes. He thinks climate change is a hoax.,422031 +@NatGeo meanwhile the dinosaurs don't give a 💩about your global warming/destruction caused by humans posts...,941377 +"How IIoT Will help on disaster recovery due to climate change? Thousands of possibilities, climate stations with data analytics plus PI.",125441 +RT @Uber_Pix: Here you can see who the victims of global warming are ... https://t.co/HfJESXAjSh,242012 +My answer to Why are there people who deny global warming due to human factors when more than 90% of scientists adh… https://t.co/1bHzTzUtaB,242306 +@ZBC21093 @COLRICHARDKEMP I don't think anyone debates climate change. The debate is over the extent to which humans are responsible.,342079 +Sydney mayor Clover Moore orders urgent action on climate change https://t.co/keJdmhvDJ3 via @smh,656786 +"We must do more than tweet about this . +Southern Africa cries for help as El Niño and climate change savage harvest https://t.co/iRpz7EHfRc",665159 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,449945 +RT @NickMcKim: Oh dear. I said in the Senate today that Trump thinks climate change is a Chinese hoax. Nationals Senator Barry O'Sullivan s…,879883 +Tinder that this drought is over does not mean the ACTUAL DROUGHT from global climate change is over,749307 +"RT @jswatz: For those who saw a sign of moderated views on climate change in E.P.A. chief Pruitt's confirmation hearing: uh, no. https://t.…",66606 +RT @TIME: 50 years ago this week: Worry over climate change has already begun https://t.co/W7tGj7DxbC,635824 +Outwitting climate change with a plant 'dimmer'? - Science Daily https://t.co/M6kMzn3DsG,810058 +"@ChrisNelsonMMM @KendraWrites @MaraWilson Ah, yes, I like to spread global warming on toast with butter.",281353 +RT @davidsiders: More GOP lawmakers bucking their party on climate change https://t.co/TUOCDiluiq via @politico,708472 +"@HavokMiscreant @neiltyson You have to take responsibility for your contribution to climate change. +Stop blaming i… https://t.co/yEbESQFoXX",819973 +US 'forces G20 to drop any mention of climate change' in joint statement https://t.co/Tj2oRyPfVU,867318 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,608853 +@SpillaneMj The website referenced was sent to me by C02 = global warming supporters. Read all the contributions on the Blog thereunder.,972226 +.@realDonaldTrump climate change doesn't care if you believe in it or not. the Venice of USA https://t.co/V8Yw8sYcAQ #climatechange #floods,800498 +"RT @MichaelGaree: BILL MAHER: Pence a guy who doesn't believe in global warming OR evolution, but DOES believe in efficacy of 'gay co…",793922 +"RT @Greenpeace: More than 4,000 species of snowmen were threatened by climate change in 2016 alone https://t.co/fKV7aKiCvK https://t.co/u3y…",198481 +"RT @deetut: I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood +https://t.co/tmSLKN3eNP",252111 +"2016: the year climate change came home: During the hottest year on record, Karl Mathiesen travelled to Tasmania… https://t.co/cFhAHVtvoD",325911 +Another ridiculous scare tactic: 2 billion climate change refugees by 2100 | Watts Up With That? https://t.co/kJL4Tr4XVt,485103 +RT @Luke4Tech: Obama wasn't very vocal when all these attacks happened he thought global warming was more important ... https://t.co/q1aSRS…,672238 +RT @mhaklay: Help a study of visualisation of data quality in climate change maps https://t.co/EGXgAsrwqc from @giva_uzh,18275 +RT @AltNatParkSer: Most of the leading scientific organizations worldwide have issued public statements endorsing climate change findings.…,144361 +RT @PaulRogersSJMN: Trump administration tells EPA to cut climate change page from EPA website https://t.co/TQxHuwdp7z via @Reuters…,995474 +Just talking about global warming... nothing else... who no like beta thing... https://t.co/F2JsKCAxqt,392717 +A French scientist’s research attributes most of the global warming to solar activity - https://t.co/eZlHh9NCs3 https://t.co/N6wyZ0Mgj3,308265 +@twilightrevery cus his ideals include convulsive therapy and eradicating budget for climate change,39492 +"RT @JamesSurowiecki: (Even if climate change has gone practically unmentioned during this entire campaign, it still matters more than anyth…",69444 +Nobody has to 'believe in' climate change -- it's not 'the emperor's new clothes.' Just read this! https://t.co/GBg1zalLiM,12457 +@magesoren to be fair climate change is basically the human race wiping itself out,212664 +"RT @_AlexHirsch: Simple. I believe in climate change, a woman's right to choose, gun safety & the wealthy paying their fair share. T…",816340 +"In interviews, Trump's EPA pick questioned climate change, said Obama EPA rules would be undone @CNNPolitics https://t.co/SKxQ0jFwfV",606236 +our current EPA as well as CEO of a major oil company-just told the world that Carbon Dioxide is not the leading cause of global warming 🤔,194914 +"RT @margotoge: Even #Exxon with his tainted history on #climate change asks Trump not to ditch Paris climate deal - Mar. 29, 2017 https://t…",216293 +"I used unrefined icing sugar to dust my Christmas cake scene and now it just looks like a desert. +Bloody global warming. +#sandstorm",303599 +RT @TheCourtKim: me enjoying the weather that global warming has blessed us with 😍 https://t.co/q6gsxQLuR3,343159 +You cannot recycle your way out of climate change.' @doctorow #SXSW,206331 +Seems only good scenario for climate change depends on science & engineering finding something new while we reduce greenhouse gas production,524269 +Publishing opinion pieces denouncing climate change can be damaging. https://t.co/OW5LbtQ1h6,434114 +The weather outside is frightful thanks to #climate change and the polar vortex - @CBCNews https://t.co/0BeGDdoDfi,86292 +@davidfrum Read article on creation of extinct biome park~pls explain what the correlation of Woolley Mammoths & reversing climate change is,987282 +RT @climatehawk1: Uninhabitable Earth: When will #climate change make it too hot for humans? | @dwallacewells @NYmag…,562537 +RT @Tat_Loo: 2009 he said Obama had 4 y left to save the world from climate change. 2015 he said Obama's climate policies were '…,404732 +"RT @nktpnd: Even a 4-year Trump presidency would be a death knell for reversing the negative effects of climate change, by the way. #Electi…",764897 +RT @geogabout: How tourism is changing in Iceland due to climate change https://t.co/t9V6dCokxY,816811 +One fifth of the worlds coal burning plants are in the USA. Trump is bringing back coal. Republicans deny global warming science. Brilliant!,377492 +UK slashes number of Foreign Office climate change staff https://t.co/FmILaDcWLc,46126 +"Trump may not change his stance, but climate change is real. https://t.co/zOeAOVFshA",637184 +Budgeting for climate change in water resources https://t.co/rw9nNRca2v https://t.co/tpfE7GtGH0,432808 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,314173 +"RT @EricHolthaus: We’re not just getting freak weather anymore. We’re getting freak seasons. + +On blizzards and climate change: + +https://t.c…",515732 +"RT @jamestaranto: Without meaning to, Steve Waldman admits 'climate change' is religion, not science. https://t.co/88niLPWmp0 https://t.co/…",838114 +RT @charliekirk11: When will liberals finally agreeing that ISIS is a bigger threat than climate change?,66701 +RT @EuroGeosciences: Record-breaking #Arctic warmth ‘extremely unlikely’ without climate change. Via @CarbonBrief https://t.co/p2OJgjv8M5 h…,621746 +"RT @MindTripper13: trump dismantles climate change regulations, saddest day for humanity & animals and plants: present rate of... https://t…",266646 +RT @Warsie34: @A1yosha @le_skooks well we are vasically set in the hunget games trajectory given Trump says hell sabotage climate change ag…,560557 +RT @inesanma: At @Crux: Pope Francis urges scientist to lead the path against climate change https://t.co/ToCnCqooya https://t.co/1i3wYGtM0V,793372 +Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/hBoXXbPRHZ,913750 +RT @MJShircliff: That is not 'good' that is climate change https://t.co/dmOIwFPSBM,139199 +Care about climate change mitigation? Ask what steps a business is taking to address their contribution.… https://t.co/AWg6bwSbuK,420137 +/. the world on ways to address climate change through innovation of energy and environmental technologies including their deployment.',292903 +"RT @peteswildlife: Top story: #keeptheban UK to 'scale down' climate change and illegal wildlife m… https://t.co/mUiVSSId7h, see more https…",651987 +RT @businessinsider: KERRY: Trump's views on climate change might change once he takes office https://t.co/RBZGOvuYiH https://t.co/qir0GvPC…,157858 +Scott Pruitt's office deluged with angry callers after he questions the science of global warming https://t.co/8SbCXbVr7y via @nuzzel,270569 +Freshman Democrat Kamala Harris grills CIA director nominee on climate change https://t.co/h0FVpLVmMR via @DCExaminer,362026 +Also #r4today framed the denier's viewpoint as 'not believing humans at least part of cause of climate change'. https://t.co/XmMyFAUSsd,443999 +"RT @WorldfNature: Malcolm Roberts' climate change press conference starts bad, ends even worse - The Sydney Morning Herald…",588978 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,211628 +RT @ajplus: Indigenous activist Xiuhtezcatl Martinez is suing the federal government to demand action on climate change. https://t.co/PnjHO…,609004 +"RT @CarolineLucas: Donald #Trump isn't just bad news for the US – when it comes to his #climate change beliefs, he's a danger to us all htt…",482845 +"@SenSanders No Sanders,you helped Trump win by implying Clinton was cheating,so now any ACTION on climate change is over.Take responsibility",598339 +RT @THECAROLDANVERS: liberals are so annoying... have fun working to fight climate change w/ a person who believes climate change is a m…,943724 +"@JlackBesus he doesn't believe in climate change, his running mate support conversion therapy for lbgt humans.",794232 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming… https://t.co/8nYhgYZ3i2,272594 +"RT @UNEP: As climate change displaces everything from moose to microbes, it’s affecting human foods, businesses&diseases. Rea…",899087 +RT @ABC: New York billionaire Michael Bloomberg urges world leaders not to follow Pres. Trump's lead on climate change.…,429784 +Mass migration as a result of climate change is predicted to become a much greater problem | Fiona Harvey #QandA https://t.co/8vHBiI8TvW,760840 +The most important thing about global warming is this. Whether humans are responsible for the bulk of climate change is going to be left to,28149 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,808742 +RT @IFAWUK: Tiny endangered African penguins need our help to survive in the face of climate change https://t.co/vEdG8YZyL3…,150908 +New Zealanders' beliefs in climate change and that humans are causing it are increasing over time. https://t.co/vOrQoJiWCT,768682 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",820329 +"RT @SenSanders: LIVE: Join me and @billmckibben to talk about the movement to combat climate change. +https://t.co/KwfkWFzLWH https://t.co/1…",173226 +"Congratulations on your win, @realDonaldTrump. Please watch climate change doc @HOWTOLETGOMOVIE before you back out of Paris agreement.#maga",259838 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",368871 +"RT @Brule_en_Lenfer: ppl getting all heated about global warming seems a bit ironic, dont ya think?",855825 +".@Verliswolf global warming will kill more than hitler ever did, so i really don't see the difference",786513 +RT @VICE: Americans told the world that Trump won't stop progress on climate change: https://t.co/LAOILWzape https://t.co/D2ZF6zPWYR,156853 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/eWV8LYk1jY,789157 +"This is criminal: Trump, Turnbull cut from the same cloth: EPA head Pruitt denies that CO2 causes global warming https://t.co/bzZoCZn193",5991 +https://t.co/hRruM3MKRY ; Worrying trend related to climate change,734105 +RT @C__G___: “Niggas asked me what my inspiration was I told them global warmingâ€,30992 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,467775 +RT @_marisamanchac: Stone Cold Steve Austin is the key to stopping climate change,111368 +RT @Bill_Nye_Tho: leave all that 'climate change aint real' fuckboy shit in 2016,973179 +"Pope, Orthodox leader make climate change appeal to 'heal wounded creation' https://t.co/rvgtDgKSKL",861404 +Wood Stoves a serious threat to health and accelerate climate change https://t.co/LzBtJ7acvu @VanIslandHealth… https://t.co/iarJAx8pA1,95859 +RT @WDeanShook: Top university stole millions from taxpayers by faking global warming research - https://t.co/BCXPHKoarg https://t.co/e01di…,640918 +RT @newscientist: Hurricane Irma’s epic size is being fuelled by global warming https://t.co/l1vPLmyDQR https://t.co/5X7OK3GXrJ,222268 +RT @Obarti: @mark_slusher2 @FoxNews @krauthammer A Cold War is a very good way to offset global warming.,715936 +@OceanSector @RollingOnX like global warming?,615609 +Trump says 'nobody really knows' if climate change is real https://t.co/7fEofemZK6,964807 +"RT @MotherAtSea: Because I may not be able to say it in 3 months: global warming, global warming, global warming, global warming, global w…",950784 +radical islam is more of a problem than climate change,754178 +RT @LangBanks: This is great to see... @NicolaSturgeon to sign #climate change agreement with California's governor…,897363 +RT @USFreedomArmy: Or maybe it is just that the global warming nuts are being given a sign. Enlist with us at https://t.co/oSPeY3QMpH.…,389753 +"Stoving carbon in soils of crop, grazing & rangelands offers ag's highest potedtial source of climate change mitigation.",968374 +UPDATE 3-Tillerson gives nod at Arctic meet to climate change action https://t.co/3Bmvjzdey5 https://t.co/NzA4FONa5w,610718 +RT @kgrandia: Gov. Jerry Brown calls for 'countermovement' against Trump's 'colossal mistake' on #climate change https://t.co/2Z383k8Uec,821120 +"RT @RockedReviews: No, I'm definitely worried about the real global warming. https://t.co/LkOiGP0Nq6",792286 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,306378 +@MrTedLouis @Hjbenavi927 climate change is real yes but the jury is out as to whether we r directly impact it or if its just mother nature.,944027 +More Republican lawmakers bucking their party on climate change https://t.co/mE2gKZF6HP #climatechange,672988 +@LessGovMoreFun You can't equate global warming entirely with human activity. Climate cycles have gone on for milli… https://t.co/uBV7zZi5C8,926873 +"Climate talks: 'Save us' from global warming, US urged https://t.co/1g6GvOHazT",576218 +RT @SenSanders: President Trump: Stop acting like climate change is a hoax and taking our country back decades by gutting environmental pro…,614007 +"RT @jon_bartley: How many more headlines like this before the Govt takes climate change seriously? #stateofclimate +https://t.co/6RIZEgEcQO",548378 +"@ErikWemple There is no 'debate' regarding climate change, at least no need for any since we are at about 97% agreement.",768017 +@johnric62335732 @LoniasLLC @CNN If I made a list of things we r in danger of climate change would be way way down… https://t.co/3jOQqfSIbn,654397 +Chelsea Clinton blames climate change for causing diabetes https://t.co/3x8sy1MZ6F,235861 +RT @ClimateGroup: Watch @YEARSofLIVING's newest season on @NatGeoChannel to see the solutions to climate change #YEARSproject https://t.co/…,391370 +Wide split between #Republicans and #Democrats when it comes to #climate change: https://t.co/F9fol093Sg https://t.co/2zrNBExKOH,186071 +"RT @MikeBloomberg: Cities, businesses, and citizens can lead – and win – the battle against climate change. https://t.co/NdxtLLZEAf",824006 +A senator's long fight to show the science on climate change is 'mixed' https://t.co/ODKGv5vorc https://t.co/4Odrw91BIC,663965 +"RT @Greenpeace: Have you ever wondered how to respond to climate change deniers? +Click here: https://t.co/2obfyt8FzW https://t.co/tfQ9Uu1K…",823710 +Secretary of state nominee Rex Tillerson shows his true colors on climate change https://t.co/omy83q7H3c https://t.co/mlAHjQ18j2 Buy #che…,378005 +We are on the brink of environmental calamity and one candidate puts climate change in scare quotes. All you need to decide. #voterfraud,730502 +RT @billmckibben: Mildly Disturbing Headline Dept: 'Stratosphere shrinks as record breaking temps continue due to climate change' https://t…,314573 +"RT @SteveSGoddard: - @NASA has tripled global warming since the year 2000, during a time when satellites show no temperature increase.…",385871 +"RT @IIED: If you were following the #ForClimateActionUg conversation last week on climate change in #Uganda, here's a summar… ",434233 +@Sammy_Roth My blog is a mess. But it was practice for publishing my first piece on cotton and climate change at Ensia in February.,802739 +RT @RobertNance287: 'The challenges of conservation and combating climate change are connected. They’re linked.' President Obama. Yes t…,521973 +RT @ScottAdamsSays: Show this article to a climate change worrier and watch the cognitive dissonance happen. It will be fun. (Seriously…,875614 +@concupiscent climate change isn't real though,307688 +"RT @RogerAPielkeSr: 'Florida is not suffering from sea-level rise..,but from subsidence (sinking) of land, unrelated to global warming… ",331041 +"RT @ajponderbws: @MaryStGeorge Time & again conservative policy ignores the science, climate change is the obvious example, but social poli…",901681 +Protected: EXECUTIVE PERSPECTIVE: No more denying: climate change action and gender equality and women’s empowermen… https://t.co/M7xwsgHNrg,465021 +"RT @juiceDiem: Before I go to bed: + +If you think flag burning is a bigger issue than refuting scientific evidence of climate change, you ne…",247820 +"Even the earth has rights in #Islam , so treat it well and oppose global warming. #Mercy",203128 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,229310 +RT @Salon: The State Department rewrote its climate change page https://t.co/aeRCJZT0pB,227668 +"What a silly person you are, the founder of weather TV stated loud & clear on CNN that climate change is a hoax shutting the mouths of EWNN",970187 +"RT @UNICEFEducation: 50M children are on the move and out of the classroom - many fleeing war, poverty & climate change…",948579 +And still republicans will look you DEAD IN THE EYE and say global warming is a myth ������������ https://t.co/yTMB9nUmbT,240077 +"RT @DrJillStein: The #GreenNewDeal: +👷ðŸ¾ Jobs for all who need work +☀ï¸ 100% clean energy +🌎 halt climate change +✌ðŸ¼ wars for oil obsolet…",792835 +"RT @greenpeacepress: G7 Summit outcome shows Trump isolated on climate change - +Greenpeace reaction https://t.co/fD920yYz4p #G7Summit https…",541891 +"EPA chief denies carbon dioxide is main cause of global warming and.. wait, what ?: Well… https://t.co/Od3ahmk5zi",376905 +@pulbora dahil ba sa climate change? 😅😂 nagtatampo ako sayo di mo pinapansin yung tinag ko sayo sa fb!!!,420718 +"RT @hannahjwaters: An early-season tropical storm flooded Gulf of Mexico beaches, drowning shorebird chicks. This is climate change. https:…",462840 +RT @350: We will NOT let you take America back to a time when climate change denial was the norm from our top politicians: https://t.co/DJV…,88860 +RT @theblaze: Monster snowstorm in Colorado forces postponement of climate change & global warming rally https://t.co/bxNjmu2cYS https://t.…,83832 +RT @atlasobscura: A new sculpture calls attention to climate change in the centuries-old city it threatens https://t.co/yICnmS9Tuh,739920 +"RT @1o5CleanEnergy: On climate change, US & G20 priorities no longer align: What to expect G20 Hamburg Summit https://t.co/x9OkCiKR2S @g7_g…",787253 +@MusickAndrew @bogieboris @DaysOfTrump Think of people with no jobs and China making up climate change then you'd know #alternativefacts,105649 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,4602 +RT @AarKuNine: Denying climate change is like me pretending I don't have an assignment due on Monday while aggressively Netflixing.,765248 +"RT @graham_foto: We're also paying you to do nothing but deny climate change every now and then. You're a grade A moron, Sammy. + +https://t.…",112884 +RT @Netmeetme: Bill Nye slams CNN for putting climate change skeptic on #EarthDay panel https://t.co/LzTTgzTdgh via @HuffPostGreen,732506 +"RT @emorwee: Google, Apple, Microsoft, and Amazon statement on Trump's decision to roll back Obama's climate change regulations https://t.c…",666883 +#science Green Republicans confront climate change denial https://t.co/iPshlxqXLb https://t.co/EgljHygwLm #News #Technology #aws #startup,539233 +RT @AniDasguptaWRI: For too long we talked about #climate change as a GLOBAL problem. To succeed we have to see it as OUR problem https://t…,715698 +"RT @zeynep: True, evacuating millions isn't easy either. But it is something we will have to consider—esp. with climate change. https://t.c…",694079 +@It_Is_I_God @zamianparsons @RPCreativeGroup @realDonaldTrump so do you believe climate change is a hoax? And the earth is flat? Chemtrails?,6025 +"RT @Newsweek: Trump's policies on climate change are strongly opposed by Americans, a new poll indicates https://t.co/t1Qj84D6q3 https://t.…",422546 +@jesuiah01 @cheatneros @yagirlbushra I like that you bring up science but I bet that you deny global warming. Pleas… https://t.co/vjgyTczndu,926173 +"BRICS meeting highlights climate change, trade, terrorism https://t.co/4QChKgnwjJ",303801 +"Houston fears climate change will cause catastrophic flooding: 'It's not if, it's when' https://t.co/GjybP3uhpV... https://t.co/6RxsSpt9WK",179173 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,339152 +"Ppl who deny climate change, 'If I was a a scientist I'd be absolutely pissed every day of my life' @LeoDiCaprio #preach @BeforeTheFlood_",225522 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",277373 +@Lazarus1940 �� damn climate change!,413184 +"Latest climate change scare story: Rising oceans to produce '2 billion climate refugees' by the year 2100, alarmis… https://t.co/h6qs57tJsW",607498 +"RT @Hannahsierraa_: Documentary w Leonardo DiCaprio about climate change. Free to watch for a few more days, so interesting & important +htt…",811297 +"@realDonaldTrump you're an ass. Coal is not the future, fossil fuels are nonrenewable/global warming is real. We were leaders in this. Ass.",72944 +RT @MissionBlue: How can Indonesia's reefs resist #climate change? One conservationist aims to find out: https://t.co/e2qabTVqdQ…,868808 +RT @JulianBurnside: Senator Paterson skilfully evaded dealing with the major point: accepting the reality of climate change #qanda,668850 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/OY7A6yaihp https://t.co/8AqRmejeF2,394292 +"RT @cnni: After previously calling it a 'hoax,' Trump says there's 'some connectivity' between climate change & human activit… ",222476 +RT @gabriellechan: Australia being 'left behind' by global momentum on climate change by @grhutchens https://t.co/xZjJogCHxG,571858 +Feels like -21. Take that global warming.' - Climate deniers,676920 +"RT @kylegriffin1: Trump's likely pick for top USDA scientist never took a grad class in science, is openly skeptical of climate change http…",171213 +"RT @antonioguterres: Pollution, overfishing and the effects of climate change are severely damaging the health of our oceans.…",231952 +"Anyone cover climate change in their development econ courses? Adding a new unit to my syllabus, but haven't seen it in other syllabi ...",644763 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,711281 +1 day to go. May won't stand up to Trump over the climate change accord. Vote for our planet. Vote for a strong leader. #VoteLabour #GE2017,329512 +RT @WBG_Climate: How does innovation drive #climateaction? Watch @WorldBank climate change director James Close:…,351285 +Trump\'s pick to run NASA is a climate change skeptic(Orlando news) https://t.co/E9jKKhfQJg,780051 +"RT @VICE: Nearly 60,000 suicides in India linked to global warming: https://t.co/tLSxb3MoHM https://t.co/DPqid65Gwj",494771 +"RT @kauffeemann: The weather channel is responsible for global warming. +#FakeFakeNewsFacts",276685 +@kurteichenwald Not to mention Trump and family who wrote a letter in 2009 urging Obama to act on climate change.,458846 +"RT @climatehawk1: With 'nowhere to run to,' women farmers battling #climate change in Zimbabwe | @irinnews https://t.co/brO5ZnIumg…",5049 +"@stevendeknight I was going to make a joke about Bizarro not being a climate change denier, but I guess he would be, wouldn't he?",966777 +"@_mercurialgirl And another 5-8 inches tomorrow, apparently! But climate change isn't real~~",610678 +RT @SabrinaSiddiqui: OMB director Mick Mulvaney on climate change: 'We’re not spending money on that anymore. We consider that to be a wast…,821446 +"RT @Saudi_Aramco: Addressing climate change is a critical imperative for Saudi Aramco, CEO Nasser says at KAPSARC Energy Dialogue",987377 +RT @TeamTrump: .@realDonaldTrump will cut taxes & cancel billions in global warming payments to the UN so we can use that money to…,766106 +RT @TIME: Robert Redford: 'The front lines of fighting climate change? They're your hometown' https://t.co/WVySgZRisF,169484 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,260149 +"Unfortunately for climate deniers, 'actual scientists' explain thoroughly how we cause climate change.… https://t.co/VRRfJmRIMl",593061 +RT @kiahbailey_: It's 60 degrees today and snowing tomorrow but y'all president still doesn't believe in climate change.,734995 +RT @tommy_manpower: #IAmAClimateChangeDenier when global warming proved false they decided climate change. Like Transvestite to Transgender…,209613 +Comply DOE! You work for #WeThePeople🔀U.S. Energy Department balks at Trump request for names on climate change https://t.co/ee82rJ5Gyg,626252 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,667510 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,743735 +RT @ConservationOrg: 5 things you might not know about mountains & climate change >> https://t.co/QnNNXtPZ5g #InternationalMountainDay http…,805447 +Here are our top 8 climate change stories of 2017 - Washington Post https://t.co/yyEJtL5yfl,323315 +Alarmists say global warming to blame for ‘record’ tick population — but there’s one massive problem – TheBlaze https://t.co/co9MPqeAOz,568282 +"@Mark_Baden Wow, it's warm out. +All those lives saved from treacherous winter driving conditions have global warming to thank.",637648 +RT @wef: 5 tech innovations that could save us from #climate change https://t.co/yrTgBQh7sH #wef17 https://t.co/41eSOowjYP,84755 +Donald Trump cites global warming dangers in fight to build wall at his Ireland golf course https://t.co/OJ4qE2xaNx via @YahooNews,755282 +RT @PopSci: Four things you can do to stop Trump from making climate change worse https://t.co/KuiL9XiUK3 https://t.co/4o2qaWIrZV,704830 +@EPA @POTUS and any denial of climate change is just a way for the rich to 'get projects done'cheaper &make more money for themselves,396421 +"@HuffingtonPost +There is sience to back that climate change is a hoax, but political correctness can't abide by that.",479893 +.@HeronDemarco @CurtisScoon @AviWoolf He did not care if people lost their jobs on the altar of climate change. Big mistake.,959482 +Car2go's San Diego departure a climate change setback - The San Diego Union-Tribune https://t.co/WeaVCUXxmo https://t.co/LTC2f7gpZL #Blue…,970686 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,221268 +"EPA head Pruitt: Paris climate change agreement 'all hat and no cattle' https://t.co/mZLsDYwHyk via the @FoxNews Android app +America first!",144987 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,937007 +LSE: Measuring the societal impact of research: references to climate change research in relevant policy literature https://t.co/FBzE9eqi8s,325308 +"Dear @WDNR, you're supposed to be devoted to preserving our natural resources... instead you change your climate change wording. Horrible.",550486 +RT @DanSlott: He wants 'footprints on distant worlds' but doesn't like it when NASA scientists agree that man made climate change exists.,583351 +RT @Independent: Even Nasa scientists are trying to convince Donald Trump that climate change is real https://t.co/HB37pGGGBU,737106 +"RT @ErikSolheim: Arctic voyage finds global warming impact on ice, animals - great read on the changing, fabled Northwest Passage. +https://…",6394 +President Trump's clarity on climate change has Al Gore in a panic. Guess it will be harder to profit off the greatest scientific con now.,867691 +@Phyllida1234 @guardian They should invite Trump to Buck House & put him in room with Charlie so they can discuss climate change.,786510 +@ddale8 That's a good one. Shouldn't he be out denying climate change?,157931 +"RT @JonRiley7: 'Welcome to the Trump Administration, where climate change is fake and wrestling is real.' +-- Trevor Noah",532896 +Mr. Trump @realDonaldTrump: you may not believe in climate change but your insurance company does. Be a businessman,826598 +Climate deniers blame global warming on nature. This NASA data begs to differ https://t.co/X2CnW4de54,799476 +RT @sciam: A new report identifies 12 “epicenters” where climate change could stress global security https://t.co/JWPy4esGWK,776730 +RT @frackingzionist: What if we think pizzagate hysteria and climate change hysteria are both irrational? https://t.co/j6sZBZ0bnR,880076 +imagine being a government leader & also stupid enough to flat out deny global warming ��,278774 +RT @Sensiablue: Chicago mayor Emanuel posts EPA’s deleted climate change page https://t.co/MG63GjdLJD via @politico,144722 +Report: how climate change is affecting the water cycle in Germany https://t.co/RTQXsa9wjp @physorg_com https://t.co/sitSLnUVBf,821217 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",457259 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",39408 +"The climate change on the Earth is real, not a hoax. French Pres. Hollande is very concerned about Trump's facts. US has an agreement to ...",464147 +"RT @StreetArtEyes1: Sculpture by Issac Cordal titled, 'Politicians discussing global warming.' #streetart https://t.co/kGW4UVYOe8",693720 +"RT @feistybunnygirl: Angela Merkel is a former research scientist, and Trump thinks global warming is a Chinese conspiracy theory.",401381 +Centrica has donated to US climate change-denying thinktank https://t.co/IK31koG5bY,382649 +@ragging_bull_V you think global warming is a hoax??,327761 +"RT @LeeCamp: If we subsidized the switch to clean energy as much as we subsidize big oil, we could EASILY slow or halt climate change. Why…",999519 +Trump can pull out of the Paris accord – it won’t derail the fight against global warming https://t.co/YsmpxwXJdT,109855 +The Independent: Putin echoes Trump and says humans have nothing to do with climate change https://t.co/UvNrCU5ebX … https://t.co/6LLqsgesDM,139161 +"@LeroyWhitby @SarahPalinUSA Dems prefer soy b/c beef consumption causes 'climate change'. So, they are at a disadvantage here. ��",573474 +"RT @mrbarnabyb: So Brownlee thinks tech will fix climate change, but he also removed environmental performance requirements from Ch…",276329 +"RT @peta: Meat production is a leading cause of climate change, water waste, and deforestation. If you're concerned about our…",191012 +RT @intlspectator: UNITED STATES: Trump is consulting on how to withdraw the US from the Paris climate change deal,338409 +70 per cent of Japan's biggest coral reef is dead due to global warming | The Independent https://t.co/1tzqaJ26LY,598434 +"Whether government leaders acknowledge climate change, scientists, researchers and doctors have connected the dots… https://t.co/boBluWx8Y4",318459 +RT @turbothot: global warming is just a hoax to distract us from the fact that lil wayne wore socks in a jacuzzi,285434 +Nice! Science of #climate change in one infographic https://t.co/oQmeMWxg0Q,296356 +Instead of spending billions on trumped up claim re global warming why not prepare for epic CME r EMP which could be real #foxnewsspecialist,162435 +@BryonyKimmings I think they think climate change is a natural disaster,476311 +#PriceIsWrong no one that does not view climate change as an imperative to address does not belong in this office,603693 +Global climate change and mass extinction got me feelin some type of way this morning,909464 +RT @davidsirota: Maybe NYT reporters should spend more time pressuring management to reject climate change denialism & less time insulting…,183481 +"RT @everywhereist: New rule:if your don't believe in global warming, you can't use modern medicine. You don't get to pick and choose which…",749966 +@The_Keks_Army @Bailleymarshall @LiglyCnsrvatari @devinher @Wokieleaksalt @DustinGiebel Are we talking about climate change?,642063 +RT @GUNSandcrayons: Hoodie season finally here can't tell me global warming not real bro,191936 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,516300 +"RT @nytimes: How Cooperstown, NY, became a flash point in the national debate on climate change https://t.co/TCYbqV1NUA",201656 +"RT @cinnamontoastk: Science: this is how the eclipse will happen. +Them: wow you're right. +Science: now, about global warming and vaccin…",689131 +"I'm just gonna put this out there.. If you don't believe in climate change or that racism doesn't exist, just unfollow me from life.",210664 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,715905 +"RT @AdamsFlaFan: February’s warmth, brought to you by climate change https://t.co/QyEEAxZL9N via @climatecentral",546018 +RT @2Morrow23: .@EPAScottPruitt is arguably the greatest threat to our nation/Earth. Dangerous that soemone who denies climate change is no…,316131 +"RT @veryimportant: the only good thing about global warming is that once the seas claim LA and NYC, chicago's superiority will no longer be…",780104 +"How innovation could preserve culture, as climate change uproots communities - Christian Science Monitor https://t.co/dk4aMg3MN2",941293 +@DRUDGE_REPORT @washingtonpost maybe it is the climate change that is causing liberal to be so stupid,966698 +"RT @ThomasCNGVC: Our Op-Ed was published today! In fighting climate change and oil dependence, California needs all its tools https://t.co/…",331959 +RT @RichardMunang: Africa is feeling the heat: Turning the challenges of climate change into opportunities https://t.co/0kkOYm6cyW,675148 +@DailyCaller To the confused and bewildered climate change exist. As you know ever day when you wake up. Good Luck tomorrow morning.,495010 +"Anti GMO, anti vaxx and climate change deniers. Characterized. https://t.co/5E2kfcAnPb",785573 +"RT @MurphyVincent: Listen back to my interview with @SebGorka - we discuss US-EU relations, climate change, Brexit and Donald Jr/Russia htt…",992003 +RT @TSMDoublelift: if global warming isn't real why did club penguin shut down,292482 +"@CraigRSawyer Here is the co founder of the weather channel, even he calls global warming a fraud https://t.co/UVb74tOgMI",316399 +"RT @mims: Bill Gates, Jeff Bezos, Jack Ma, and other investors launch a clean-energy fund to fight climate change https://t.co/8s6t5cYX1C",207963 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,915900 +@Krisp_y Wow ISIS or climate change?? National security should be a priority!! Good thing he is not our President!!! ����,656892 +RT @CapitalsHill: When you are storing nuts for the winter but realize there is no winter because of climate change https://t.co/Au0g5QyrgX,295105 +"Wasn't this the guy throwing snow balls on the Senate floor as evidence rebuking climate change? Nice elites there,… https://t.co/GxQqIeClqt",36492 +"@5to1pvpast @Bazza_Cuda yet if you're interested in climate change, science exploration, mental health and equal ri… https://t.co/6bZQCKL1CF",597849 +Trump's new executive orders will cut Obama's climate change policies https://t.co/AAN6b15xDQ https://t.co/fCKs6E1dnx,473441 +RT @maudnewton: Energy Department denies Trump's request for list of climate change workers. https://t.co/KXliMsOXsV,576935 +Study finds global warming could steal postcard-perfect days https://t.co/ptrLKaRxrw #AssoPress #Science,840716 +"RT @BuzzFeedNews: Obama on climate change: 'To simply deny the problem not only betrays future generations, it betrays the essential… ",777967 +RT @BruvverEccles: Surely the whole point of Christ's sacrifice was to save us from global warming? Or did I misunderstand Laudato Si'…,974517 +Donald Trump isn&#39;t scrapping climate change laws to help the working man. He&#39;s doing it ... - https://t.co/j8vWiOxC2j - -,832211 +RT @buckfynn: World leaders duped by manipulated global warming data https://t.co/AAOQIosS6n via @MailOnline,423131 +RT @insideclimate: U.S. Ag. Dept. staff were coached not to say 'climate change.' These were the alternatives & what the emails said https:…,836914 +"RT @UndiscoverPoem: 'I think of race as something akin to climate change, + +a force we don’t have to believe in for it to kill us.' YES!! @F…",82167 +"@JamieObama @washingtonpost We believe in climate change, as evidenced by the ice age, we just disagree with the cause.",969815 +RT @TimesNow: India emerging as front-runner in fight against climate change: World Bank. (PTI),804703 +"RT @TrueIndology: 'Beef Ban can mitigate climate change':US researchers: +https://t.co/Xr3pB6QpkV",457817 +See the discussion around 'climate change' for an excellent illustration of my point,685085 +RT @ChristineMilne: Australia defends role of fossil fuel corps as source of solutions to global warming. @TurnbullMalcolm https://t.co/uFH…,646257 +RT @joshgremillion: It's sickening how other world leaders think climate change is more important than eliminating ISIS. #ParisAgreement #P…,624130 +RT @maddm_: If you don't believe in global warming at this point your an idiot,582559 +@PremierBradWall Solve climate change? Huh we still going to play this BS story..Buy SUV's very comfortable,423169 +"What we need to fix climate change is free-enterprise innovation, NOT a job-killing carbon tax. #cdnpoli #cpcldr",657337 +RT @Manoj_Malgharia: Renewables are slowly becoming mainstream not because of climate change activism but better economics.,88960 +RT @MarkSkoda: A must read rebuttal to the global warming cabal. https://t.co/I8p6S2ikb2,269970 +"RT @1010: 8 minute read! How to change our attitude to climate change: stay positive, think big picture, and work together…",105374 +"RT @SmithsonianMag: Meet original thinkers who are breaking ground in medicine, art, drone design, fighting climate change and more. https:…",482268 +"RT @Salvesayson: You’re so hot, you must be the cause for global warming. #ALDUBLolanap",782859 +RT @nytpolitics: Governor Jerry Brown vows California will battle the Trump White House on climate change https://t.co/fyMlQ4zYUg,592629 +Doc Thompson busts liberals’ favorite climate change myths! https://t.co/coz0E2Zdr8 https://t.co/osbelr4ril,336497 +"RT @tommyxtopher: Oh, damn! Chris Wallace just shaded Fox News viewers for not believing in climate change! https://t.co/MMGCDN8MmI",57312 +RT @DJSnM: We often hear that 97% of science papers support anthropogenic global warming. A team analyzed the other 3%.…,402798 +"RT @BruceBartlett: My solution to the climate change problem--treat the symptoms, worry less about the cause. https://t.co/SlCnGeIdwU",324231 +"RT @TheGlobalGoals: Today climate change leaders launch Mission 2020, including our film #2020DontBeLate. Watch live here from 4pm GMT:…",58998 +RT @RedNationRising: CNN's Brian Stelter destroyed by Weather Channel founder John Coleman over global warming. It is a hoax. https://t.co…,922240 +"One candidate is gonna keep our efforts to better our environment going and the other says global warming doesn't exist, choose wisely lol",724277 +"RT @dwdavison9318: Put it all together, and, well, on the plus side it may not be runaway climate change that destroys humanity after all.",122922 +"RT @THR: Arnold @Schwarzenegger, Jerry Brown come together to oppose Trump on climate change effort https://t.co/Bb0X27yyql https://t.co/MC…",592514 +"RT @Shareblue: Without action on climate change, humanity is eventually not going to be around to say anything. + +#RESIST https://t.co/mMUx6…",77165 +The reality of climate change in South Asia https://t.co/CAnnYXB1HD,468630 +Japan pledges more support to Vietnam’s climate change response at https://t.co/is8Rm0V5aR,621373 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,398635 +A big push to tame climate change https://t.co/81dGzsJg5O @fkadenge1,559697 +"RT @peggyarnol: As climate change heats up, Arctic residents struggle to keep... https://t.co/WpVrjkpC7G #Arctic",214414 +"RT @nationalpost: Antarctic ice has barely changed due to climate change in last 100 years, new analysis shows https://t.co/GB7JUsyEUz http…",619976 +"Because of climate change, you can point to any puddle and tell your kids it's Frosty the snowman.",455298 +"@chefBOYERdee1 Al Gore, creator of the internet and global warming.",660578 +"Have you ever wondered why Malcolm Roberts is so pro-coal and a climate change sceptic? +Here is the reason ... https://t.co/kELC95MgVL",643036 +@BridgewaterGale Trump thinks climate change was made up by the Chinese. He doesn't know what science is. He's not… https://t.co/yj2kjarRRt,913457 +we should address global warming immediately,287368 +"RT @starlightgrl: opinions: +-not liking a movie +-wanting tea>coffee +-thinking r&b is better than pop +NOT opinions: +-climate change +-animal…",813930 +RT @pittgriffin: The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/C3Mp39kW2r,307025 +"RT @tan123: 'Science teachers ought to teach the science of climate change, not the dogma pushed by some environmental activist…",551415 +RT @PoeniPacem: @KatSnarky Liberal tears have done more to raise sea level in a day than climate change could do in 10 years.,689333 +RT @BrookingsInst: Only 17% of Americans share Trump’s skepticism of the evidence of global warming https://t.co/bvHHsl8Qj8 #EarthDay https…,611269 +RT @ScotClimate: Google:Hundreds of millions of British aid 'wasted' on overseas climate change projects - https://t.co/IaF5q0FaAG https://…,935392 +"RT @Groundislava: ...climate change, LGBTQ issues, and civil rights from the whitehouse site but established a section regarding 'protectin…",897868 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,236645 +Acting on climate change is Africa’s opportunity https://t.co/Q4MXxgpnpP,77481 +RT @politico: Energy Department climate office bans use of phrase ‘climate change’ https://t.co/jERFKDMYoP https://t.co/1t4UtsP2yS,618553 +"RT @kurteichenwald: It will never cease to amaze me that 'green' voters in 2000 cause death of Kyoto Accords on climate change, & in 2016 k…",633595 +"Watch Before the Flood, an urgent call to arms about climate change https://t.co/nUSmPnmaog #misc #feedly",655062 +"Longer heat waves, heavier smog go hand in hand with climate change https://t.co/38Cc23erca #TEAMFOLLOWBACK",699074 +Why do people lie about climate change? https://t.co/plVlNbkTFJ,195308 +RT @Refugees: How many people will be displaced by climate change in future? #COP22 https://t.co/seeT67Glw8 https://t.co/udCGu3KW70,595210 +RT @BringDaNoyz: Crazy that Smashmouth has a more progressive stance on climate change than the US government,945743 +"Scientists have accidentally found a new method to convert carbon dioxide to ethanol, which could help in the fight against climate change.…",191854 +New Orleans mayor: US climate change policy cannot wait for Trump https://t.co/VnxKPXRqps,987819 +Oi @realDonaldTrump do you really believe that climate change is a Chinese plot? #Obamacare #POTUS #MAGA https://t.co/IfGS8zFvCv,397016 +RT @BhadeliaMD: From giant viruses to anthrax- yet another dimension of link between infectious diseases and climate change. https://t.co/B…,308507 +"RT @ReutersNordics: Scandinavia's Sami struggle with suicide, worsened by climate change https://t.co/vCXMqRzbCa via @ReutersUK",43551 +RT @blkahn: Stop what you're doing and look at this gorgeous animation of global warming by country since 1900 https://t.co/N4zFlZ9Ojc,240695 +RT @karrrgh: 'i don't believe in climate change' https://t.co/HhTSiB4Kr3,286168 +"Adapting to climate change a major challenge for forests +https://t.co/i2jtT5xp7z +Find out why here!",915509 +"RT @FightNowAmerica: Blind liberals can't see that climate change will be used as an excuse to impose global totalitarian government. + +Clim…",869683 +RT @42MattCampbell: @localcatraz @EffieGibbons @bryang_g @GlennMcmillan14 It's cute that you believe climate change is real. Guess what: it…,295238 +"@hearstruble Many more will die due to climate change SPED UP by use of fossil fuels. No, the majority of scientists can't be all wrong.",273952 +"RT @kemmydo: 'well i mean it's the fastest melting place on earth' +'yeah well that's what people who believe in global warming think'",584394 +"RT @WorcesterSU: 6 questions, 2 mins, 1 litre of Ben & Jerry’s & 100 tubs for your hall! Have a go at the climate change quiz to win: https…",195900 +G7 summit concludes with only G6 on #climate change: The Indian Economist https://t.co/uzTWgNfSwx #environment More: https://t.co/kktr4kNo7U,715663 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/eoQxG9e7CA https://t.co/UD0CmByqTH,851063 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,393719 +"RT @toniatkins: Californians like the state's direction on healthcare, climate change & human rights. We'll stay on course. https://t.co/5c…",285491 +RT @kcarruthers: Read the entire @Westpac position statement on climate change �� https://t.co/CsyrKrPnFH https://t.co/KS9FNe9rYE,474768 +RT @JonRiley7: Not only is Trump not mitigating climate change he's actually banned PREPARING for climate change ��‍♂️…,988237 +RT @jaredoban: The main reason Jesus can walk on water is so when he returns he can survive this climate change disaster. https://t.co/qEmj…,422929 +Final US presidential clash fails on climate change once more | New Scientist https://t.co/FnzkdZCxTX,531642 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/yUb0r5IN5b via @Reuters #carbon #economy #Politics",245695 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",879694 +RT @collettesnowden: #auspol The current Australian government's thinking on climate change. https://t.co/UpFmUSigOV,420847 +"After previously calling it a 'hoax,' Trump says there's 'some connectivity' between climate change & human activi… https://t.co/hLRzRknmk7",442565 +RT @EstherNgumbi: Still calling out African-American scientists here in the US working on climate change. Time-sensitive media opportunity.…,232430 +"RT @ABSCBNNews: Duterte changes mind, to sign climate change pact https://t.co/RoepI2Dan1 https://t.co/02hJFpHZix",398214 +People that don't believe in global warming are dumb,394365 +RT @CaucusOnClimate: .@RepDonBeyer and @RepLowenthal react to Trump's executive orders on climate change: https://t.co/btLqw7pofM,426338 +.@RepBrianFitz Thank you for acknowleding man's role in climate change and vowing to protect the purity of our environment. #science,330020 +https://t.co/PjYCfx5YWE Gov. Brown travels the globe talking about climate change.... https://t.co/tFOJBsos4b via… https://t.co/z5cQQD8ktd,785007 +RT @guardianeco: A million a minute: world's plastic bottle binge 'as dangerous as climate change' https://t.co/bQD77btvev,972338 +@660NEWS And we enter the fray with ToyBoy pushing 'global warming' I'm sure the Americans are are laughing rubbing… https://t.co/8IXWg0ANdQ,942593 +RT @advsalunke__: It's time to talk about climate change differently. https://t.co/I8GjZErfMU,961346 +"RT @SondraJByrnes: climate change +she confesses who +she voted for + +#poetry #micropoetry #haiku 451",764846 +RT @Bill_Nye_Tho: yall believe #Wrestlemania real but not climate change��,669522 +"RT @LordofWentworth: If 97% of scientists said that, based on modelling, a bridge was unsafe to cross, how many climate change deniers w…",319959 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,181107 +If now isn't the time to talk about climate change and burning fossil fuel 'WHEN IS IT TIME' 'Debbie' raised the question !,408404 +"@SDzzz @LGAairport Oh, I recall passing this place when I was in FL. They should just wait until climate change takes care of it. ugh :/",523048 +"@n_naheeda For a person who don't believe in climate change, who gonna believe in his views no matter wht he is talking",101999 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,172983 +Like Catholic church and abuse. Criminality? ‘Shell knew’: oil giant's 1991 film warned of climate change danger https://t.co/LnUSkQZzQ2,671524 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",849739 +"RT @ErikaLinder: Sorry to say this, but climate change is real and it's happening right now. Goodnight x",346827 +RT @CharlieDaniels: In respect to Obama's climate change policies on his last Christmas in office Santa Claus will be driving non flatulent…,476615 +"Time to act Truml, act fast and hard on climate change. https://t.co/T2wSUiiq8L",895125 +"RT @Nick_Pettigrew: If a group of people that believe in Creationism but not climate change question your acumen, I'd suggest you're fu…",92275 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,784034 +RT @SayHouseOfChi: it blows my mind that nearly 50% of American voters are voting for a moron who thinks climate change is a lie fabricated…,463466 +Record of ancient atmospheric carbon levels can tell us about climate change impacts to come https://t.co/MOeiHPL14D https://t.co/KBIvpTEcNJ,541545 +RT @Wintersonworld: Trump Whitehouse website strips all mention of climate change & LGBT rights from any agenda & wipes the Civil Rights Hi…,229217 +RT @HirokoTabuchi: Defense Secretary Mattis asserts that #climate change is real and a threat to American interests abroad https://t.co/Zz8…,486638 +@claire_caffeine @TimSomp @sea_bass918 @projectFem4All Just like it was warm today so global warming is a hoax and… https://t.co/h8kwok1fQr,318073 +"RT @Scientists4EU: 1) Do 'global challenges' include climate change & fascism? +2) The 'Special relationship' is sycophantism +3) Don't…",238027 +@foxandfriends @guypbenson Only idiots think climate change is a hoax.,123946 +Now @billmckibben tells us about when together with 7(!) students @350 he set out to halt climate change in the world ��. #atAshesi,926635 +"RT @eschor: A second rogue National Park still talking about climate change. Three is a pattern, guys... https://t.co/AadYEA9gRI",957341 +Eerie November periwinkle bloom in Toronto a sign of climate change? https://t.co/BAOgwpuJkO #ClimateChange #COP22,331416 +@JohnAvlon @thedailybeast I don't know. Could it be climate change?,912415 +"global warming is real, and caused by humans",737710 +"RT @GSmeeton: The picture on climate change is not quite as bleak as some claim, says @_richardblack https://t.co/ReciIWNfzS via…",123939 +"RT @eelawl1966: What really angers me about climate change, is the thought of all the innocent animals that will perish due to human ignora…",197071 +"RT @pacelattin: In hillarious news, all G20 spouses are being taken to the German climate change museum. Ivanka said to not be amused.",355991 +RT @stevesilberman: Must-read: You can't understand why Putin hacked the election w/o understanding economic reality of climate change. htt…,939791 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,35780 +RT @TheWorldPost: Trump's EPA warns us to wear sunscreen while it does nothing about global warming https://t.co/UXI4K8ltDV https://t.co/vm…,238540 +"RT @nytimes: Scott Pruitt, the head of the EPA, said that carbon dioxide was not a primary contributor to global warming https://t.co/6PH0U…",578043 +"Why are bees headed towards extinction? There are a number of factors, including climate change, pesticides, and poor beekeeping practices.",559830 +"@NotJoshEarnest funny you believe bullshit science on climate change, but not the science that a fetus is actually a living human! 1/2",663080 +@LDShadowLady well congrats. Hopefully global warming wont suck again and bring snow to kill them off,637989 +@AlexFranco488 @quigleyheather eh with the real issues like climate change and our economy it doesn't look like he will do much good at all,609853 +RT @ClimateChangRR: Poll: Most want ‘aggressive action’ on climate change https://t.co/FEhnKQ8MkH https://t.co/a2gvoWhgq2,688250 +RT @jalewis_: make global warming happen,573526 +RT @nathanfletcher: Trump still hasn't gotten memo he lost Pittsburgh and Mayor there is committed to tackling climate change. Pittsbur…,122197 +"RT @globalwinnipeg: Canada not ready for catastrophic effects of climate change, report warns https://t.co/EyLEOsg8XE",698843 +"RT @DonalCroninIRL: At @Irish_Aid climate change/environment focal point and parter meeting in #Kampala, good case studies from @IIED https…",978695 +"RT @luckytran: The #marchforscience has reached Greenland, where scientists are seeing the effects of climate change firsthand…",276003 +"Androids Rule The World due to climate change, but not for long. #scifi #99c https://t.co/A7mojBcbFY @donviecelli https://t.co/rV9EdFXWeU",180966 +RT @greenhousenyt: Climate experts write a hugely critical open letter about Bret Stephens' column on climate change. https://t.co/2jTFGkRx…,640355 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/zAIlrYVcKe,528396 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,838575 +RT @envirogov: Have your say on the review of Australia’s climate change policies. Submissions close at 5:00pm on 5 May 2017…,224086 +"These idiots think global warming will take thousands of years so making money is ok, but human interference is rap… https://t.co/LDxuY6V6Jk",25107 +RT @HuffPostGreen: Schwarzenegger and Macron troll Trump over climate change https://t.co/O7X2IGQ2c1,941017 +"It's February, the windows are open and the fans are on high. What's this about climate change not being real?",83294 +"The best part about @SenJeffMerkley ‘s marathon? His extended, detailed rant on climate change and corruption.… https://t.co/HJH59Eekyr",488157 +@rosana With global warming this year things were reversed. Vancouver had way more snow than us.,280143 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/F64TlJ7qRV https://t.co/UKO…,234739 +Diet change must be part of successful climate change mitigation policies'. Less meat = less heat & reduced health… https://t.co/i9CqppJHbE,580721 +"Holistically managed pasture sequesters carbon in soil, producing meat that is a solution to global warming. Vegan… https://t.co/NAjCVrDegL",907765 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",556068 +RT @PopSci: Doctors unite to say climate change is making us sick https://t.co/AJJCyZ1va2 https://t.co/3oAROqybH9,212700 +"What’ll be in store if climate change isn't addressed: + https://t.co/KxU30FTgpt",353721 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,675982 +RT @ddale8: The GOP is the world's only governing party that rejects the scientific fact of human-caused global warming: https://t.co/TNxxm…,339284 +The 19th-century whaling logbooks that could help scientists understand climate change https://t.co/QHJS630LTX https://t.co/sF8j8lfU6u,191301 +I think it's intellectually dishonest to assert that human activity has no effect on climate change. @JPShalvey1 @QuantumFlux1964,168885 +Thank you @Sessions_SF for pledging $1 per diner on Earth Day to fight climate change! #zerofoodprint,732303 +"RT @JSCCounterPunch: The Queen of Fracking will 'combat climate change?' It's one thing to campaign for HRC, Bernie, another to lie on h…",793043 +"RT @TedKaput: Liberal tears may soon beat climate change as the leading cause of rising sea levels.#TrumpRiot +We are the…",699639 +maybe we should all start gold leafing our trash i heard gold could reverse global warming,312517 +"RT @DeficitHacks: Though we face fascism, climate change, and an executive branch full of hacks, the debt's still the biggest (fake)… ",352208 +RT @pablorodas: EnvDefenseFund: Pres Trump thinks the “best available” data on climate change is from 2003. https://t.co/PAJVqZ2Yfv,266989 +#PresidentTrump as the leading amateur scientist in the world knows that man-made climate change is a myth created by China. #Trump that!,901063 +God is more credible than climate change' https://t.co/L9ykdnCgQQ,675882 +"In rare move, China criticizes Trump plan to exit climate change pact: https://t.co/xbxxQ4pT2I via @Reuters",320560 +"Researcher studies impact of climate change, deforestation in Namibia #ChemistryNewslocker https://t.co/8Xtwbz33nB",245351 +"Bills intro'd in some states say public schools should teach opposing POV's abt global warming, evolution #WhyIMarch https://t.co/lxx0fInTbJ",522325 +So as well as splaining history to Prof Beard we get anti-vaxers and climate change deniers. Research methods should be taught at school!,703585 +"RT @DaveKingThing: Three debates. One post-election interview. Zero questions about climate change. +Z +E +R +O",641049 +@LauraSeydel Radical energy shift needed to meet 1.5C global warming target: IEA https://t.co/Z2xLWdaJA1 via @Reuters,45110 +RT @KPCC: Governor Brown says California's climate change fight won't stop under Trump https://t.co/X68OVfl5KY https://t.co/jNpOow3sDv,414797 +I thought climate change won't save you or your children from it.,269667 +.@RepMiaLove Don’t let our children face climate change disaster! #ParisAgreement #CleanPowerPlan #SaveTheEPA #ActOnClimate #swingdist,242813 +"RT @350EastAsia: Filipino activists hold #ClimateMarch to urge @ASEAN to Drop coal, act on climate change #ASEAN2017 #CoalFreeASEAN…",367599 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,654104 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,894232 +RT @jjmiller531: '97% of the scientific commity has stated there is global warming bec they have got grant money 2 agree with that p…,287449 +"he also wants massive tax cuts, an end to the FDA and EPA, Giuliani as AG, no action on climate change... https://t.co/QLslBsPKPk",573969 +The surprising link between climate change and mental health https://t.co/VxfBe2RG7P,573083 +"RT @Telegraph: Hundreds of millions of British aid 'wasted' on overseas climate change projects +https://t.co/ZMlLv1uF2c",543358 +"@KORANISBURNING @KrissyMAGA3X 1 week into Ct. spring and still have 1' of packed hard snow, another global warming sign?",672556 +"RT @Irenie_M: More likely a lesbian caused Hurricane Harvey than climate change, says right-wing commentator https://t.co/T3rKpgFY7w …",761778 +"RT @bruhvonte: Tyler the Creator is gay, +Krabby Patties made out of crab meat, +Fruit Loops all the same flavor, +and global warming still re…",790474 +How may #overfishing of critical species such as #whales and #sharks impact #climate change? https://t.co/fKpJ8jzsO4,576012 +Trump says 'nobody really knows' if climate change is real - Washington Post https://t.co/bv8emncKZx,391509 +"RT @drvox: Keep in mind over the coming week: many, many conservatives say that adapting to climate change will be cheaper than preventing…",766952 +"RT @GlobalPlantGPC: Future climate change will affect plants and soil differently, a @CEHScienceNews +study shows…",37858 +"On one hand, fuck climate change is outta control we HAVEEE to take action asap. On the other hand, thank fucking C… https://t.co/bAwACCuCk3",703952 +RT @kallllleyyyyy: global warming https://t.co/CaJpPRunA5,840146 +RT @TreeHugger: Children win right to sue US government on climate change inaction https://t.co/ov6p4rMw7r https://t.co/GmSRBSqYlC,317102 +RT @verge: Here's the climate change podcast you didn't know you were looking for https://t.co/OHtSERwTE1 https://t.co/8yz1eoRgYE,663313 +RT @labourlewis: UK must take international lead on climate change with election of sceptic US president says Labour shadow minister…,350256 +"Even [Trump] does not have the power to amend & change the laws of physics, to stop the impacts of climate change,â€ https://t.co/02JBU2udyy",302864 +"In race to curb climate change, cities outpace governments - Channel NewsAsia https://t.co/JeEHA2xrRB",950748 +How #climate change is affecting the #wine we drink https://t.co/feIGMohHN1,559829 +RT @c_kraack: RT @AMZ0NE A SciFi author explains why we won't solve global warming. âž¡https://t.co/xYpMOSZRRg https://t.co/25q3p8hFNT #amr…,316929 +RT @daguilarcanabal: Being 'pro-immigrant' while supporting zoning is like saying you're concerned about climate change while driving a die…,885671 +"RT @GhanaYouthSpeak: The New threats to poverty eradication: climate change, conflict and food insecurity, we need you to help the globe #y…",926884 +Next 10 years critical for achieving climate change goals https://t.co/9ek4Q5jqGA #mcgsci,151033 +"It's warmer in the Arctic than it is in Thunder Bay, Ont.' +Sorry, tell me again how global warming isn't a thing? 🤔 https://t.co/fZvxXn7xJT",956089 +RT @TooheyMatthew: Woohoo! Naomi Klein calls out IPA climate change denialism #qanda,578319 +@AP fighting climate change is ridiculous. Climate changes so figure out how to survive it for fuck sake.,502372 +I liked a @YouTube video https://t.co/zDe3rJt2yb Penn and Teller global warming,55085 +RT @Heidi_Parton: Reining in climate change starts with healthy soil https://t.co/KFFDC7KBnC via @deliciousliving #climatechange #biodivers…,844569 +RT @killmefam: global warming killed club penguin,657020 +RT @ClimateCentral: Here's how climate change could flood cities (and states) as the world warms https://t.co/GArhaHhlyo https://t.co/Ziwf2…,327419 +@realDonaldTrump climate change is real and the #1 contributor is man. https://t.co/iww1Or77EG,774068 +"RT @tveitdal: Polar vortex shifting due to climate change, extending winter, study finds https://t.co/pFeqP3mhya https://t.co/tA5fDSJzfg",215327 +RT @ProfSteveKeen: Arctic ice melt could trigger uncontrollable climate change at global level https://t.co/YoZ9foPlQ7,53274 +Energy Department climate office bans use of phrase ‘climate change.’ #words #bannedwords https://t.co/dcjwqQVYdF,165384 +"@Jackthelad1947 Trump @realDonaldTrump will only believe in global warming until his own Towers, Hotels & Casinos are under water, LOL!",216655 +RT @Cosmopolitan: The man Donald Trump chose to protect our environment doesn't think climate change is real https://t.co/4QgFdWRSHr https:…,895964 +#DonaldTrump has signed an executive order undoing much of Barack Obama's record on climate change #HeartNews https://t.co/dE2Y2vwhy1,658815 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,392139 +"RT @TimBuckleyIEEFA: While some continue to deny science and debate if we should do anything, climate change impacts are clear and growi…",303725 +"@LisaO_SKINMETRO I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",95260 +"Alternative' Twitter accounts defying Trump's climate change gag order could be prosecuted, experts say #Technology https://t.co/ANuDqBy1y7",29266 +RT @rtoberl: There's more than enough climate change money to pay for all of Trump's programs. Let the UN & China chumps solve climate chan…,941438 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",786762 +RT @Alyssa_Milano: The Trump administration just disbanded a federal advisory committee on climate change https://t.co/rChjQhTEJy /via @kyl…,687815 +"RT @AdamsFlaFan: Thanks to global warming, Antarctica is beginning to turn green https://t.co/tElBEwO3jo",58178 +RT @LOLGOP: This is actually a depiction of earth before and after climate change. https://t.co/tNzsPMbg3Y,892211 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,38872 +"RT @foxandfriends: 'Eleven years later, weren't you wrong?' -Chris Wallace confronts former VP Al Gore over global warming claims |…",6715 +@EliseStefanik @karenhandel She doesn't believe in climate change,115420 +RT @iNadiaKhurr: This could be us but you said deforestation lead to global warming. https://t.co/57BiT1WwQa,564035 +@BasedFaggotFTW your proof of humans not causing climate change,655450 +Al Gore just had an 'extremely interesting conversation' with Trump on global warming https://t.co/kILRsfiyhV https://t.co/CT9CeudUwX,536531 +I know climate change is a natural process. What is not natural is all the things we are doing to get resources bec… https://t.co/yxwmBbxZRf,558684 +"RT @SenSanders: In Trump’s speech I did not hear one word about climate change – the single biggest threat facing our planet. +https://t.co/…",521553 +RT @XHNews: What do you value most among things that China and EU have been doing to fight against global climate change? #ParisClimateAcco…,702061 +"RT @johnpavlovitz: Eliminating healthcare +Defunding PP +Ignoring climate change +DAPL +@GOP can drop that whole 'Pro-Life' facade. + +https://t.…",270836 +RT @funkgorl: namjoon called jin big brother and jin threw two flying kisses global warming is over #BTS #JIN #진 #BTSINNEWARK https://t.co/…,579324 +"As @pmackinnon509 told PRIM board this AM: 'Most of us wouldn’t bet against [climate change], so why is our retirem… https://t.co/LRxapR1apP",186889 +(Montreal Gazette):#Historic flooding in #Quebec probably linked to climate change: experts : Scientists have.. https://t.co/VnI1ADsThk,813889 +RT @DanWoy: Alberta not reversing course on climate change to match Donald Trump's backward march https://t.co/IW5gxrsNG1 #cdnpoli #cleangr…,864478 +"@bobcesca_go @CharlesPPierce +Bravo Pope Francis +Giving #BenedictDonald a treatise on environment & global warming… https://t.co/R9ShXPIJxI",879657 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,748146 +"Trump has repeatedly called into question the science behind climate change, even calling it a 'very expensive hoax.'",273325 +"@runningirl66 @therealroseanne As much as I care about your opinion on global warming, I;m sure.",52520 +"RT @AltNatParkSer: .@NASA has released a photographic series called 'Images of Change' despite President Trump denying climate change. +http…",620251 +"The Chinese understand what's at stake here. + +In rare move, China criticizes Trump plan to exit climate change pact https://t.co/eIsRC58Fom",967986 +RT @thehill: Government scientists leak climate change report out of fear Trump will suppress it: report https://t.co/M57Cf4IsC4 https://t.…,255772 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,124459 +RT @AmandaOstwald: @seventyrocks Science enables you to mentor women and people of color! Or teach how individuals can fight climate change…,778658 +RT @BekahLikesBroco: Are white people gonna survive climate change bro https://t.co/oGDLw85bjG,730026 +RT @LOLGOP: We elected a guy who said climate change was a hoax but the National Enquirer is real. That's why we point out he got millions…,524315 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,808795 +"RT @EricHolthaus: Holy wow. Remember those kids suing Obama & big oil over climate change? +They just *won*. +Read this: +https://t.co/HnZBICG…",410560 +We have to choose between corporations and communities.' #COP22 - women on the front lines of climate change.,736913 +RT @akaXochi: Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/U5qnxsKyz4 via @YahooNews,585868 +RT @cucumbersdotgov: went to look at pictures of the earth to cheer myself up remembered our president elect is a climate change denier got…,860621 +Love it #snowflakes to get dumped on - so much for global warming! @stevemotley,911013 +RT @Independent: Trump signs executive order reversing Obama measures to tackle climate change https://t.co/5QofpMag0a,350251 +"RT @sydkoller: FYI global warming is the reason for the severity of this storm and you voted for a man who doesn't believe in it, as our pr…",583294 +RT @newscientist: Trump could land fatal blow to the fight against climate change https://t.co/zPo0wntgIb https://t.co/FBIaQwPsur,237397 +"The president might not accept climate change, but the secretary of defense sure does. https://t.co/8W3zAj6tQr",810871 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,302920 +"@CathyWurzer @tanyaott1 @NPR We are parsing the definition of 'lie' while millions loose health care, and global warming has become a 'lie'.",826197 +RT @hrkbenowen: Will you turn off your lights for an hour March 25 at 8:30 p.m. to show support for climate change? Please RETWEET.,552138 +RT @c40cities: What are the world’s leading cities doing to tackle climate change? Browse our new case study library to find out!…,948170 +RT @kumar_eats_pie: 'A big box of crazy': Trump aides struggle under climate change questioning https://t.co/hC7JI38SWS,734002 +RT @wwf_uk: 1 in 6 species risks extinction because of climate change. It’s time to #MakeClimateMatter. Awesome design by…,381149 +RT @nytclimate: A call for women to take a bigger role in fighting climate change at a conference in NYC https://t.co/dikPLhegc3,87066 +RT @HuffPostPol: Badly misinformed lawmaker thinks our 'warm bodies' may cause climate change https://t.co/qzQBVisPfT https://t.co/C4Y2qs1M…,393025 +Harvard solar #geoengineering forum recalls this Q: Can we move from unintended global warming to climate by design… https://t.co/v3WTEJMxcp,242100 +RT @claudiogiudici: #Trump rifiutando #Parigi è contro #climatechange che prima era global warming che prima era raffreddamentoclimatico ht…,73720 +RT @WhyToVoteGreen: UN: 20 million people in four countries now face severe famine from combination of conflict & climate change…,248576 +"The Great Green Con: global warming forecasts that are costing you billions were WRONG all along +https://t.co/QXJ6M5mcvR",757481 +"@Prohximus @realDonaldTrump global warming is real, human caused, and already putting lives in danger.",949825 +The fact people are actually voting for a man who doesn't believe in climate change makes me wonder if people can get any fucking stupider😂,122392 +RT @Whoray76: @EmfingerSScout @AppSame What a waste of hot air that probably contributes 2 global warming! #MAGA,454520 +RT @TheKuhnerReport: Mark Levin says Trump betraying conservatives on climate change & amnesty for Dreamers. Let's wait until Jan. 20 befor…,246599 +Opinion: Hunger on the Horn of Africa is not caused by climate change https://t.co/ibZ3iP7INl via @dwnews,587755 +"RT @350: Despite Trump (and many denialists), 2016 is the year that made climate change undeniable: https://t.co/Xrj9GTBTf1 https://t.co/Fj…",696011 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/a86NgPKyzX,702158 +"RT @HirokoTabuchi: GE's Jeffrey Immelt says climate change is real. As a member of Trump's biz council, he also has Trump’s ear. https://t.…",577157 +Leo Di Caprio talks climate change with Obama https://t.co/BHOeEuhzpw via @YouTube,779146 +RT @thinkprogress: Will global warming help drive record election turnout? https://t.co/r7M77EAXeC https://t.co/detOUvCCWr,361064 +RT @guardian: Barack Obama on food and climate change: ‘We can still act and it won’t be too late’ https://t.co/4DOP0vUYU6,568478 +@GlblCtzn The White House under Trump don't care about climate change...,293138 +"RT @YEARSofLIVING: As seen in #YEARSproject, we must reduce our meat & dairy consumption, to stop climate change! READ: https://t.co/xdQbLI…",886852 +"RT @HirokoTabuchi: Americans ate 19% less beef from 2005-2014, a victory in the fight agnst #climate change. @ssstrom has the good news htt…",641390 +RT @LynnDe6: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/c1QxYAaeT7,309204 +RT @JamesMelville: The Swedish Deputy Prime Minister signs climate change legislation surrounded by her all-female team. #TrumpTrolled http…,861978 +RT @BitchestheCat: Back before global warming when it used to snow in the winter in Chicago (not in mid-March) my parents made a snow…,65678 +@guardian Remember @realDonaldTrump about your golf course in Scotland when you're denying climate change… https://t.co/awFnz2Pmsa,37161 +RT @FormerNewspaper: .@SarahHSandiers can you please confirm the democrat theory that climate change is to blame for the #AwanBrothers matt…,44459 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,212306 +RT @ScienceNews: Worries about climate change threatening sea turtles may have been misdirected. https://t.co/qDbUcdVttP,15931 +"RT @nytimes: In the Netherlands, climate change is not a hypothetical or a drag on the economy. It’s an opportunity. https://t.co/bv6L9tkf2a",839468 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/xt7RdoWX6d https://t.co/2QdKWNc2O6,206409 +"The webcast for 'Managing BC’s forest sector to mitigate climate change' is live now: +https://t.co/4qDXieuRdf",80465 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,902010 +RT @ClimateCentral: 35 seconds. More than 100 countries. A lot of global warming https://t.co/rkvcokTUAR https://t.co/HUz7ejjLLu,184219 +RT @emmaroller: A climate change skeptic running the EPA is now a reality https://t.co/8JUq66p1Qz,45607 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,337771 +"1-4 inches of snow my ass, global warming fucked that right up, stay Woke.",89645 +RT @GlobalWarmingM: David Keith: A surprising idea for 'solving' climate change - https://t.co/bJv22GGMRj #globalwarming #climatechange,414134 +RT @breakingnews740: It's worse than even climate change can explain. https://t.co/5CNH9I9n8v,357355 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/ig8sxJGw2f https://t.co/eo85j1GK7j,783782 +"Trump tweets wrong Ivanka, gets earful on climate change https://t.co/9gwXYTQlZO",537334 +Reading HS classmates' posts on FB about climate change being a scam & suddenly it's 12:30 & I'm too aware of people's stupidity to sleep,818133 +RT @CraigBennett3: WELL SURPRISE SURPRISE Govt to scale down climate change measures in bid to secure post #Brexit trade https://t.co/BRiRR…,314957 +RT @AP: Britain's Prince Charles co-authors a book on climate change. https://t.co/95cv3AscG5,793240 +RT @ManuelQ: .@Reince says @realDonaldTrump still thinks climate change is 'bunk' https://t.co/qpZ1bjzPVY ($),903549 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",505388 +We have 100 years at most before mother earth gets rid of us. To anyone who dosent believe in global warming keep r… https://t.co/3oTN8wvrUE,903516 +RT @EnvDefenseFund: These stunning timelapse photos may just convince you about climate change. https://t.co/Ne7Go0LcxN,830608 +RT @BarbaraRKay: A very good interview for people who are *so damn sure* about computer model-based anthropogenic climate change rel…,708649 +Watch: Bill Nye blows gasket when a real scientist schools him on facts about ‘climate change’ – LMAO!!!!!�������������������� https://t.co/gxCqRtj8yR,699265 +"RT @Okeating: Prince Charles has written a Ladybird book on climate change, but he's not the only celebrity to use this platform. https://t…",199279 +"RT @FROX3N: Human activities as agriculture & deforestation contribute 2 the proliferation of greenhouse gases that cause climate change. +#…",423050 +"RT @akin_adesina: Stop talking about climate change. Africa needs finance, not talk, to adapt to climate change. Watch my interview: +https:…",84479 +@PetraSuMaier @tulsaoufan @ChrisRGun Nyes ideas on jailing people doesn't excuse not believing in global warming,692437 +RT @omgthatspunny: if global warming isn't real why did club penguin shut down,511157 +"@Bedhead_ And that's your response to climate change? Universe big, we small?",134111 +Lakes worldwide feel the heat from climate change: Science News: Lakes worldwide are… https://t.co/lG8Rh5mGJn,457774 +"The #GlobalGoals seek to end poverty, reduce inequality & tackle climate change. No one should be left behind https://t.co/n8XDPPkNE9",444789 +The funniest thing in the world is a Liberal who believes in climate change......and smokes (anything). ����,28139 +How climate change could harm your health https://t.co/BK1uNFyv9t,532892 +RT @tinatbh: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus o…,896668 +@Gurmeetramrahim #National Youth Day save global warming,807831 +Al Gore's 'An Inconvenient Truth' Sequel to Open Sundance: The sequel to Al Gore's Oscar-winning climate change doc… https://t.co/7GESemyBUP,566437 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",122276 +RT @RacingXtinction: The types of food we choose can help slow down climate change #MeatlessMonday https://t.co/0PvjHrvv1j,330625 +These are the six climate change policies expected to be targeted by Trump's executive order https://t.co/guY6J7aCS1 …,459982 +RT @ashleylynch: Ignore the fact that he just gagged and censored every government organization from talking about climate change. H…,37020 +"RT @CorbinHiar: As the leader of Exxon, Rex Tillerson used the alias Wayne Tracker to send emails about climate change risks https://t.co/C…",248792 +"@washingtonpost yep,definitely no global warming here.",67871 +@SethMacFarlane @sciam meanwhile uses climate change to get permission in Ireland to build a wall around his property along a public river,818267 +@newscientist and a climate change denialist as head of EPA?,899530 +RT @nytimes: Donald Trump has called climate change a hoax. A Chinese official says it is anything but. https://t.co/N7y35LTyN2,598012 +Lol at everyone who thinks that global warming is the US's top priority.,105391 +"@CaitlinJStyles it used to snow from time to time , but it doesn't snow anymore. I blame global warming for that",734981 +"@kieszaukfans I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",194458 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",525857 +"#Acidification news: Healthy ecosystems means resiliency, faster recovery against climate change (excerpts) https://t.co/8LuuHuOnlV",299185 +"RT @KamalaHarris: This administration’s open hostility to climate change is appalling. No matter what, California is ready to tackle this c…",303968 +RT @SheilaGunnReid: When you take a cab to a climate change summit where you want to force others to ride their bikes or walk https://t.co/…,623420 +RT @ColeLedford11: polar bears for global warming. https://t.co/PqPcElsKkt,491902 +RT @nowthisnews: Electing Donald Trump is going to be a disaster for the fight against climate change https://t.co/MhkOlHgxXN,405671 +Trump team memo on climate change alarms Energy Department staff - https://t.co/E93KGSsaLE,283285 +RT @realDonaldTrump: The weather has been so cold for so long that the global warming HOAXSTERS were forced to change the name to climate c…,314315 +@sir_mycroft @Guiteric100 @rickygervais It's like not believing in global warming. You opposing war doesn't make the world a peaceful place.,342649 +RT @chelseahandler: North Korea believes in climate change. We are the only country in the world that has a political party who denies clim…,811594 +RT @TheEconomist: Uncoupling emissions growth and economic expansion is important for slowing climate change https://t.co/TnjMRQSU5V https:…,877953 +"RT @Reuters: France, U.N. tell Trump action on climate change unstoppable https://t.co/Gcj6LcrNpa https://t.co/0yFoOoUAaU",250020 +"Africa takes centre stage at Marrakesh, urges speedy climate change action https://t.co/IIqumfQPBV",482420 +"RT @philstockworld: Currently +reading 'Why we need to act on climate change now': https://t.co/dj2hPF4x5g",811970 +RT @ClimateReality: It’s simple: The same sources of emissions that cause climate change also produce pollutants that engager our health ht…,410045 +@kylepope 99% of all scientists say climate change is real. But US media presents the 'other side.' Fossil Fuel companies side? Sad.,768287 +"Mayors & governors are already seeing effects of climate change in their cities/states. They have to act now, with… https://t.co/ikRrIdzjBD",10140 +"RT @PiyushGoyalOffc: Shri @PiyushGoyal spoke about the dire need of addressing climate change, at the 8th World Renewable Energy Technol…",381026 +@DrJillStein What is your opinion on the #Vegan lifestyle as one of the solutions to climate change? ☺,824589 +RT @SwannyQLD: See my article on Turnbull's lost decade on climate change and remember the charlatans who led us down this path - https://t…,566239 +"@JadedCreative @chrislhayes LOL and fly a rocket ship to space, meet with scientist about climate change, and with… https://t.co/f47eL2kFQE",168376 +RT @ILoveQueenK: #EarthHourPH2017 muna tayo to fight climate change oh dba nakatulong pa tayo,925405 +RT @AJEnglish: Not all fur and waddles: This Penguin colony is at risk from climate change https://t.co/IBMSbIssbX,175224 +RT @BecomeWhoWeAre: @NathanDamigo Animal agriculture is the biggest cause of climate change (if it's real). Recycling cans and carpooli…,761939 +RT @amyrightside: US climate change campaigner dies snorkeling at Great Barrier... https://t.co/HToUo9txxe #greatbarrierreef,701364 +Hello. I am a white middle class conservative and climate change is very real. Thank you. #Facts,634818 +"Trump team at Davos: We don't want trade war w/ China, just better deal;. Pres.Trump Keep promise on illegals, no climate change, Obama care",691110 +Interior Department agency removes climate change language from news release https://t.co/IYR8aGVyMw,386807 +RT @StatsBritain: 100% of Britons hope Prince Charles DESTROYS Donald Trump on climate change when he visits in June.,885006 +Humans 'don't have 10 years' left thanks to climate change - scientist https://t.co/vUhQQAieW8 Finally some good news.,486755 +RT @hfairfield: Spring weather arrived more than 3 weeks earlier than usual in some places. New research pins it on climate change.…,335914 +The climate change racket has lost force #podestaemails26 https://t.co/xFi6crATGx,961423 +"RT @LeoDiCaprio: Want to stop climate change, @UWM? See #BeforeTheFlood at your University #BeforeYouVote. +https://t.co/ubMubJMbkv",48070 +"they asked what my inspiration was, I told em global warming.",86376 +"We could have the absolute solution to any problem; to end hunger, climate change, but in the wrong hands, we'd make the same mistakes.",857017 +"RT @cinziamber: Educate yourself on climate change and what you can do. Not just for yourself, but for your family, your future family, eve…",70184 +MINISTRY OF TRUTH DOUBLESPEAK: US federal department is censoring use of term 'climate change' https://t.co/ROoiXPVGqj,808139 +"Not sure how @heathersimmons knows about the nametags, but we see @Newmont is mentioned in these HBS climate change… https://t.co/UGclq2t4YX",348386 +RT @smh: State of the Environment report warns impact of climate change 'increasing' and 'pervasive' https://t.co/q6hduIhZl1,924242 +RT @Stevenwhirsch99: All the while he tries to lecture America about climate change....... https://t.co/PARNgUirHw,686843 +"RT @deltalreed_l: Polar vortex shifting due to climate change, extending winter, study finds +https://t.co/enqjjXpMsz Marco say climate chan…",49160 +"RT @TrumpTrain45Pac: There is no global warming says the founder of the weather channel +#MarchforTruth +#CNNisISIS +#ClimateChageisnormal +ht…",302490 +@Erikajakins They fully expected to be hailed as king and queen of some new 'climate change' era. To never receive… https://t.co/iAPH3shCti,183669 +"RT @SuffolkRoyal: @gwak52 @69mib Just more of the big 'global warming', 'climate change' con. Or whatever it is they're calling nature the…",945556 +RT @businessinsider: A new study just blew a hole in one of the strongest arguments against global warming https://t.co/xqzcyUrcAe https://…,664348 +"RT @TheAtlantic: Tracking climate change through a mushroom's diet, by @vero_greenwood https://t.co/yhYdZaRQg3 https://t.co/9zxuVfw2EI",556462 +"RT @slaveworldElmo: A vital link in fighting global warming: Whales keep carbon out of the atmosphere. #OpWhales +https://t.co/G8EFJatSXG",643411 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,428375 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,855864 +"RT @GhostPanther: Pence doesn't believe in climate change, evolution or that some ppl are born gay. Can't he just not believe he saw Hamilt…",566490 +RT @thehill: California signs deal with China to combat climate change https://t.co/vZ6x5jTnCh https://t.co/26ppDfBu95,830535 +RT @RogueNASA: Survey: Only a quarter of Trump voters believe in human-caused climate change https://t.co/fDRpSSHeAY,382 +RT @AbbieHennig: extremely concerned about planet earth now that we have someone in office that doesn't believe climate change is real,373785 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,734921 +RT @reaIDonaldTrunp: y'all still think global warming is a hoax? https://t.co/lxxfyA9rsj,171713 +RT @citizensclimate: Great op-ed in LA Times: Some conservatives are concerned with #climate change https://t.co/aMyanMSfB3…,556800 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,88973 +"RT @SteveSGoddard: Before global warming, hurricanes in Texas never did much damage. https://t.co/pQ10HFZWIb",658337 +RT @voxdotcom: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/rVDaS8lT1R,4709 +"RT @latimes: Russia investigation, climate change and immunity: Here are the major stories under Trump this week https://t.co/QEkiZ9bSRU",877084 +RT @ClimateCentral: 5 ways cities are standing up to climate change https://t.co/akwRgiNcaw via @FastCoExist https://t.co/hLpXJVYC4g,445620 +"The hoax : how pseudo climate change is used as cover for non conventional geoengineering war and destruction +https://t.co/wv5CQPOZ7G",270537 +@DonaldJTrumpJr @EricTrump make sure someone tells the trumps there is no such thing as global warming,703375 +Reason #600 I want to move- my brother just argued with me for 30 minutes about global warming not being real....#pleasegotoschool,46873 +Insight: To deal with global warming we need many of the same things that are absolutely necessary to explore space 1/3,899754 +RT @hrkbenowen: Al Gore refuses to give direct answer when confronted over bogus 2006 claims on climate change https://t.co/5c1inAzjVM,795861 +If he was white and was support climate change and doing some type of protest he would still have a job cuz that wo… https://t.co/yMzvb7EAjP,812551 +RT @ericgarland: Because I GUARANTEE YOU - Putin feared the US taking the lead on climate change. It would be the end of his country's tiny…,535591 +It's not global warming it's warming that's global,80055 +"@SebGorka NYT's: God confirms - 'Trump is the anti-Christ!' Blames him for 9/11, AIDS, global warming & Air Supply!",570775 +#3Novices : Despair is not an option when it comes to climate change https://t.co/Fe60O63EBo We've heard a lot about warming oceans in the…,607294 +RT @YooAROD: How do people deny that global warming exist? That's like saying the earth is flat. You sound flat out dumb!,346257 +Vital discussion from LoneStar Caledonia as the team embrace climate change and the fragility of our planet : https://t.co/19qLrWK8ka,834872 +RT @rose_douglass: @Janefonda climate change is a hoax. NOAA lied about their data. It's all about draining our wallets even more to charge…,214043 +@ZachTheMute also when he thinks climate change isnt real and thinks stop and frisk is a good thing,613413 +RT @StigAbell: I know nobody cares about climate change in the brave new world. But the red line is this year's sea ice. This look…,1960 +Balzer: Resilient ecosystems4 adaption to climate change. This is also in line with the #ZANUPF resolutions made made during #2016Conference,591346 +An extended family member posted on Facebook that people need to wake up because climate change isn't real. Any way to extend him further?,716050 +"RT @DailySabah: New US-British research confirms that reported pause in global warming between 1998 and 2014 was false +https://t.co/UjXm9Yj…",449744 +RT @TheEconomist: China sees diplomatic benefit in hanging tough on climate change https://t.co/7qGaXZ95jF,746121 +RT @BBAnimals: The effects of global warming https://t.co/twFnLF4XNw,576177 +"RT @NOAAClimate: With #snow in the forecast for this weekend, here's a quick reminder: Snowstorms don't disprove global warming.… ",742262 +RT @HannahRitchie02: How much will it cost to mitigate climate change? Some estimates suggest <1% global GDP per year in 2030. New blog:…,603256 +RT @HirokoTabuchi: China as climate change savior? Not so fast. By @KeithBradsher https://t.co/XgZjvvweLJ,995594 +@MarsinCharge allergy season is supposed to be especially bad this year because climate change got the trees out of… https://t.co/QOQtGyvnnY,491003 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,258024 +"RT @BayStateBanner: https://t.co/Duu2Ki5sRI In Boston, who will bear climate change burden? +#climatechange https://t.co/9ycaZuR8UT",132811 +RT @YEARSofLIVING: #RenewableEnergy saves us from the worst effects of climate change & solves our economic challenges @CalCEFAngelFund htt…,739061 +Modern agriculture cultivates climate change – we must nurture biodiversity https://t.co/qmwK5dKX31,515952 +RT @CBSNews: What happens if the U.S. withdraws from the Paris climate change agreement? https://t.co/eBb27mOzFI https://t.co/HGXbdcYWxs,622935 +RT @Green_Footballs: Trump pouts and glares as Finland’s president discusses the effect of climate change on Finland…,448716 +I didn't think people still confidently denied that global warming is an issue.,357570 +"President Donald Trump's policies on climate change are strongly opposed by Americans, poll indicates https://t.co/hjuhZcgfKC",459647 +RT @AP: BREAKING: California lawmakers pass extension of landmark climate change law that Gov. Jerry Brown holds up as global model.,694067 +"RT @BuckyIsotope: You are my sunshine +My only sunshine +With global warming +You’ll kill us all",342342 +RT @ajplus: Meet five communities already losing the fight against global warming. https://t.co/vKzk4FTQWJ,458106 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/bnVqULcmRb,943571 +@australian Don't blame it on climate change. The major cause is cyclone Debbie,592617 +RT @jmontooth: We need @neiltyson to go golfing with Trump and casually tell a story about climate change and the value of education.,847809 +Understanding alternative reasons for denying climate change could help bridge divide -… https://t.co/nXGJzJG7PX… https://t.co/xvun9tdD3w,676499 +@AlexWitt U ditzed Clinton & helped Trump win who reversed all climate change policies. Kiss your butt goodbye as Nature Knocks & blame you!,393921 +Recent pattern of cloud cover may have masked some global warming https://t.co/S3ahtG8xfC,307201 +@bg38l You reject the overwhelming facts associated with climate change. Are there other objective scientific truths you oppose?,814178 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,33055 +RT @__JoshBailey: I can't wait for all my tweeting to end global warming,316616 +Energy Department refuses to give Trump team names of people who worked on climate change https://t.co/5PJc8noSlJ via @bi_contributors,246745 +"RT @BostonJerry: Trump/Tillerson are against Russian sanctions, Iran deal, & any action on climate change. How could senior officials keep…",28308 +@tomcolicchio @MikeBloomberg And donating millions in support of combatting climate change?,793207 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",334667 +this is mostly linked to the fact they're all scientists and acknowledge the fact climate change is real,805610 +"RT @GoodFoodInst: Feel helpless as our president denies climate change? Don't forget how much #PlantBased eating counts. +Via @bustle +https…",747215 +RT @mythicalskam: sana angrily shooting free throws to humble was hot enough to fuel climate change i have the receipts https://t.co/6uYcGp…,124201 +RT @physorg_com: Extreme #weather events linked to climate change impact on the #jet stream https://t.co/nC1wHZuPYV @penn_state,360821 +"Academic, author Brett Favaro bringing climate change message to Corner Brook +https://t.co/CJO5J90gOY",461119 +RT @SarahKSilverman: Maybe @NASA will stand w their fellow scientists & hold off working on Mars until Trump accepts climate change https:/…,301741 +RT @CGlenPls: Merry Christmas. The reindeer population is depleting at an alarming rate due to climate change. Ho ho ho 🎅🏿,491775 +@FoxH2181 @A_CLizarazo @KyleKulinski What's your plan for when global warming destorys the environment? No plan? Hu… https://t.co/Dj2BIJqI9y,930852 +"RT @errolmorris: Fuck you to welfare, fuck you to global warming, fuck you to health care, fuck you to women's rights, fuck you to everythi…",208706 +my family that lives in Florida doesn't believe global warming is real and voted for trump,54869 +RT @Robert___Harris: Not sure the squirming on climate change & fear of offending Trump is going to play well for the Tories either https:/…,62066 +RT @CMHADirector: @mitchellvii Trump believes in climate change. He's about to change the political climate in Washington DC.,10993 +"Under Rex Tillerson's tenure, Exxon Mobil covered up climate change research by their own scientists https://t.co/QV4k11GqdT",629210 +Get real on climate change PLEASE https://t.co/v4wTucKfXo #nopipelines #stopkindermorgan https://t.co/PAUtyGWE6d,483522 +"@peyton_mg or when they remove any evidence of climate change, anything about ciVIL RIGHTS, AND HEALTH CARE.",810782 +RT @BelugaSolar: The complex world of climate change governance: new actors; new arrangements https://t.co/kflzE5JNKz,801097 +RT @SYDNEYKAYMARIE: wow would you look at all this climate change,117955 +RT @brainsoqood: mane that lil cold front we had bout a month ago was a mf tease . had everybody excited & shit . fuck global warming,857587 +"RT @_AlexHirsch: Simple. I believe in climate change, a woman's right to choose, gun safety & the wealthy paying their fair share. T…",756775 +"There u go, only a few days in and he's already fixed global warming, what was everyone panicking about",886329 +‘Shell knew’: oil giant's 1991 film warned of climate change danger | Environment | The Guardian https://t.co/dAjXgcEQWY,629213 +RT @thenib: If the media covered climate change the same way it covered Hillary Clinton's e-mails https://t.co/9fQYlRcq0y https://t.co/bjaF…,130697 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,412538 +While the West drag their feet on accepting that climate change exists. https://t.co/LT2PIElO55,34139 +"RT @GR_ComputRepair: #adelaidestorm I hope everyone in SA safe and sound, it's time to put climate change front and centre for Earth's sake.",149935 +"RT @OCTorg: Rex Tillerson will be in court answering questions about his climate change legacy on 19 January, … https://t.co/4KYEpw5e1b via…",813785 +RT @jakeu: Christians who refuse to care about climate change are outright disrespecting one of God’s most masterful creations.,74650 +@Brian_Pallister Shame on you for not supporting the national climate change plan,465837 +RT @MarieFrRenaud: The cost of doing nothing about climate change. #ableg #cdnpoli https://t.co/c2aYDkdszL,353152 +"RT @SABIC: #SABIC sustainability initiatives feature on KSA climate change website for #COP22 +https://t.co/M05d6slaAC",331104 +"Climeon power technique, used by Virgin Voyages, claims it has potential to help 'reverse climate change'… https://t.co/dlFYdEZKuk",56069 +"RT @nytimes: In South Florida, climate change isn't an abstract issue https://t.co/H3nEB7oJYH https://t.co/uQrVykw4ta",723413 +RT @DavidOvalle305: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/cPk8tIW8Cf,243069 +@MailOnline We love climate change!,482844 +"EPA boss says carbon dioxide not primary cause of climate change, contradicting all the scientific evidence… https://t.co/SbIbmne5sC",516277 +https://t.co/LNR1MMcEYu 'The scales have tipped': Majority of investors taking action on climate change! Where's Turnbull? Still fast asleep,634035 +In 4 days the most ambitious climate change agreement in history enters into force. Have you read... https://t.co/ndp1LS0Dmq,331193 +"RT @arjunsethi81: 2016 was the hottest year ever recorded. During that year, the 4 major networks devoted 50 minutes to climate change http…",474759 +Panel recommends transparency measures on climate change https://t.co/lQHi3Uvnay,488620 +"Earth's mantle hotter than scientist thought... volcanos will continue to impact climate change. i see a carbon tax. +https://t.co/eQEvF8JNp7",839352 +@Chicken_Pie22 climate chbage is arguable on both ends. I was pro climate change but after reading into it have chbage my perception.,391234 +RT @guardian: Ivanka from Brighton sends climate change reply to Trump https://t.co/iJ63nGWJji,313648 +"Omg. FBer complaining about the science march says it's not the US's responsibility to 'cure' climate change, let other countries do it.",659109 +"@JuddLegum What an understatement, @nytimes. What's going on? Between this & the climate change thing, it's fairly… https://t.co/82cXWhpKpD",662221 +RT RaysLegacy 'RT DrShepherd2013: Over the top alarmist articles about climate change are just as irresponsible as baseless skeptic claims.…,296437 +"RT @Anotherdeedee1: #ImpeachTrump +hoax vs profit +#TheJournal.ie DonaldTrump cites global warming as reason to build his Atlantic wall htt…",193971 +Dramatic Venice sculpture comes with a big climate change warning https://t.co/ams7rf9Ct5 https://t.co/wk9ArwizmO,787920 +"RT @EnergyFdn: Bill Gates, others launch $1B fund to fight climate change through energy innovation: https://t.co/cnPQsk9Bcw",535511 +#airpollution Arnold Schwarzenegger with some sense on climate change - https://t.co/R5J70HY092 via @knowabledotcom,769581 +Will China lead on climate change as green technology booms? https://t.co/wRTeXEK5y0 #Moraltime,349431 +RT @ChristopherNFox: Dear @realDonaldTrump @IvankaTrump: About 97% of #climate scientists agree that human-caused climate change is happ…,929265 +@Rachel__Nichols global warming,795123 +"RT @_joshuaaaaa_: why y'all arguing about prom capacity when it's already set in stone, there's other issues like global warming that…",155398 +@RonBaalke @Newegg and with climate change we can expect asteroids to become more frequent and powerful,725497 +RT @molly_knight: Oh my god my dude Mike Levin destroyed @DarrellIssa on climate change. What a blessed day! https://t.co/JucxpXYk1m,235678 +RT @IChooseLife_ICL: Prof Wakhungu-CS Environment now addressing on urgent actions that needs to be taken so as to combat climate change…,369892 +"@MikeBastasch @DailyCaller there has always been global warming and cooling , man has nothing to do with either",989976 +"RT @StreetCanvases: HULA / Sean +Tackles the theme of climate change with an amazing temporary mural done with natural chalk that washes…",685160 +RT @ScienceMarchDC: NASA is still communicating climate change science #ScienceMarch #NASA #Climate https://t.co/3omWE4kV8Y,345451 +@wef If that's the case please RT this @POTUS @realDonaldTrump because he is illiterally the death of us! #global warming,875429 +"RT @AdriaSkywalker: Me, when I think about how global warming is literally making the earth inhabitable, but the ruling class cares onl… ",588854 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,398409 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,142668 +"RT @Mattrosexual: If global warming isn't real, explain to me why club penguin got shut down?",868078 +Where is the correlation??? It is a proven fact that human activity and fossil fuels cause climate change�� someone… https://t.co/7QAni2ICFT,449764 +Scott Pruitt turns EPA away from climate change agenda - https://t.co/gGKOaXRRQS - @washtimes,194389 +"RT @mombot: Didn't a cat run onto the field at a Marlin's game earlier this week? + +I blame global warming. https://t.co/tmz797dPqc",465891 +RT @BillMoyersHQ: There are also 21 kids suing President Trump over climate change here in the US https://t.co/cEysoi4pva https://t.co/mS84…,861701 +"@ambrown And much like the cherry blossoms (thanks, global warming) it's coming earlier every year.",668682 +"RT @voungho: this ended poverty and climate change, my crops grew to their maximum potential and the world is suddenly cleansed…",859322 +RT @luisbaram: 'Fight climate change' is a polite way of saying: we're going to rape you with taxes and waste all that money in pointless p…,397319 +RT @ajplus: Trump picked a climate change skeptic to head his EPA transition team. https://t.co/3Odv7hO57P,662170 +"RT @BernieCrats1: BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is … https…",447574 +"Trump believes climate change is real, says Nikki Haley, U.S. ambassador to the U.N. https://t.co/WOCAlLLnbm via @WSJ When it comes from him",550614 +"RT @Impeach_D_Trump: Meet Scott Pruitt, the climate change skeptic that the Senate just confirmed to lead the EPA. https://t.co/EzFjk8NdKo",434903 +"Earth revolves around the sun, it isn't flat, and climate change poses a dire threat to humanity @realDonaldTrump.",939644 +"RT @LKrauss1: Women's rights, and climate change. Two reasons Trump needs to lose, and hopefully Democrats gain senate majority.",629964 +Legitimate question: How do people believe China made up climate change,822224 +"RT @godkth: - women's rights +- lgbt rights +- planned parenthood +- black lives matter +- climate change +- education +- disabled p…",372060 +John Kerry says he'll continue with global warming efforts https://t.co/XEVSoxtuHk https://t.co/mPCziP5KWL,575133 +Catalina United Methodist hosts lecture series on climate change - Arizona Daily Star https://t.co/wnNY3X15a3,996535 +Global man-made 'climate change' is a fraud. Trump better stop listening to the tree huggers.#trytostopthewind,627536 +@trutherbotwhite Time magazine has a 1920s article talking about global warming. Conclusion=the Earths climate always changes.,773818 +*69degrees out* 'I hate that people are saying it's beautiful out! It's global warming! Global warming isn't beautiful' @doradevay10,943559 +@ZanerBurr0522 'global warming is a hoax by the Chinese government',910094 +"RT @andrew_leach: @AlbertaBluejay Consultation was on best response to climate change for AB, and policy advice based on input, tech…",40552 +@mzemendoza don't thank global warming,949845 +RT @RHSB_Geography: #mapoff2016 collecting views on the impacts of climate change. Join in https://t.co/0JphxQGoYp @digitalGDST https://t.c…,893456 +Weekly wrap: Trump budget savages climate finance: This week’s top climate change stories. Sign up to have our… https://t.co/Ldh5qrKklR,799680 +RT @CarbonMrktWatch: 'indigenous people have contributed least to #climate change and they pay the highest price' says rep. of @iipfcc http…,478024 +Fuck all the people who don't believe in global warming it's real and we need to actually need to pay attention to it,249709 +RT @ClimateCentral: It's been 628 months since the world had a cool month (thanks to global warming) https://t.co/aFhq46q4BB https://t.co/E…,815643 +#TEAParty https://t.co/mcCHdVbq5T Lord Monckton shows IPCC Pachauri is dishonest about global warming after being corrected,10542 +"I'd love to, but climate change says 'No'. +#NoWhiteChristmas anymore. +#Germany https://t.co/eAz4sNxLCk",313029 +"@VeganHater420 to reduce animal cruelty, to reduce water waste, to reduce global warming, to practice what I as a studying scientist preach",551318 +@Dokuhan biggest problem too is that so many people in our country don't believe in climate change for selfish reasons. Dangerous times.,682768 +Rex Tillerson: Secretary of State used fake name 'Wayne Tracker' to discuss climate change while Exxon Mobil CEO https://t.co/paBFewCbzS,541054 +Poll finds more Scots want stronger action on climate change - The Scotsman https://t.co/feEh47yrjN https://t.co/AzGQA7FY7Z,921977 +"RT CoralMDavenport: Scott Pruitt says Co2 is not a primary driver of climate change,a statement at odds with globa… https://t.co/9tEQoqAMnD",40585 +More on the opinion pages about climate change - Ilona Amos: More must be done to to fight climate change https://t.co/1z0QJZjsAb,2551 +RT @sciam: The Arctic is undergoing an astonishingly rapid transition as climate change overwhelms the region. https://t.co/snnFNWwi04,3449 +"RT @homotears: the chainsmokers are the reason there is no cancer cure, war, isis, global warming and diseases.",306708 +@tetsushinjou inside because of the weather and that led to climate change etc,33638 +I fucking knew global warming is real https://t.co/OTIY8adbsQ,340490 +RT @Bakerwell_Ltd: Ladybird book for adults on challenges and solutions to climate change co-authored by Prince Charles https://t.co/kqjrus…,371368 +Study offers a dire warning on climate change https://t.co/PdZSO3Jb2U,403307 +97% of climate scientists say climate change is real. If 97 doctors out of 100 said you have cancer would you believe the 3 that didn't?,443723 +RT @ChrisSalcedoTX: Anyone else tired of militant gay agenda & man made global warming fantasy being shoved down our throats on @warnerbros…,917808 +"RT @timgw37: NRO 'The doings in Washington have a distinctly tropical feel to them, and it isn’t global warming...' KevinNR https://t.co/B7…",109773 +RT @mitchellvii: Merkel thinks flooding Germany with dangerous terrorists is a GOOD idea and that global warming is her biggest threat. Yep…,964844 +RT @LeoHickman: 'We must lead the free world against climate sceptics': EU says it will remain top investor against climate change https://…,875387 +"RT @JENuinelyHonest: @ABCPolitics 'Attacks from academia' because they said climate change is real and we shouldn't gut the EPA, that's an…",807641 +RT @_iAmRoyal: So many of my friends' families live in FL and are too poor and/or too disabled to evacuate. Capitalism and climate change a…,190559 +"Nationalism isn't the worry. Mass migration, climate change & Islamic fundamentalism are, but not allowed to say. https://t.co/k2suFkdFpk",929097 +"RT @aarnwlsn: when they're socially aware, care about bees, believe in global warming and climate change and support equal rights https://t…",216996 +"RT @markleggett: I believe that climate change is real, that it's man-made, and that we need to stop harming the Earth, which is very obvio…",305367 +RT @FoxNews: .@greggutfeld: 'It's crazy to think that climate change takes priority over terror.' #TheFive https://t.co/B4lTub47Af,560286 +@ChrisCuomo Comparing climate change denial to being a segregationist. You are a vicious monster. You and Camarotta are demonic.,643108 +RT @IRMercer: We cannot continue to tinker around the edges and hope for a miracle cure to climate change. Nice one @Amelia_Womack https://…,991972 +RT @RevRichardColes: That's the way to tackle global climate change: treat it as a domestic issue so the UV toasts only cheese eating surre…,65425 +Pacific peoples responses to climate change have been developing and adapting for decades and these should be recognised #ASAO2017 1/2,336322 +"RT @FAOKnowledge: Hunger, poverty & #climatechange need to be tackled together. How can #agriculture contribute to climate change mit…",126840 +RT @MickPuck: Well done Trump voters! #yourtrumpviote put a climate change denier in charge of the EPA https://t.co/GhSminTiHF,66121 +Nature: the decisive solution for the climate change crisis https://t.co/L3AsdT9uh4 via @AidResources,619287 +"RT @IHubRadio: Agriculture doesn't just contribute to climate change, it could help reverse it. https://t.co/PAdzXucJWg Via… ",124378 +RT @Independent: Donald Trump planning to force environment agency to cancel all research into climate change https://t.co/KOhnljS5cQ https…,587313 +Energy review of the year: Bad year for coal and uncertainty over climate change https://t.co/To9vGTGiZY,447439 +RT @guardian: The Guardian view on climate change: bad for the Arctic | Editorial https://t.co/xbzxPTWCiP,699344 +RT @nytimes: The White House refused to say whether President Trump still believed that climate change was a hoax https://t.co/VZGWJrcAu3,700265 +"RT @DanielMaithyaKE: Integrate climate change measures into national policies, strategies and planning #KenyaChat",201084 +@eadler8 @bmsnides climate change. You are devoting your career to science. This should matter to you.,787460 +RT @BillRatchet: ain't no one scared of climate change until mother nature comes out with a gucci belt on,772476 +RT @smitharyy: Earth Hour shines light on climate change #EarthHour... #EarthHour https://t.co/VYk63z40ZU,999493 +"@doctorow Well, it would solve the global warming problem.",649075 +RT @climatehawk1: Trump inspires scientist to run for Congress to fight #climate change - @NBCNews https://t.co/p0s0ufmzKh…,754715 +"RT @Isabellaak_: If you don't believe climate change is real, you're wrong. And Leo is here to tell you why. #BeforetheFlood https://t.co/h…",20118 +@MarkHerron2 @Gzonnini Tell these guys climate change ain't happening. https://t.co/1bQ14F6oWb,606310 +@destiny221961 then they speak abt global warming..haha! Who believes that!,629888 +RT @davidtracey: Would a true climate change leader choose 2 Texas oil billionaires (#kindermorgan) or people like us? Your call…,138102 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,966636 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,260253 +"RT @billmckibben: Trump is making biggest bet any leader has ever made: physics isn't real, and climate change can be safely ignored https:…",837801 +RT @JoseMGo66241080: Test nice day it will be a hot summer with more global warming https://t.co/XbY6jPvr5p,411449 +"RT @SafetyPinDaily: We’re “removing outdated language”: Trump’s EPA has taken down its climate change page | via @qz +https://t.co/UgrBo6N9i4",46829 +"RT @ExconUncle: One bird cannot stop deforestation, carbon monoxide, oil spills, global warming etc etc.... But TOUCAN !! https://t.co/tNXu…",422748 +RT @DavidPapp: Oman's mountains may hold clues for reversing climate change https://t.co/G8KTZFRPro,703922 +RT @KatrinaNation: My take this am -- Trump’s denial of catastrophic climate change is a clear danger https://t.co/rVYrkjAzRu,329328 +"30 Cancel billions in payments to U.N. climate change programs +31 Lift restrictions on production of job-producing American energy reserves",604545 +"RT @tuesdayreviews: 2044 + +Expert: Central planning made effects of global warming far worse. + +Bernie bro: Well actually, that wasn't real s…",194969 +"Whistle blower-NOAA scientists cooked climate change books, gets zero coverage by liberal media- still think theirs isn't fake news?",386862 +RT @motherboard: Vancouver is considering abandoning parts of its coastline because of climate change https://t.co/2vM1TiYfkR https://t.co/…,778479 +@realDonaldTrump @TGowdySC @SenatorTimScott globalists need to stop manipulating weather 2scare people into thinking global warming is real,25665 +RT @MarkRuffalo: .@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t…,587685 +RT @JasonMorrisonAU: Dealing with 'global warming' Down Under. https://t.co/GOQzwYofUP,154455 +"RT @EcoHealth13: Conversations about climate change +The Naked Scientist @RadioNational +https://t.co/xh4Jedj2Iy",810205 +"RT @bourgeoisalien: TRUMP:I don't believe in climate change bc it never believed in me + +TRUMP's inner voice: ur confusing that with ur dad…",429754 +RT @nadasurf: .@IvankaTrump i really wish climate change wasn't real but i'm afraid it is. please help. the world would be so grateful. al…,497142 +RT @JacobWhitesides: I think that's global warming not christmas https://t.co/VVAzjVXH6w,332117 +COP22 host Morocco launches action plan to fight devastating climate change https://t.co/t0h9Fk3xfS @aarmd1 #COP22 #climatechange,689977 +RT @michelmcbride: these people don’t even accept scientific consensus on climate change. Directing to expert opinion is a dead end https:/…,15344 +RT @CDP: America's corporate giants are unequivocal that tackling climate change is an enormous business opportunity…,348067 +@ANOMALY1 You would need one of those liberal global warming expert to explain a phenomenon like that.... 🤔. LOL. 😂,445232 +"RT @WIRED: Obama, speaking about climate change, urges the importance of science and facts when developing solutions.… ",110434 +RT @Newsweek: A high-level climate change summit was mysteriously cancelled a few days before Donald Trump took office…,23501 +"RT @baesicderek: just vote for Hillary fuck it, at least she believes in climate change",745898 +RT @flippable_org: Scott Pruitt is dangerously wrong on carbon dioxide & climate change. He has no evidence for his claim. We have decades…,348993 +RT @jaylicette: I'm really worried about what's going on with the planet and the weather and climate changes and global warming. Send links…,86112 +"RT @UN: There is optimism in the fight against climate change, but the best time to act is now. @WMO chief explains more in…",847851 +RT @YorkshireWP: This graphic by PBI perfectly illustrates the extremely worrying effects climate change is having on the Arctic sea…,609103 +Analysis: Trump's a climate change pariah https://t.co/hDFsfFy5rb #WYKO_NEWS https://t.co/wazAO6GhcP,839077 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",257291 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,529894 +Climate hawks unite! Meet the newest members of Congress who will fight climate change. https://t.co/0VhsXRzyZw via @grist,589853 +"RT @Forbes: UNICEF USAVoice: UNICEF has issued a new report on what climate change is doing to our kids +https://t.co/zWYzEuPO9O https://t.c…",916547 +This sh*t is real | Scientists know storms are fueled by climate change. They just need to tell everyone else. https://t.co/eBb9C1IR7N,479855 +kiwinsn: cnnbrk: Judge orders ExxonMobil to turn over 40 years of climate change research. https://t.co/oBYGuFSIGA https://t.co/nMhp7g3g2r,715783 +It's been 1 week since I deleted Grindr. The sun is brighter. The birds are singing. Actually this may just be global warming never mind.,764927 +Holy moly this bitch thinks global warming is fake https://t.co/kWywtdsEsR,784447 +RT @cool_as_heck: Unbelievable that Club Penguin is shutting down yet people still deny the impact of climate change on our planet,862004 +"Pollution, climate change affecting everyone: Rajnath Singh - Economic Times https://t.co/uOVrHoiXkY",788502 +"RT @haydenblack: New EPA chief Scott Pruitt says there's 'tremendous disagreement' about climate change. + +Specifically between corporation…",905470 +RT @verge: Google Earth’s Timelapse update illustrates 30 years of climate change https://t.co/kTDUWZASfc https://t.co/0zIdtW9bzG,59972 +RT @CBSNews: Bernie Sanders: 'What astounds me is that we now have a president-elect who does not believe climate change is real…,558929 +RT: @ajenglish :Not all fur and waddles: This Penguin colony is at risk from climate change https://t.co/YCRwpA7iWi,749131 +The other climate change Trump doesn't understand: How the energy business climate has shifted - Washington Post https://t.co/bJBBieGsac,33039 +Meteorologist Paul Douglas talks climate change under Trump @jimpoyser https://t.co/FkeCMmjL6J https://t.co/cbO5FXPGv4,692983 +U saying bringing back manufacturing jobs and global warming isn't real is not being out of touch with reality? https://t.co/sAe7nOYgSC,456800 +Malcolm Roberts on why he doesn't believe in climate change - SBS https://t.co/BzWERwZOlq,167743 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,206677 +"Derrick Crowe is running for Congress to unseat one of the most ardent climate change deniers in Washington, Rep. L… https://t.co/VhgDuERdWD",76347 +RT @danvstheworld: God knows I never expected to say this but I hope Prince Charles kicks Trump's ass over climate change.,975857 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,900572 +"RT @PaulEDawson: USDA has begun censoring use of the term 'climate change', emails reveal. #ActonClimate #ClimateChange https://t.co/D545F…",776019 +RT @Slate: Trump will be the only world leader to deny climate change. https://t.co/thTQM5qEy6 https://t.co/0WvubdXUqu,315754 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,618247 +@BGPolitics Ever consider the fact that money is imaginary but climate change is real? It puts this proposal in perspective.,854472 +Will climate change hurt our mental #health? https://t.co/7FOAuVs3zT https://t.co/p6yffKUYhb,767416 +"@aniaahlborn I had to scrape an inch of powdery white global warming off my windshield the other morning... But hey, I live in Ohio",824297 +"Centrica has donated to US climate change-denying thinktank + +https://t.co/7d9RLZqrHu",226628 +"RT @YesBrexit: Tim Farron: 'There's no bigger threat to our country than climate change.' + +Those suicide oak trees need watching. #BBCDeba…",384950 +RT @SierraClub: “The only way to defend Sudan against climate change is through education. Trump’s ban cuts us off from that” https://t.co/…,470743 +"@RupertMyers Good luck to him getting climate change, social justice and inequality support from Trump.",628227 +RT @royalsociety: A saddening new study suggests many species will not adapt fast enough to survive climate change https://t.co/WXHKL8avw5,569901 +RT @HirokoTabuchi: Why do people question climate change? via @nytclimate https://t.co/2gt8B442Y3 https://t.co/dcIgYRZFNp,183605 +"RT @MediaEqualizer: London's mayor saying can't stop terrorism...but can stop climate change? And if he's right, why no terrorism in T…",39796 +RT @PopSci: Doctors unite to say climate change is making us sick https://t.co/T5Hryel0Jl https://t.co/KBlt2ouP5K,967810 +RT @GavinNewsom: Trump's choice for EPA Chief said he's skeptical of climate change & believes the debate on it is “far from settled” https…,842975 +RT @williamsonkev: This is the clown who's gonna battle against climate change when he leaves Whitehouse. LOL https://t.co/FIxFejs34h,829262 +"I think it will help, also, if the 'clean' part is emphasized more - for those who will always deny climate change. https://t.co/PUxNinW16U",43283 +I really don't see why you can't read the Bible AND believe in climate change,263778 +RT @Lagartija_Nix: Donald Trump to send Nasa astronauts to the MOON by cutting US climate change budget https://t.co/p4Twmmv2kz,544747 +F U climate change!!!����(but also I'm very aware this is all our fault cause people are gross monsters. I'm sorry mo… https://t.co/8nyZ0eHEA0,160865 +"After floods, Peru has an opportunity to rebuild smarter | Climate Home - climate change news https://t.co/iBgCuB4pGq via @ClimateHome",870306 +RT @voxdotcom: Trump took down the White House climate change page — and put up a pledge to drill lots of oil https://t.co/pFTyaKxmLW,317941 +.@RepJohnKatko Don’t let our children face climate change disaster! #ParisAgreement #CleanPowerPlan #SaveTheEPA #ActOnClimate #swingdist,242541 +"RT @CIBSE: '72% of people we surveyed were concerned about climate change. It's not just an economic argument, it's moral too.' R Gupta #CI…",264786 +I find it hilarious I argued for three days on twitter with atleast 50 climate change scientist idiots and now you will be getting 0 for BS.,502689 +RT @BuckyIsotope: Good thing America doesn’t have to worry about climate change because Jesus will protect us with a magic bubble,175518 +RT @ClimateCentral: This is why National Parks are the perfect place to talk about climate change https://t.co/dlza7hpubc https://t.co/nqqO…,966995 +RT @HarvardHBS: Business is one of the few institutions with the capacity to tackle climate change on a large scale…,58075 +Warning on climate change as mercury rises - Independent.ie https://t.co/PbCviP7yTI,936594 +RT @DineshDSouza: Let's see if the world ends when @realDonaldTrump 's climate change rollback goes into effect (Hint: It won't) https://t.…,945413 +"@MyMNwoods Hey! We have a new board for bouncing ideas on climate change, are you interested? https://t.co/LTVC09rfhf",956383 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,796714 +@evcricket if climate change radically alters precipitation rates I wonder how that impacts ROI for solar projects?,994587 +It's 65 degrees how can you not believe in global warming?!,855668 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,632029 +"@Bakari_Sellers away@mikefreemanNFL yeah, this will make climate change disappear. Yeah",99436 +"♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/DEawwT5nO9",498187 +RT @TheEconomist: Over 90% of global warming over the past 50 years has occured in the ocean https://t.co/1nwF6rlpM3,459281 +"RT @CenCentreLoire: Also in english, must read abt connections between climate changes and armed conflicts 'From Climate Change to War' htt…",314913 +RT @nytimes: See how climate change is displacing people around the world. Resettling the first American climate refugees: https://t.co/FgH…,343021 +RT @ClimateChangRR: Top climate change @rightrelevance influencers (https://t.co/cYQqU0F9KU) to follow https://t.co/3he3MjiW9d,761759 +RT @GreenStar_UK: There has always been reasons to #GoGreen but what are the effects of climate change? Find out:…,9180 +#Nigeria #news - BREAKING: #Trump pulls US out of global climate change accord https://t.co/nm6FBqIjkD,118420 +Carbon neutral' forest resource grab: A corporate detour in climate change race https://t.co/87nvSZX14X @IndependentAus,144978 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/Zazn0D9vrI https://t.co/gVyz0KndxA,259239 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,597539 +"@turnflblue What we need is all powerful czar. One that can, in the name of climate change, dictate our lives for us. Sign me up!",803311 +@BlacksWeather Is this just summer or increased by global warming or can we say if one or the other ?,678530 +THREE active hurricanes. look me in the eyes and try to tell me global warming is fake. https://t.co/0FUyKFMb1z,738379 +Trump’s defense chief cites climate change as national security challenge https://t.co/nafqXkLZmH @SvD @dagensnyheter @AHallbarhet,784916 +RT @engadget: Trump to sign sweeping rollback of Obama-era climate change rules https://t.co/ioPYZM2rd4 https://t.co/4iWtB9hnv5,723261 +"RT @AJEnglish: How China, one of the world's biggest CO2 emitter is taking the lead in the fight to stop climate change…",520511 +RT @TwitterMoments: The US Agriculture Department has reportedly been instructed to use 'weather extremes' instead of 'climate change.' htt…,318150 +California launches new climate change conference to help fulfill Paris Agreement targets https://t.co/cLA3nzHp2m,347280 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,658258 +BBCWorld: Obama administration gives $500m to UN climate change fund https://t.co/bVuauwnfIQ,834309 +"RT @CllrBSilvester: Gov gave £274 million of your taxes to charity 'to fight global warming' +But has no idea where the money went ???… +ht…",742929 +RT @ineeshadvs: 150 years of global warming in a minute-long #symphony – video https://t.co/wvspa9absi @Alex_Verbeek,957353 +Trump falsely claims that nobody knows if global warming is real - https://t.co/gOHeEY2Yc4,892508 +"@POTUS You are NOT as smart as this man, and HE SAYS the climate change is real and affects the US! And he has SCIE… https://t.co/h0KZ3TUkWA",629115 +Show President-elect Trump that you care about global climate change. Stand with us and make your voice heard! https://t.co/cIHs85vk1F,45783 +"RT @NewScienceWrld: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/fC15w5bBiv https://t.co/qovDLDW7bU",374554 +"RT @dpcarrington: ICYM ‘Moore’s law’ for carbon would defeat global warming https://t.co/rVXigOkHVD +by me https://t.co/hnBgwcE8r5",533692 +"RT @TheDailyEdge: #ImagineTrumpsAmerica +Tax breaks for the rich +Spiraling debt +Slowing economy +No action on climate change +Hostility toward…",239498 +"RT @climatehawk1: Research in ancient forests shows tight link betw #climate change, wildfires https://t.co/SqITlNX48i #globalwarming…",31211 +"RT @SoCal4Trump: Q: What about climate science programs? +Mulvaney: Do you think tax $ paying for climate change musicals is a waste?…",236762 +"Scott Pruitt goes beyond blocking climate change data—will use EPA to get on the bad side of the FBI, but that's just me. #Maddow.",499387 +RT @lauriecrosswell: Trump isn't going to do anything about climate change. He just wants to meet famous people like Leo & Gates. These mee…,372368 +RT @deedeesSay: @realDonaldTrump @NASA If you support science and scientists... then you MUST support climate change!! #resist #trump #TheR…,264138 +Their was a civilization who was more concerned on global warming while innocent muslims were been slaughter in #burma #syria #Iraq,76328 +#weather The world’s best effort to curb global warming probably won’t prevent catastrophe – The Verge https://t.co/IPEPGh5VJ6 #forecast,114951 +RT @Thomas1774Paine: WATCH: Al Gore refuses to give direct answer when confronted over bogus 2006 claims on climate change https://t.co/yWx…,814831 +"RT @CorrectRecord: .@JenGranholm's message to millennial voters: 'If they care about climate change, she has to be their candidate.' https:…",268297 +Some of the variation in fire regimes in this area is attributed to anthropogenic — human-made — climate change... https://t.co/fxfLddo57Q,87226 +"Under Trump shadow, world leaders tackle climate change - https://t.co/QxbVRScYEH",145525 +RT @NickSchiavo_: 'We need to organize. We don't have the luxury to choose between racial profiling and climate change' - @yeampierre on ra…,742467 +RT @Zeke_Tal: He dismantled the whole myth of global warming in 9 words. And some people say he isn't a genius https://t.co/4lct5Xfoji,733277 +@ClimateNewsCA @SteveSGoddard https://t.co/W35Ep04dGH What happened to global warming @algore?,556429 +RT @ConversationUK: What you need to know about the Trump-Xi summit: from trade to human rights to climate change – and North Korea…,984662 +RT @Jackthelad1947: Can coral reefs survive rapid pace of climate change? #StopAdani #savethereef #auspol #qldpol @TheCairnsPost https://t…,863695 +RT @NancyEMcFadden: Next commander-in-chief picks climate change denier-in-chief to lead @EPA. We'll stand our ground. CA’s ready.…,718856 +"RT @twofacedent10: @CChristineFair I was literally shocked when he said, climate change was a Chinese propaganda. Now I understand why Socr…",556202 +"I mean, even Palestine and Israel agree that climate change needs to be addressed.",458662 +RT @sadearthclimate: @realDonaldTrump @mike_pence I cannot support you until you stop denying climate change. Protect our planet by support…,4008 +RT @Harringtonkent: You can't ride out climate change. Game Over. https://t.co/skRyf687Kj,65794 +"Cases of severe turbulence to soar thanks to climate change, say scientists - https://t.co/5YhqcVKJHo https://t.co/pxqwVBoLrf",308686 +RT @MarkLevineNYC: Trump's Tower is perfect symbol of his climate change denial: hogs more energy than 95% of comparable bldgs in NYC:…,77619 +"RT @helenmallam: Time for John Humphrys to retire? +No, that time was ten years ago. +@BBC lies to balance climate change, happy to fuel raci…",986237 +RT @MikeBloomberg: Cities are key to accelerating progress on climate change – despite any roadblocks we may face. https://t.co/hPQF6MJQ1A…,536921 +RT @kstate_geog: Physics' Neff Lecture on Sept. 12 highlights climate change understanding: https://t.co/EYDwBqVAY2,327880 +"@neontaster But in Kluwe's example, in the future climate change will kill actually self-aware, thinking human beings.",519276 +TBF to that Mike Rowe/Bill Nye comparison: Mike Rowe deals with *real* things like jobs and poop. Nye works with things like global warming.,344602 +"RT @AltStateDpt: According to @NASA, 97% of scientists agree it's 'extremely likely' humans are causing climate change. + +This is not a deba…",369696 +"@VictoriaAveyard I know that's not what this article is even about, but still. China could singlehandedly curb global warming.",183392 +RT @MotherJones: Cable news spent less than an hour covering climate change in 2016 https://t.co/47BO4go9j2 https://t.co/pxJ0UaDN2Q,21776 +RT @NatGeoPhotos: These stunning photos of Antarctic ice present visual depictions of climate change: https://t.co/P9ppiMwjMY https://t.co/…,103782 +RT @IanDunt: May with Trump. Fox with Duterte. Foreign Office on climate change. Brexit shows that desperate nations have no principles.,395442 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,528923 +RT @JimCaligiuri: @exxonmobil why do you fund climate change deniers?,203021 +RT @SFUnified: Students @ MLK built model houses to withstand flooding caused by climate change. Lots of project based learning on…,210803 +#NEWS GOP candidate Greg Gianforte gives GREAT answer on climate change; Dem Rob Quist… https://t.co/EkfVGMXYIL,244909 +"RT @trojan719: Why don't you fucking global warming idiots just go away,! Get a real job for a change'.",201132 +RT @NoGMOsVerified: The Carbon Underground brings down-to-earth solution to climate change #GMOs #RightToKnow #GMO /ngr https://t.co/mCZNv4…,333838 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",242928 +RT @nhbaptiste: Most scientists call it 'scientific consensus' but this lawmaker calls it 'climate change policy preferences' https://t.co/…,549548 +RT @Carbongate: Top Russian Scientist: ‘fear a deep temperature drop — not global warming’ https://t.co/zqgkOQfYZg via @PSI_Intl,971087 +RT @MarcusWRhodes: Butterfly conservationist who informed climate change policy gets OBE https://t.co/sKUfch35Rw,198173 +RT @eci_ttip: .@EP_Environment #CETA goes in the opposite direction of our commitments to limit global warming below a temperatur…,507787 +"RT @timesofindia: India, China already showing strong leadership to combat climate change: UN environment chief…",744350 +"RT @ddale8: Accurate but rare NYT language here: headline describes Trump's EPA pick as a climate change 'denialist,' not a 'sk… ",989276 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",464956 +RT @FrankBruni: 'Scientists' won't sway Trump. I direct you to climate change. I direct you to vaccines. https://t.co/kiiEyN4E4A,825104 +"As Trump heads to Washington, global warming nears tipping point https://t.co/SrhZF1buvq via @markets https://t.co/59ys5Ayekw",893902 +"We must combat climate change. Indigenous ppl are protesting for our earth, our water. Yet this happens: https://t.co/EUDmjbgbkx",790917 +RT @DeanBaker13: More evidence of that Chinese hoax on global warming https://t.co/Ek1LXTliaQ,939067 +"RT @thehill: Trump budget eliminates dozens of EPA programs, climate change research: https://t.co/qS1fC0SCbA https://t.co/tunHyhyPIZ",44875 +The fight against climate change: 4 cities leading the way in the Trump era https://t.co/4PwGkymGHe v. @guardian https://t.co/xWPC84scZD,725908 +RT @theblaze: Watch: It takes Tucker Carlson just 90 seconds to completely destroy liberal hypocrisy on climate change…,162327 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",857432 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,512973 +RT @PsyPost: Study: Moral foundations predict willingness to take action to avert climate change https://t.co/qiwmBoSIeq,665155 +RT @MrEvanMcCann: 2017: People don't believe in global warming but they still trust a fucking groundhog to predict the weather.,481258 +RT @Independent: Emergency campaign launched to convince Trump climate change is real https://t.co/obbXYhFxNS,101492 +RT @IsabelleJenkins: Is climate change the next emerging risk for #banks? PwC’s Jon Williams on this key topic https://t.co/SqEfkZkvKV,282384 +RT @Stevenwhirsch99: Obama can take a 747 plane to rally for Hillary and then ask us (tax-payers) to support 'climate change'. Hypocrite mu…,563804 +RT @afreedma: Rick Perry sounds so reasonable while calling for a climate change 'debate.' Too bad it's BS https://t.co/0tbEeBKu3g https://…,380930 +Bill Gates warns against denying climate change. #climatefacts https://t.co/3uJ2r1QHOQ via @USATODAY,63274 +Donald Trump’s Mar-a-Lago Florida estate to be submerged by rising sea levels due to climate change via /r/worldne… https://t.co/ceJuDNubje,796774 +RT @jiatolentino: What if there was a climate change fundraiser compilation album called It's a Hot One that was just 13 artists covering '…,642040 +China to Trump: Wise men don’t sneer at climate change https://t.co/dNZMpXBCi2,500526 +"RT @CowsEatGrassBlg: Climate change and global warming is a clever way to distract from what is truly happening...global poisoning. +#scienc…",671048 +RT @GeoffGrant1: National Parks are perfect places to talk about climate change. Here's why https://t.co/HJZ8njSJRz https://t.co/QinEAgNcGb,486218 +RT @robreiner: Ed. Sec. against public ed. HHS sec. opposed to Medicare. Labor sec. against min. wage. EPA head a climate change denier. DT…,511422 +@Tearanged maybe he'll make the climate change easier lol ���� https://t.co/2grVo3Wg5e,165759 +"@JonahNRO No but seriously, oj is getting out.... he will kill us all. This is more ominous than global warming",645301 +"RT @IssaShivji: '...just as climate change is the natural byproduct of fossil capitalism, so is fake news the byproduct of digital… ",710223 +RT @Harvard: University of Alaska scholar describes a coming crisis of displacement due to climate change https://t.co/dg4ecZy6gj,990571 +"RT @RepStevenSmith: A CNN host said we should all vote for Hillary because she believes in climate change. + +These countries make one t…",569637 +Event in #Kendal on 30th Nov 7.30pm: 'Images from a warming planet' by Ashley Cooper (talk & book launch): https://t.co/JT1aiUuap7 #Cumbria,721243 +Sweden passes climate law to become carbon neutral by 2045 | Climate Home - climate change news https://t.co/TjlxGvXM0S,548509 +fighting climate change all over the world except here in the U.S. where our President believes his a hoax created… https://t.co/fufUdtNANL,274643 +@skilling tells #AtlanticAirSummit that climate change is happening in round table with @gretamjohnsen and @DAS_Illinois.,695145 +@realDonaldTrump doesn't believe in global warming? https://t.co/AxD9Xzuz5W,255777 +RT @AnnCoulter: Everybody use aerosol this week! Maybe we can jump-start some global warming. https://t.co/fgGCv3JHH2,593154 +EPA chief: Carbon dioxide not 'primary contributor' to climate change @CNNPolitics https://t.co/4k9fxHkreu,502769 +"SHOCK: The ‘Father of global warming’, James Hansen, dials back alarm https://t.co/0qbzmWFQ59 #thedailybulletin",599372 +Those who #preach from the altar of man-made global-warming purposefully confuse natural climate change with man-made global warming.,579198 +"RT @iamtdags: Yet climate change is not a thing. Wake the fuck up, @GOP @realDonaldTrump https://t.co/Wsdmz4bQ81",174276 +"RT @pablorodas: #climatechange #p2 RT Endangered, with climate change to blame. https://t.co/1lWNWChZuL #COP21 #COP22 #climate…",952316 +"In executive order Tuesday, Trump will dramatically alter US approach to climate change: https://t.co/sI6YSpwQWz",146567 +@alexburghart There's £1bn missing! Gone as a bung to homophobes anti-abortionists and climate change deniers in ex… https://t.co/fDCE8t8bDX,519007 +Thunderstorms in February? And there are SOME people who say global warming isn't real. #how #globalwarming,497620 +"Depression, anxiety, PTSD: The mental impact of climate change - CNN [Our ancestors are from there so proly related] https://t.co/1pX8PDbKUq",83071 +RT @haroldpollack: The New York Times should not have hired climate change bullshitter Bret Stephens https://t.co/35zUSWXvev via @voxdotcom,316882 +@RedShirtOne @XCrvene @pogatch44 @dianeneve53 @nullhypothesis9 like climate change?,441233 +"RT @neymadjr: - women's rights +- lgbt rights +- planned parenthood +- black lives matter +- climate change +- education +- disabled p… ",534393 +"RT @SamSchaffer3: Today we are mourning the end of the USA, the rights of women and minorities, and any progress in climate change. #Trump…",313809 +RT @GreenEdToday: 'I believe climate change is the defining environmental issue of our time. It's hurting people around the world. It…,515011 +@realDonaldTrump @EPAScottPruitt @jiminhofe So more than half of Americans believe in global warming. So why is Tru… https://t.co/iWh9fXjluU,53376 +And investing today in mitigation & adaptation to #climate change will limit human suffering & limit risks/costs --… https://t.co/aTglwWV0pf,449332 +Alberta ice climber to go inside a glacier to measure climate change effects #climatechange #iceclimbing… https://t.co/b2suzYtYaY,358684 +"RT @SocialistVoice: Tories now have a climate change sceptic, a man who hates Europe, an NHS privatiser and a PM who hates human contact ht…",910878 +RT @realDonaldTrump: It's freezing and snowing in New York--we need global warming!,683328 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,632209 +"RT @renew_economy: Trump’s position on clean energy and climate change is little different to that of Tony Abbott’s, whose policies... http…",63394 +UW faculty challenge DNR climate change revisions: https://t.co/Ye7rnNXsTv https://t.co/y4BrPpER56,258494 +RT @Amplitude350Lee: This is nuts. The 'Green Party' is endorsing a man who doesn't believe in climate change. I guess they got the 'g…,17146 +I can't seem to find proof that global warming exists... https://t.co/sIIm16FPp4,113406 +March 2017 continues global warming trend https://t.co/AfxRhcZiVl https://t.co/LdQ2E4GA9l,791872 +RT @womensart1: Argentinian artist Andrea Juan's decade of Antarctica installations/performances highlighting climate change…,30382 +Just found this. An environmental cover-up to substantiate the global warming narrative? @FrankMcveety https://t.co/0FiJxfL07t,468651 +RT @joshgad: The fact that not one of our three debates raised the question of climate change is a disgrace. https://t.co/FdqCXkm34A,807521 +"RT @YaleE360: Thanks to climate change and ice melt, countries are preparing to transform the Arctic into a major shipping route.…",844696 +"RT @c40cities: Aggressive mitigation of methane across all sectors can reduce global warming, improve public health and air qualit…",37056 +"guess who trump learns science from? + +Putin says climate change not man-made https://t.co/rb8vCaMBrA",697676 +@SecretarySonny @POTUS @USDA @AsaHutchinson climate change is no joke! Good luck to all!,108031 +"RT @BalrogGameRoom: global warming? fine +trump getting elected? ok + +but not this oh god please not this https://t.co/8QDPxxeRw0",863487 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,550647 +RT @g_mccray: EPA head Scott Pruitt denies the basic science of climate change https://t.co/qVnxk7bwL7 via @nuzzel,872306 +RT @FSologists_AK: Subsistence hunters say access to wildlife resources greatest threat from climate change says @uafairbanks study…,368994 +"RT @goldengateblond: Hey Tanya, the effects of climate change can significantly impact terrorism. https://t.co/TOQ3yOXRX5",987129 +@nytimes Amazing and beautiful. Too bad they will be in danger of extinction due to climate change.,293586 +"Top Diy story: To slow climate change, India joins the renewable energy revolut… https://t.co/54jseciF6h, see more https://t.co/va9CZrcnbD",659119 +RT @MrBeastYT: If global warming doesn't exist then why did Club Penguin shut down?,489550 +Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/K5utnt6dJv,688476 +If you think global warming is a joke please watch Before The Flood. Unreal doc,557113 +June 7th. Its 12 degrees outside. Fn climate change is fn real people ��,458344 +"@AlexHaase2010 if global warming ever kicks in and we get some warm weather I'm taking Lacey to DQ for her cone, she love em",343594 +RT @catfuI: The new president of america is going on trial for raping a 13 year old girl and doesn't believe in climate change,423020 +"RT @frontlinepbs: In 2012, FRONTLINE took an in-depth look at the groups fighting the scientific establishment on climate change https://t.…",3462 +"Mixed signals for economic switch on climate change https://t.co/plNVePUXVh https://t.co/SvbziCCVs9 + +— ABS-CBN News (ABSCBNNews) November…",256331 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,182779 +RT @SincerelyTumblr: if global warming doesn't exist then why is club penguin shutting down,726997 +"RT @Blueskyemining: Meat production is a leading cause of climate change, water waste, and deforestation. #GoVegan! https://t.co/QQjXNxLk48",839310 +"RT @climatehawk1: Carbon dioxide must be removed from atmosphere 2 avoid extreme #climate change, say scientists…",366691 +RT @keywestcliff2: #Chicago #BlackonBlack murder rate soar. #Dem run cities responsible for more deaths than 'global warming' will ever cau…,793782 +RT @NewsHour: Listen to 58 years of climate change in one minute https://t.co/3yHZ7omEsT (via @KUOW and @EarthFixMedia),761451 +UCSD scientists worry Trump could suppress climate change data https://t.co/pIFHnoYPRR,529987 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",880139 +RT @AshGhebranious: Truffles speaks about inter-generational theft. His climate change policy is inter-generational murder #auspol #qt,907108 +"RT @EricHolthaus: To help understand how extreme this is, even *North Korea* signed on to the Paris agreement on climate change. +https://t.…",95023 +"RT @NewsfromScience: EPA head Scott Pruitt said today that CO2 is not a major player in climate change, contrary to scientific consensus: h…",340565 +RT @Greenpeace: These @NASA photos of climate change will shock you into action. Not #alternativefacts https://t.co/7eid8iGFxO https://t.co…,313583 +RT @axios: A slimmed-down U.S delegation will attend the next round of UN climate change meetings in Germany next week. https://t.co/bUpfgd…,91110 +RT @washingtonpost: 'Al Gore offers to work with Trump on climate change. Good luck with that.' https://t.co/3w5uUhkM89,674536 +RT @MikeKellyofEM: ACT leaves most of Australia behind on climate change initiatives: report https://t.co/kZCk1Bs7vO,725981 +"@politicususa They also deny climate change, & believe pro life means stopping trespassers & bad drivers with lethal force.",791988 +@AnnastaciaMP 's strange plan to fight climate change & help protect the Great Barrier Reef. https://t.co/ZGRCPeDAP4 via @brisbanetimes,10750 +"RT @najeebabdul: This guy who is being tapped for EPA likes global warming because of warmer weather! #trump #elections2016 + +https://t.co/Q…",70886 +RT @caseyjohnston: ironic that climate change is making for great protesting weather,568043 +RT @nowthisnews: Pope Francis and Angela Merkel are teaming up to fight climate change https://t.co/wVkR7TahO0,148204 +"RT @irisakkermxn: Happy Earth Day. +Let's talk about animal agriculture being the number one cause of global warming and gaia's destr…",955877 +"I don't believe in global warming, cuz I see the opposite. It's become much colder in St.Petersburg in recent years.",710384 +I voted!!! Yes I voted for the crooked nasty evil one! Mostly because she believes global climate change is real. #imwithnasty,700357 +"Bill Gates warned against denying climate change and pushed for more innovation in clean energy,… https://t.co/iMY49pJOFt #technology",403622 +RT @gecko39: One of the most famous global warming scientists says climate change is becoming more extreme https://t.co/hwVWzMXPSK,379890 +A third of the world now faces deadly heatwaves as result of climate change https://t.co/YEp2XRSSS6,214790 +RT @KFJ_FP: It is kind of hardcore that @exxonmobil is to the left of Trump on climate change. https://t.co/ndaDgq8VfL,673915 +RT @CoolestCarib: How climate change is stripping the Caribbean of its prized coral reefs | MNN - Mother Nature Network. #CoolestCarib http…,599658 +Exxon has known about climate change since the 70s. Instead of sounding a warning it conspired to profit. #rejectREX https://t.co/LFQwfmVooY,514363 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",12212 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",37585 +"Trump win a 'disaster' in the fight against climate change, scientists and environmentalists say https://t.co/XdQ3IGUjxN",269742 +TheEconomist: Is Exxon Mobil's carbon tax proposal a public-relations exercise or a commitment to fight climate change? …,561455 +"RT @TheRReport: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/bsC1lY9Rzp",233339 +We already have died to a climate change one that has been unhealthy for eight years -at last we may even now have… https://t.co/smkCoD5Ffh,734564 +RT @7NewsQueensland: Australia has officially signed up to the global deal on climate change action agreed in Paris:…,152162 +"RT @ciarakellydoc: Definition of #covfefe ? += massive distraction from US pulling out of Paris climate change agreement",652743 +RT @pierrecannet: Vatican urges Trump to reconsider #climate change position https://t.co/xTgzrClgKi #ActOnClimate #Pope,842866 +RT @jimrossignol: Remember: climate denialism doesn't make sense *even if* you have doubts about climate change. The solutions to it…,829108 +RT @WorldfNature: How Margaret Thatcher helped protect the world from climate change - CityMetric https://t.co/znvEB7gK4Z https://t.co/LHg1…,427747 +RT @maddecent: listen to ur soundcloud? haha not until u admit climate change is real buddy,385763 +"RT @GhostPanther: Biggest loser tonight is the human race. Cause climate change is gone as an issue in Trump America. + +THIS IS A HUGE DEAL.…",867962 +"https://t.co/RfKGKDpa01 + +Working towards the 2018 elections will help us fight climate change.",584277 +RT @vinnycrack: shes thinking about global warming tell your husband https://t.co/LWWFA5aoiC,977469 +"RT @EnviroVic: Nato General warns climate change poses a global security threat — says it's not too late, but we must act now. https://t.co…",4565 +@saswyryt @AlexCKaufman @AmericnElephant @TuckerLangseth So all discoveries re climate change 'have already been ma… https://t.co/9VEmJEepQ2,596205 +RT @AfricanBrains: China to enhance cooperation with developing countries on climate change: vice https://t.co/f6R0MuNmxj #china #climatech…,106146 +"RT @Youth_Forum: We need to do all in our power to tackle climate change, before it is too late! Young people deserve a future!'…",194447 +Russian President Vladimir Putin says climate change good for economy https://t.co/dLS2sVmTOR,935981 +RT @StopTheseThings: Australia's energy crisis is all self-inflicted and largely down to the scaremongering waged by global warming... http…,382689 +"RT @NMNH: Arctic coralline algae, like the 900+yr old specimen in #ObjectsofWonder, are data mines for climate change studies. https://t.co…",877209 +RT @scifeeds: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/aXDzodjg5D https://t.…,951367 +RT @pnehlen: Forecast: another 8 inches of climate change with record low temperatures.,886593 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,413497 +"RT @Independent: Trump’s climate change stance ‘sociopathic, paranoid and malevolent’, world-leading economist says https://t.co/rM4UD9mLkZ",168716 +"RT @MikeDelMoro: Wow - the DNC nat'l press secretary's full statement on the deleted Badlands tweets about climate change: + +'Vladimir Putin…",779455 +@Philosocrat Oh I believe in climate change. I just don't believe in Delaware.,209806 +RT @theSNP: FM: 'I think we should challenge the views of anybody who challenges the science around climate change.' #FMQs,556990 +"RT @umleismary: good morning i hope u have a wonderful day, unless u believe that climate change is a hoax",55922 +The leadership void on #climate change https://t.co/C2ChfnJfp9 via @ecobusinesscom,393562 +RT @NFUtweets: Addressing climate change is essential for the future of British farming #COP22 https://t.co/nAzdxnqnoa https://t.co/pJ1RYlC…,980856 +RT @EcoInternet3: El Nino-linked cyclones to increase in Pacific with global warming -research: Reuters https://t.co/5wqyWpIOmQ #climate #e…,921808 +RT @spacetits_: When you're enjoying the warm December weather but deep down you know it's because of global warming https://t.co/Nq4ycaaMEp,463431 +"Supporting action on climate change, https://t.co/73gaXx8oac #energy",574520 +Yung seminar kanina na parang kinokonsensya ka pa kung bat ka pa nabuhay dahil nakakacontribute ka lang sa climate change 😂 tf 😂,116121 +"RT @factcheckdotorg: .@realDonaldTrump told @nytimes he had an “open mind” about climate change, but repeated false & misleading claims. ht…",43620 +Trump's other wall: is his Irish resort a sign he believes in climate change? #LBC https://t.co/3erBLWBwd1,941858 +"RT @politico: Perry calls for climate change debate, says he doesn't know Trump's stance https://t.co/XkNlZr56SE https://t.co/mlqpetsFyC",977028 +@brhodes Touché! NYT loses credibility by doing this. There is no scientific doubt​ that climate change is happenin… https://t.co/uLWu0ZI7aX,127189 +RT @wef: Best of Davos: How can we avoid a climate change catastrophe? Al Gore and Davos leaders respond…,997627 +RT @newscientist: People prepare to fight their governments on climate change https://t.co/YlweEG7QVD https://t.co/8kdzTRxl6d,146296 +RT @TomvanderLee: A good read: ‘Moore’s law’ for carbon would defeat global warming https://t.co/7t9EfUoWtb,68755 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,969351 +RT @kyrasedgwick: Devastated that the one binding agreement to combat inevitable climate change has been defanged by our new president @rea…,666496 +"@sanvai kind of already is, climate change and pollution and species going extinct, We were given paradise and are blowing it (up) pun",742828 +"RT @climateprogress: Scientists know storms are caused by climate change. They just need to tell everyone else. +https://t.co/1aiiP2VGrd htt…",594821 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",248163 +Rethink 'carbon' to make CO2 work for climate change solutions https://t.co/sqjFzN2Vee,212783 +@SenFeinstein Fake news. Climate cooling-60s-80s;climate warming 90s to present; now climate change- it is always c… https://t.co/IoquEYZb92,530408 +RT @LeoHickman: British scientists face a ‘huge hit’ if the US cuts climate change research - quotes @piersforster @SABatterman etc https:/…,271077 +RT @MattMcGorry: Important article on need 2 not make #NoDAPL JUST about climate change thus erasing the struggle for Native rights…,29116 +RT @AlexCKaufman: President Trump is pulling out of the Paris Agreement the day Exxon shareholders vote on stronger climate change policies…,97327 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,103934 +There's no proof humans are causing global warming | Whidbey ... - Whidbey News https://t.co/KRaCosCmmS,5281 +Hey @realDonaldTrump tell hurricane Harvey that global warming is a hoax,966764 +RT @AstroKatie: Governments of several world powers are failing us on climate change. We need to act without them if we want any hope for t…,833394 +Al Gore says that Trump’s daughter Ivanka is very committed to climate change policy that makes sense….... https://t.co/iZsEkvw8JR,769034 +90% of scientists studying climate change were paid to falsify their results - still confused https://t.co/LVTkTCDGNt,427885 +@DanRather the game's up. You've been bribed for YEARS to push BS global warming so that the globalists can RAPE us with a huge carbon tax,101015 +"G20 Summit: Counter-terrorism, climate change may hog agenda https://t.co/NtnBvtNSfa",135053 +"Tillerson: Exxon spent billions DENYING climate change, dealt w/ dictators, NO diplomatic experience. @SenRubioPress",445073 +The good thing about @realDonaldTrump is that his policies will lead to a dignified mass suicide via climate change,594718 +"RT @SteveKoehler22: If by global warming you mean the world +starting to warm up to Donald Trump.... + +then NO ....there is no global warmin…",485337 +I pray to the day that America rely on scientist and meteorologist more than animals on whether or not climate change is true.,652031 +Legend @simoncbradshaw -#COP22 climate change talks making progress despite Donald Trump's shadow https://t.co/QfQMko1gn5 via @RAPacificBeat,295823 +RT @ClimateActionWR: Gender equality associated with climate change was a big topic at #COP22: https://t.co/NletbKnED5 [@momentum_unfccc] #…,898107 +"RT @frodofied: We believe that Labor Unions are good for America and we actually know, not believe, that climate change is real. We believe…",621822 +RT @FT: Martin Wolf: That the US presidential campaign has unfolded without a focus on climate change is astounding https://t.co/wlPX49VQrT,593768 +"Or will you revert2 your FORMER beliefs n global warming,abortion& that stupid wall? AttentionWhore genuflecting2 T… https://t.co/ZgGKtkSiVY",724899 +"RT @polNewsNetwork1: Thanks to Trump, NASA's new budget will avoid wasting money on climate change, and focus almost entirely on space a… ",87739 +"@elonmusk 'Am convinced global warming is manmade so I'm leaving Paris in my jet, leaving a huge carbon footprint,… https://t.co/2j63f3qGNb",830073 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,142961 +"RT @Conservative_VW: Finally a Real SCIENTIST��‼ + +There has been no global warming in the last 17 years despite increases in CO2 concentr…",61106 +Video: Conservative can lead on climate change. Why is @FoxNews in the way? https://t.co/sXGKep5NYx,221043 +RT @KazmierskiR: I don't know if we can stand all this global warming. 🙄 https://t.co/omB1Q2a2oL,696913 +Not necessarily stupid. Might need to get used to eating bugs as ravages of climate change mount. https://t.co/EUB4B2gIOm,295268 +@ginaaa climate change is real people!,753928 +RT @nowthisisliving: I was busy thinkin bout ... how @realDonaldTrump doesn't believe in global warming and half my friends homes are flood…,649950 +RT @climatehawk1: EPA Nominee Pruitt downplays #climate change threat to oceans | @jackcushmanjr @InsideClimate…,238297 +RT @kwilli1046: Guy who founded the weather channel and says global warming is a complete hoax based on faked data https://t.co/ilxCj4MT9y,265204 +Sir Andy Haines: Tracking effects of climate change on public health: Earlier this month the… https://t.co/FCqI6LuKym | @HuffingtonPost,19559 +RT @bulleribio: I will continue to teach the science of evolution and climate change in a public school that serves students of all stripes…,305511 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,992050 +RT @sorola: Let's fight global warming together. Crank your air conditioner & open your home's windows for 1 hour. Together we can make a d…,346418 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,82564 +RT @HeatherMorrisTV: I've been behind climate change for almost ten years feeling like an outsider. It's nice to… https://t.co/ZNREizOGEG,212312 +RT @document_news: “Before the Floodâ€: Leo DiCaprio’s climate change doc gets record 60 million views. #BeforeTheFlood #climatechange https…,150821 +RT @CozyAtoZ: 'How we know that climate change is happening—and that humans are causing it' https://t.co/0DkakDqnP8 #science #feedly,680282 +Enjoy this weather now because we're all about to burn in hell with global warming.' 😂,711087 +"RT @BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is at stake. https://t.c…",883893 +"RT @AnjaHuffstutler: I just found out someone I followed is a climate change denier. And apparently a Trump supporter. + +See, trans people…",360801 +"RT @jilevin: Minutes after Trump becomes president, White House website deletes all mention of climate change… ",578270 +"For 12 years, plants bought us extra time on climate change https://t.co/iWSLpOhx1A https://t.co/mDcJUcdfNI",788765 +RT @intlspectator: UNITED STATES: Trump is consulting on how to withdraw the US from the Paris climate change deal,684593 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,177297 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",658714 +"RT @MindOfMrCallum: I hope that, after refuting climate change, Trump refutes the 'Theory' of gravity and floats the fuck away. #ElectionNi…",946725 +"RT @meganamram: 'whoever denied it, supplied it' also works with climate change",935871 +RT @cookespring: @BragginRightz @realDonaldTrump There is no global warming there are scientists who can prove it,453781 +RT @NatGeo: Are we too late to fight climate change? https://t.co/797Rx2UXQA #YearsProject https://t.co/LV2Fy0uuge,370318 +Go into my crew's discord and they're talking global warming shit,702503 +RT @DiscoverMag: Traditional cycles of planting and harvesting are being thrown off as climate change upsets weather patterns:…,278400 +RT @sustyvibes: Sustainable Development and climate change are two sides of the same coin - Ban Ki moon #SustyQuotes,944133 +RT @IziThaBoss: We need to become aware of climate change!!! https://t.co/wqWEoY8ma0,647470 +"Trumps policy's on climate change, if we make it that far, is what's for sure going to kill us.",475065 +RT @ClimateReality: Gallup poll (March 2016): More Americans than ever are taking climate change seriously https://t.co/uVIRF9Ob9w #Climat…,592615 +RT @Telegraph: Brian Cox hits out at BBC for inviting climate change denier on Radio 4 https://t.co/CZydMa2Lvq,579070 +RT @DocGoodwell: Beef production to drop under climate change targets – EU Commission https://t.co/slVXObaTdW,134505 +"RT @meljomur: So @alexmassie this is who the English support, while Scots support an FM who is signing climate change agreements…",642708 +RT @climatehawk1: 'Virtually certain' mountain glaciers' retreat due to #climate change https://t.co/smpTdkcXbn #globalwarming…,167603 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",555272 +RT @sam_sicilipadi: thread! giving indigenous communities their land rights back is proven to improve damage created by climate change…,743195 +"me to my parents: 'wanna know what sucks? you guys are gonna die of old age. i'm gonna die from global warming' +'who cares' +UH, ME. I CARE!",959807 +RT @RedHotSquirrel: £274million spent ‘to fight global warming’ but the Government has no idea where the money actually went. https://t.co/…,217024 +RT @SenatorDurbin: More evidence that we cannot surrender in the fight against climate change like @POTUS wants us to. https://t.co/ss1CuXd…,443267 +RT @plus_socialgood: Next in the #EarthToMarrakech digital surge: @Climatelinks hosts a chat on climate change innovations in 3 key develop…,397017 +If next summer ends up being a month-long heat wave I'm pissing on global warming naysayers.,596814 +"March for Science rallies take aim at climate change skepticism, proposed budget cuts https://t.co/S8LdDFKc7i via the @FoxNews Android app",533952 +RT @_richardblack: Some climate change advice from Lord Farage... https://t.co/4YEiTozX66,800696 +RT @RogueEPAstaff: @Alt_Mars @CBSNews The Trump admin's Red/Blue panels on climate change put lipstick on the pig.,112363 +RT @mj_bloomfield: Here's a nice little learning tool for those teaching the politics of climate change https://t.co/qUW4YcRJQ7,988128 +A from @katewdempsey: Continuing to be a big voice on climate change in every way is really important. #UMMitchellSem,759592 +"RT @asamjulian: 15 more dead because of climate change. Oh wait, nope, it's Islamic terrorism again. https://t.co/2plj8xPqrD",684206 +RT @pablorodas: EnvDefenseFund: Why is Pres Trump attacking climate change efforts that the EPA has been working on for decades? https://t.…,159362 +".@aliterative asks if maybe our worries are displaced, because climate change is going to destroy the world anyway.… https://t.co/3WUHMxoHQv",246328 +RT @MiaFarrow: Trump's EPA chief says carbon diodlxide doesn't contribute to climate change. See EPA website…,304396 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,54264 +RT @rcklr: .@autodesk leads in using generative design to tackle climate change challenges https://t.co/Ut3dbd9v6e via…,908329 +"#ClimateChange #CC Polar vortex shifting due to climate change, extending winter, study ... https://t.co/7UhFTFzXDQ #UniteBlue #Tcot :-(",849716 +"What has she been doing to 'fight' climate change up until now? No, she doesn't get kudos & her father isn't gettin… https://t.co/FPeKwnuznR",424570 +RT @tan123: Climate scam momentum update: 'Cambridge clashes with own academics over climate change' https://t.co/aGeDy6C3IR,133226 +RT @MarshallBBurke: 'This … follows from the basic laws of physics’: Scientists rebuke Scott Pruitt on climate change https://t.co/xJ26IPp8…,624182 +"it appalling. unless climate change is abated, power prices won't matter https://t.co/WbvkoocjZ9",847038 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",534999 +How do you 'not believe' in climate change like... it's happening,514432 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,489534 +"RT @usnews: The Trump administration is denying climate change, but cities and states are fighting back. https://t.co/Uw7gOe3T8g via @usnew…",417355 +RT @markwindows: White House declares 'global warming' funding is ‘a waste of your money’ https://t.co/vj4nVfvqfM via @ClimateDepot,714692 +EPA chief: Carbon dioxide not 'primary contributor' to climate change - https://t.co/RpwS7jHK72 https://t.co/xni2uPAxrO,250868 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/wTCTJoOdgB,192977 +RT @notoriousalex: i am digging this global warming stuff,645212 +"#selfhelp,#survival,#tools Effects of climate change, fourth water revolution is upon us now… https://t.co/wnpBPXEko8",903171 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",214224 +A 200-yr-old climate calamity can help understand today’s global warming https://t.co/1CnV57E95u,332795 +"RT @kimmelman: Hope you will read and share this piece about Mexico City, the first in a series on climate change and cities: https://t.co/…",230188 +RT @MikeBloomberg: We're writing this book because it’s time for a new type of conversation about climate change.…,957788 +RT @NewsfromScience: The Trump administration appears to have walked back plans to scrub climate change references from @EPA's website: htt…,102140 +When you're going to school to fix climate change and to be a climatologist and the future president doesn't think climate change is real,574414 +"Retweeted Geoff Manaugh (@bldgblog): + +Nostalgia for the win. Skepticism about climate change drops when it’s... https://t.co/W229BOMedM",471592 +RT @thehill: Sanders tears into EPA head for saying CO2 isn't a 'primary contributor' to climate change https://t.co/T4689dXKFD https://t.c…,782767 +How is climate change influencing migration? @NatGeo #APHG #APES #EdChat #SciChat https://t.co/D2bDi8QBHV https://t.co/0Nd3L2ozxn,151657 +"RT @CatalyticRxn: Term 'global warming' was more controversial, among conservatives than 'climate change'. Liberals didn't care. #sciwri16",324578 +"RT @BTSbornfirst: Vote @BTS_twt for the #BTSBBMAs Top Social Artist award + +rt to end global warming + +Today We Fight https://t.co/ipYoCS3bcg",999173 +RT @theblaze: ‘Bombshell’ climate-change study could totally dismantle the claim humans are causing global warming…,741669 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,934059 +"RT @mmfa: In short, the media's climate change coverage is a disaster of historical proportions. https://t.co/etot6d9WC2",219327 +"@Vickie627 @JuneSaidF @five15design wasnt that the democrats points in the election? Fear trump! Fear global warming, now hate all who",640084 +RT @philstockworld: I just published “Why we need to act on climate change now” https://t.co/Ruo4UKRefl,865195 +"Here's hoping we can eliminate global warming. Our planet is dying, and it needs our help",577052 +RT @stairfish: If trump doesn't want to do anything against global warming i fuckin hope he drowns first. Incompetent piece of orange,507163 +"RT @usnews: The Trump administration is denying climate change, but cities and states are fighting back. https://t.co/G2nVN3qtU5 via @usnew…",408984 +RT @NRDC: Urge Trump not to threaten our wildlife and wild places or reverse our progress in fighting climate change:…,639773 +RT @MotherJones: Cable news spent less than an hour covering climate change in 2016 https://t.co/47BO4go9j2 https://t.co/z76XcNHNCM,479385 +"RT @EmilyFicker: I wrote about the visible effects of climate change for @MHSNewspaper_, check it out! https://t.co/GmdJq3k7Nz https://t.co…",169503 +Are we really to cool to fight global warming?' https://t.co/8rTDtlBLsn,110462 +RT @AJEnglish: On @AJEarthrise: How are the world's two biggest carbon dioxide emitters [China & the US] tackling climate change?…,251179 +"RT @HillaryPix: Trump Just Told The Truth, And It’s Terrifying: A plan to cut $100 billion in federal climate change spending. +https://t.co…",969955 +"RT @NYTScience: As global warming heats up the Arctic, algae production is way up, and scientists don't know what that will mean https://t.…",933588 +RT @aviandelights: Canberra posts hottest summer ever for max temperature. Maximum summer temps already influenced by climate change https:…,365700 +RT @BAJItweet: African migration expected to rise due to accelerated climate change - UNEP https://t.co/LSGUmmyg2e @africanews,267452 +RT @SmithsonianMag: Peaches are more frequently being grown in cold-weather climates as climate change affects the viability of crops. http…,797195 +RT @DragonflyJonez: Kendrick gonna fool all y'all. He just gonna drop a 18 min track on a jazz beat beboping about climate change tomorrow.,280489 +"RT @petefrt: Dems Are OUT OF TOUCH with People's Concerns, Say 67% Voters + +Obsessed with bathrooms and global warming + +#tcot…",149414 +why is illegal immigration talked about more than global warming :a,942202 +RT @vxktuuris: will you still claim that global warming isn't real when there's food shortages?,603517 +RT @MarkRuffalo: This is how bad things could get if Trump denies the reality of climate change - The Washington Post https://t.co/D0ZwSx5v…,326443 +@GeorgeTakei Don't worry about climate change...here's a secret. It's a hoax to tax us according to our carbon footprint. It's complete BS!,292224 +Moroccan vault protects seeds from climate change and war https://t.co/ILmYeP1432,521526 +Investing to make our cities more resilient to disasters & climate change https://t.co/QonQ1XQOZM @WBG_Cities #ResilientCities #Disasters,960021 +"RT @feeIingmyoats: right wingers: there are only two genders. it's biology. you cant argue with science + +right wingers: climate change is a…",806425 +"6. Modi has acted decisively on climate change, ratified Paris agreement; Trump has said that climate change is a Chinese hoax.",231162 +@seanhannity Embrace truth do you? then call out Trump about climate change and the affects of polluting our drinking water. if not you lie,568815 +The controversy surrounding Bret Stephens' article on climate change reveals just how hypocritical the left can be: https://t.co/qaUn7TOQWU,966665 +RT @T_S_P_O_O_K_Y: @beardoweird0 @20committee I actually have a degree in Environmental Studies - and yes - man made climate change is a ho…,360405 +RT @ClimateCentral: Here's how climate change could flood cities (and states) as the world warms https://t.co/snfRq1je8A #BeforeTheFlood ht…,495872 +"|| Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/DrL9t1Z03K via @ShipsandPorts",320667 +RT @jeffdrosenberg: . @SenSanders tears into Trump’s 'disaster' of a climate change order ➡️ by @lee_moran https://t.co/5ZShbOCewa via @Huf…,66860 +RT @AFP: ExxonMobil knowingly misled the public for decades about the danger climate change poses to a warming world: study…,581466 +"Want to hear nonsense and propaganda about climate change? Ask Scott Pruitt. + +Want to know the *actual science*? As… https://t.co/FAIYV4f6sw",248539 +BBC News - EPA chief doubts carbon dioxide's role in global warming https://t.co/m5Scm2ZEmt,108857 +"RT @DanNerdCubed: Those interests being racism, sexism, misogyny, wall building, climate change denying... https://t.co/vw9c3Gn43x",644838 +Trump administration suspends plan to delete climate change material: https://t.co/67uXkzIFCY,474280 +RT @lumenaequitas: @JoshNoneYaBiz I hate when global warming runs people over.,787055 +https://t.co/akXkaHTZhM Monday’s eclipse be a call to action on climate change: https://t.co/OOxS4Egcg1,277933 +"@realDonaldTrump Please Don't be stupid with climate change, it's as real as you getting elected is.",273967 +Bitl team is workshopping ways to combat climate change w VR #ideasmadetomatter https://t.co/1Anj6H6fVJ,556307 +Are there even any plausible arguments against climate change???,807648 +I intend to cook longhorn cow as I consider climate change.,51870 +"No, climate change is real; been happening for 4.5 billion years. Giving $ to bureaucrats to stem the inevitable is… https://t.co/cm529HDdNM",94877 +"RT @climatehawk1: Refreshing honesty: ‘Stop lying to the people’ on #climate change, Schwarzenegger tells Republicans…",116574 +RT @JuddLegum: Trump just gutted U.S. policies to fight climate change https://t.co/4CD890aX7N https://t.co/YxIaIKezQR,399562 +RT @JustSommerRay: not letting global warming stop us https://t.co/QgAXS34aVZ,730487 +RT @Brinkbaeumer: #MSC2017 Antonio #Guterres calls climate change and population growth the two main global problems. @VP Pence did not men…,951265 +"RT @EricHolthaus: Holy wow. Remember those kids suing Obama & big oil over climate change? +They just *won*. +Read this: +https://t.co/HnZBICG…",926505 +RT @kates_sobae: climate change is honestly so rude,170438 +"RT @mattmfm: Democrats: climate change is important +Republicans: nope it's a hoax +NYT: there go Democrats again touting boring centrist pol…",372720 +RT @Labmate_online: The effect of climate change on the food chain is huge ðŸ¼ https://t.co/S0O81gdj3w #animals #biodiversity #species https:…,591257 +"Record-breaking climate change pushes world into ‘uncharted territory’ + +https://t.co/Z1yVvcOEnV + +#climatechange #environment #oceans",165101 +RT @ajplus: President Macron is inviting U.S. scientists to France to help fight climate change. https://t.co/DHY2mgCIp5,152577 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,288444 +RT @CBSNews: 'Bring it on': Students sue Trump administration over climate change https://t.co/JPIUzp0hM8 https://t.co/PFeDZXEQMC,57552 +is not correlated to NIMBYs are state legislation climate change their aesthetic by the USDA revive,643771 +Passes House 236 to178. Among grants denounced many of the example studies concerned climate change #ScienceMarch https://t.co/WkANDjsVj5,958204 +RT @luthorszjm: Kara's heat vision is the root cause of global warming. Everything is melting.,320134 +@MarkCCrowley Immelt is picking up where Trump dropped the ball on climate change https://t.co/YmvrvyEx22,210202 +RT @bondngo: What are the facts about climate change and what can ordinary citizens do about it? @andynortondev @IIED https://t.co/eHl7tE8X…,120685 +"RT @grisanik: As I predicted climate change is accelerating : +https://t.co/kLptvFdp9l",326563 +"RT @DavidKirklandJr: Scott Pruitt is right. The sun is the main driver of 'climate change.' + +You don't have to be a scientist to know this…",265061 +"RT @DanMalloyCT: In the absence of leadership from the White House in addressing climate change, it is incumbent upon the states to…",764221 +RT @drewphilips_: Y'all wanna know what's weird? How global warming is real and is like a really big problem skskdldk,177961 +Ocean Sciences Article of the Day - How will New York cope with climate change? (Yale Climate Connections) https://t.co/newn8DbAy2,106628 +"RT @IntelOperator: 'There's an even broader danger to leaving the military to address the threats from climate change.' + +https://t.co/pG6VV…",282903 +@_Makada_ So you believe in that science but not global warming? #Rightwinglogic,981255 +RT @_richardblack: I cannot believe anyone still uses “climate change is bollocks because it was cold todayâ€. Especially in the @FT…,697050 +RT @WorldfNature: This is what climate change looks like - CNN https://t.co/3mR7sG9KIU https://t.co/1Gro5nv8Jg,699241 +"TANUJ GARG: With all the man-induced climate change, I hope something remains of #Antarctica by the time I visi... https://t.co/YD7G397qYP",646970 +"RT @ntinatzouvala: Bernie on the sovereign rights of Native Americans, clean water, climate change. #NoDAPL https://t.co/GyOzMhz2CP",695251 +RT @AnotherDawg: @CaptialBusLoan @ImmoralReport @DarHuddleston Today's global threat is NOT 'global warming'! It is SOROS & son #crookedcli…,832086 +BBC News - Most wood energy schemes are a 'disaster' for climate change https://t.co/5y4u0p8Thh,152329 +The truth' is that climate change is real. Pruitt is a dangerous oil-and-gas shill who doesn't believe in basic sc… https://t.co/fpVXULCNTe,561889 +"How can we escape the quagmire of [#climate change] denial? … just talk about it.' — @alicebell + +[Also @KHayhoe's… https://t.co/T7AETEU3Zc",590212 +RT @pinoshade: @JackPosobiec All these 'smoking guns' are going to ramp up global warming.,914020 +"RT @sallykohn: Oy, for all those in my feed saying weather and climate change aren't related: https://t.co/Bl16HZIlvu",675260 +"RT @tomandlorenzo: Well, now we know that 'covfefe' is Russian for I don't give a damn about climate change.",307271 +@davidsonmark650 @stltoday Why don't you believe in climate change? Maybe that's the question I shoulda asked to begin with,738307 +"Late Pleistocene-Holocene vegetation and climate change in the Middle Kalahari, Lake Ngami, Botswana +https://t.co/cAvWNIgbXE @scott_louis",670025 +RT @lisa_kleissner: To deny climate change is to deny all who are impacted. #Philanthropy and #impinv want to empower a different outc…,140016 +Global 'March for Science' protests call for action on climate change https://t.co/KeNTKi5Tqa https://t.co/ABhiQYXpM6,973171 +@DiMurphyMN Um ... it's climate change and the North Pole is a f'd up as the rest of the world. #EndOfDays,732909 +RT @UN: 12 #globalgoals are directly linked to climate change. The #ParisAgreement is crucial to achieve them.…,153191 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,716583 +@EPP @ArielBrunner Isn't climate change just a scam to make the poor pay more taxes?,422296 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,293089 +RT @jayrosen_nyu: Bloomberg is starting a site wholly devoted to climate change and the economics of. https://t.co/iYIn3fzq9J It won't both…,134300 +EPA: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/aVS3sm1kSy #ScottPruitt,892921 +"RT @khushi_Verma666: #MegaTreePlantationDrive ji GURU JI, only YOUR efferts will save us from global warming, love YOU",465699 +RT @ejgertz: Can a promising-& troubled-technology for fighting global warming survive Donald Trump? https://t.co/S6tZNZwzja via @nytimes…,609512 +RT @nytimes: Obama spoke in Italy about how climate change was imperiling food production around the world https://t.co/z9IAwj7Quv,580483 +New head of @EPA rejects scientific consensus on human activity's link to climate change: https://t.co/AMwR62PAEM… https://t.co/HvHReUkVa4,176298 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,884073 +RT @ATF_udeyyy: Nah global warming is real life shit,172648 +"From Trump and his new team, mixed signals on climate change https://t.co/ocwnCnZWym https://t.co/vvdhSOtts5",395722 +Siberian Snow Theory Points to an Early and Cold Winter in U.S. https://t.co/IvaCFa19Wy via @business So much for global warming!,351392 +RT @SenatorWong: Climate change affects all nations and tackling climate change is a shared challenge that can only succeed if we al…,721553 +"if you ever want to see global warming in action come to NC, we go from 80° to hailstorms faster than trump can say china",681784 +RT @wattsupwiththat: Let the wailing begin: ‘Moral values influence level of climate change action’ https://t.co/0sV7TaJD8v https://t.co/iY…,385663 +"I was hoping global warming was real and I could bore youngsters by talking about snow in England, sledging etc https://t.co/hVNbVwNai4",844602 +RT @KamalaHarris: The goal of the Paris Agreement is simple: reduce fossil fuel use in order to address climate change. Abandoning it = aba…,888673 +"RT @Liza76N: I’m cool but global warming made me hot.. + +MARVOREE DreamTeamGoals",976202 +"RT @PolitiFact: Yes, Donald Trump once said China invented climate change https://t.co/xkMM5PgrMp https://t.co/uo72PCD2PN",846688 +Company directors to face penalties for ignoring #climate change #auspol https://t.co/0I572OeAXg via @Jackthelad1947,954728 +"RT @hemantmehta: Don't worry, everyone. When President Trump does nothing about climate change, Florida will be the first to go.",618950 +starting to dig this whole global warming thing,762599 +RT @NatGeoChannel: One of the easiest ways to help combat climate change in your daily life is to stop eating beef. Here's why:…,539961 +"RT @GreenpeaceEAsia: More than 137 million people in India, Bangladesh and China are at risk from climate change-triggered flooding https:…",550361 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,407571 +A brilliant sci-fi thriller imagines how the massive floods of climate change could transform Earth… https://t.co/0vRbw4W5Lt,656096 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,378318 +"Science is ok for Lefties to use when it comes to climate change but not ok regarding gender. + +#SituationalScience https://t.co/24jqQn9D69",967793 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,75392 +"Wow, watch the documentary 'Chasing Coral' on Netflix, it's beautiful, sad, and so informative! We need to address climate change now!",177800 +RT @AnimalsAus: .@BillNye the Science Guy re: combating global warming by eating kindly ������ #GlobalWarming #EatKind https://t.co/A7VfLg7aqZ,408225 +RT @MythiliSk: My latest: @g7 blames US for failure to issue joint statement on #climate change https://t.co/qp01WVoSgo,680118 +RT @Jeff_McE: @PhilipRucker @MSignorile I'm sure Tillerson is hiding more than his 'alias' while emailing about climate change. #WhatsHeHid…,297379 +"RT @PolitJunkieM: @tata9064 @BackwardNC @danhomick @JaneTarney +Lamebrain Skarvala is a far-right climate change doubter Unbelievable! http…",527068 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,434966 +Did Donald Trump just kill the Paris climate change deal? https://t.co/h37d71qFdt via @ABCNews,900632 +"Alternative technological solutions for climate change' about to kick off #ClimateChange #PuanConference +#PuanConference",130158 +"Guy on Baggage thinks climate change is a conspiracy +Guy: Why is it so cold?? +Other guy: you’re a dumbass :l + +marry the other guy come on",341406 +RT @LisaClaire9090: Stunning photos of climate change https://t.co/NFP6dDR5yP via @cbsnews,522679 +"RT ReutersWorld: In a rare move, China has criticized Trump's plan to exit the Paris Agreement on climate change:… https://t.co/fLUE2KPnPH",483207 +RT @capitalweather: The whole 'it snowed so global warming is fake' line is getting old. Ppl who deny climate change is real need to genera…,221942 +"Pope Francis appears in ‘climate change’ movie featuring Obama, Clinton, Leonardo DiCaprio https://t.co/5CzqVt7r7d",587012 +I added a video to a @YouTube playlist https://t.co/925Kp7Ga7u OBAMA DESTROYS Republicans on climate change,441095 +Wil Weaton celebrates @sunlorrie's recent schooling on climate change. https://t.co/RQSSueACrs,536195 +RT @SamGrittner: .@BadlandsNPS was just forced to delete all their tweets stating facts about climate change. Here's one that you ca…,43396 +RT @ajplus: Which candidate is going to take climate change seriously?ðŸŒ https://t.co/jDL1NTenQ5,991333 +"Yes, but climate change does make me money. Climate denial make me make me money. https://t.co/fsdHRN7jwu",542338 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,966161 +“Indus people knew how to deal with climate change” -- Cameron Petrie https://t.co/pWsOm9bdjw,209660 +"RT @Myth_Busterz: When illiterate and #JaahilPMModi spoke to students on climate change... irony died a thousand deaths + +https://t.co/81JDf…",653577 +"@NBCPolitics @mitchellreports by climate change, are you talking about the extremist man made alarmist position or… https://t.co/NDAlX4Pt3W",357971 +"2016's 'exceptional' weather proves that climate change is real, say scientists https://t.co/7J0ECzfA0P",407024 +RT @PetraAu: Company directors can be held legally liable for ignoring the risks from climate change https://t.co/ArYEhCswiI,94220 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,638817 +RT @TheDailyShow: .@neiltyson on why climate change denial is a threat to democracy. https://t.co/Q8yVDAy848 https://t.co/arwB8OiSa8,194215 +RT @ComedyCentral: Leonardo DiCaprio met with Trump yesterday to be ignored about climate change.,856259 +RT @glazerboohoohoo: if you don't know a ton about the paris agreement or how dangerous trump is to slowing climate change this will help h…,614917 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",621121 +You and your friends will die of old age while my generation will die from climate change',278551 +RT @JuddLegum: She probably shouldn't have campaigned for a guy who thinks climate change is a hoax invented by the Chinese then https://t.…,106543 +RT @thehill: Sierra Club calls for investigation of EPA head over climate change comments https://t.co/ScRbItLACq https://t.co/T3N6vKXAGL,637263 +RT @sciencetargets: Can business save the world from climate change?https://t.co/2e7bHF9doP By @BiancaNogrady #WeAreStillIn @CDP…,868154 +RT @Independent: Climate change denier who says no one can explain global warming gets completely schooled by someone explaining it https:/…,928749 +"RT @GuardianUS: From 2015: Exxon knew of climate change in 1981, email says – but it funded deniers for 27 more years… ",311979 +"RT @TomiLahren: Folks, the Alt Left. Ignores radical Islam. Blames global warming for terror. Special kind of blissful ignorance. https://t…",299209 +"Some ppl need to get their head out, we caused climate change, we are the only way to fix it https://t.co/DRVIXDtLt4",838786 +"RT @pharris830: Ask yourself why can't we see the WH visitor logs, why are they deleting climate change data, why are LGBT exempt from 2020…",740050 +#socialmedia Trump really doesn't want to face these 21 kids on climate change https://t.co/jTj2wY7dkO,618306 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,125116 +@IntelOperator It's a good thing climate change is a hoax made up by the Chinese otherwise we'd be in big trouble.,943217 +"If you choose not to believe in global warming, I choose to believe the guy wearing the Affliction shirt at the party won't start a fight.",556335 +RT @chuck_gopal: This is when you know this climate change shit is real. https://t.co/BmqVA10VE5,522328 +"RT @tan123: Room full of microbiologists polled: 'How many of U believe climate change is world's #1 threat?' + +No one raised hi…",708449 +"RT @keithboykin: Contradicting @NASA and @NOAA, @EPA administrator Scott Pruitt denies CO2 is primary contributor to climate change. https:…",76467 +RT @Independent: Government 'tried to bury' its own alarming report on climate change https://t.co/rHNgbZzXK8,713495 +"RT @SimonMaloy: just watch, the response to/excuse for this will be that the EPA is already politicized because it pushes a climate change…",317157 +Trump proclaims climate change a hoax as if that will alter the truth. Unfortunately we will all pay the price for his stubborn ignorance!,874864 +Trump team memo on climate change alarms Energy Department staff https://t.co/KptSePmt7Q,769447 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,723661 +RT @HeckPhilly: But climate change and society's view of death will have to change one day if we want to advance our descendants.,169776 +"RT @SteveSGoddard: - @NASA has tripled global warming since the year 2000, during a time when satellites show no temperature increase.…",341817 +"RT @JuddLegum: 4. As scientific evidence of climate change has mounted, Stephens position has remained the same…",279315 +Rep. Lamar Smith took a quick break from healthcare negotiations to tell us climate change isn't real… https://t.co/1sPPFKjT6i,56671 +My hubs is watching @TuckerCarlson make a fool out of @BillNye The Science Guy on FoxNews. TC is tearing BN apart RE: climate change. 😁😁😂😂,586033 +"Ian Gough (@LSEnews): climate change and inter generation justice: needs should trump want, now & in the future.… https://t.co/OLvGkNFRAY",424489 +"If you still think global warming is real, time for 'waky waky...' https://t.co/Lm0pIyR5J2",670559 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,813882 +RT @guardian: Why we’re all everyday climate change deniers | Alice Bell https://t.co/BD9RDcSRgL,743424 +RT @Chris_arnade: NY Times readers care deeply about climate change & their carbon footprint https://t.co/H3mOgGqQMs,998561 +"@SenatorMRoberts Global warming is real. I know the other liberal nonsense has no scientific basis, but global warming does.",35843 +RT @NinjaEconomics: China tells Trump climate change isn't a hoax it invented https://t.co/uzyfIAURZ1,148459 +"RT @shanmutweets: Very good, impactful doc from @LeoDiCaprio got to take big steps for a positive climate change #climatechange https://t.…",141814 +RT @NoNo2GOP: Analysis | EPA chief’s climate change denial is easily refuted by the EPA’s website https://t.co/VXba5mHfAL https://t.co/N0Sn…,899926 +"@ProtectthePope @EWTNGB But at least, the French government doesn't deny climate change, or else they would have to deal with @pontifex",66867 +"RT @PRESlDENTBANNON: We must seek innovative solutions in addressing climate change, like eliminating most of the people.",249425 +But the fight against climate change.,827222 +@mashable @meljmcd We have to get through to people re: climate change. Trump is the anti-change,933298 +"RT @Manly_Chicken: I am now 100% opposed to any regulations against global warming. +Not because I don't think global warming is real,…",717876 +RT @CattHarmony: Is this why the left said climate change is 'man-made'? #Science #ClimateChangeIsReal https://t.co/lZLWBX12K2,76495 +"RT @mehdirhasan: Over past few days, the New York Times has published inhouse op-eds making the case for Marine Le Pen & for climate change…",170533 +"RT @SteveSGoddard: It has been 17 years since the UN said global warming killed us all. +https://t.co/3iPRs71C9b https://t.co/S1quSVbKn3",278 +Displacement linked to climate change is not a future hypothetical – it’s a current reality #COP22:… https://t.co/NvpC18X7Yq,614316 +@IndivisibleTeam save the EPA and continue fighting global warming?,215952 +The effects of climate change will force millions to migrate. Here's what this means for human security. -… https://t.co/h0R78f4ck4,486044 +@sphinney2020 This is wonderful! Coral has been dying because of rising ocean temperatures due to global warming. W… https://t.co/D0xvmaTUZY,565883 +"Kate Brown, other Western North American leaders reaffirm climate change fight https://t.co/UZy4TGC12N via @PDXBIZJournal",333596 +Vox This one weird trick will not convince conservatives to fight climate change Vox… https://t.co/6ufCkB3CdP #hng… https://t.co/FEjJWzvdqV,774118 +"Develped countries hv greatly​ contribted to global warming thru their asymtrical develpmnt policies, onus of corr… https://t.co/sLbScbOQPk",759320 +RT @antonioguterres: Shocked to see effects of climate change - 30% of Tajikistan's spectacular glaciers melted. There's no time to lose…,729321 +"After France, the climate change discussion moves to Morocco. https://t.co/fX9afjP6Rg",734928 +"Mexico's Maya point way to slow species loss, climate change https://t.co/XhKkp2XGub",996973 +RT @drshow: Weds: Dangerous political speech & how it can incite violence. Then: Where Clinton and Trump stand on climate change→https://t.…,263240 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,967543 +Let's take a look at how some of Washington state's reps feel about climate change: https://t.co/iYu3SndQAG https://t.co/iaCGV7vhbr,88271 +RT @ClimateChangRR: Jerry Brown promises to fight Donald Trump over climate change https://t.co/NC6FQRT9h4 https://t.co/ZuyghInkJf,51682 +RT @DineshDSouza: I call this political climate change https://t.co/pWonlMemsB,765829 +@Firegal_01 hate to burst your bubble but man made climate change ain't real and the environments doing just fine.,526501 +The man that Donald Trump wants to oversee the EPA is a denier of climate change... This world is literally fucked,538022 +So that Trump site that's going around? I genuinely and sincerely asked for him to meet with climate change experts and try to save us.,464819 +Trump has no regard for the environment. He doesn't even believe climate change is real,743385 +The Paris climate change deal has become law; an important step towards fighting climate change. https://t.co/yz0NK6xPIN,352378 +@yetiweizen @MarkRuffalo Do you understand environmentalists are -directly- responsible for climate change because… https://t.co/jxdjaPZuxk,896685 +"RT @thelpfn: 1ï¸⃣day left to join the @ConservationOrg Thunderclap against climate change on Twitter, Tumblr, FB. Join us!…",344913 +Chinese & EU officials have been working to agree a joint statement on climate change & clean energy #EUChinaSummit https://t.co/gQiHAkNm3B,103328 +RT @RollingStone: Revenge of the Climate Scientists: Leaked report highlights facts about climate change in the Trump era https://t.co/jY0L…,317955 +"RT @amritabhinder: Germany Bans Meat At Official Functions + +Animal agriculture leading cause of climate change, environment degradation htt…",323535 +RT @ketchup1d: Goodnight everyone except for people that think that climate change isn't real,884118 +What can China do to counter Trump's move to axe US climate change efforts? - See more at: https://t.co/9V4ZL0YgpB,907600 +"Despotism, neoliberalism and climate change: Morocco's catastrophic convergence https://t.co/mWPQgzpKAp via @MiddleEastEye",319388 +"@jawabdeyh true,but the media is also important in drumming up support and highlighting impacts of climate change and the need to plan trees",94543 +"��@CNN: all we can say is Russian, Russia, Russia I say @CNN is why Russia made global warming",906238 +"RT @Marek96308039: @jansims471 For some days, Obama is in Milan and is propagandizing climate change. He does not realize that climate…",166594 +RT @USATODAY: Elon Musk: I'm out of Trump council if Paris climate change deal dies https://t.co/9FCmlPp0di https://t.co/N5QfMdrC2U,498008 +@UNEP climate change.,20718 +@introvertedHue After spending 8 and a half hours outside today I fully support global warming,137232 +How is Al Gore still a thing? If you predict the earth will end in 2012 bc of climate change and instead nothing changes at all ur done.,576299 +#ICYMI: Prof. Paul Rogers examines the disruptions caused by climate change and conflicts in the world https://t.co/KfTScqGHwt,213588 +RT @TaigaCompany: TV coverage of climate fell 66 percent during a record-setting year for global warming - https://t.co/WGD6SVDiFO,745401 +"@seth_gal nobody cares about that stuff anymore, it's sad, global warming is inevitable so literally who the fuck cares about it",490678 +"RT @scottsantens: Yes, we have tornadoes here now in New Orleans. But climate change totally doesn't exist. It's just that freak even… ",407623 +"RT @MacleansMag: Would the pipeline and climate change debates been different under Jim Prentice? According to his book, maybe not: https:/…",57607 +RT @trutherbotred: They push climate change down your throat so you don't think about the massive pesticide and plastic pollution that's go…,874698 +The changes humanity needs to adapt to climate change would cost <0.1% of global GDP #ClimateFacts @ConservationOrg https://t.co/kwxoJdrWvt,708834 +RT @ZeroGenmu: This is why global warming is never being solved https://t.co/GjPALiENIX,698181 +@ClimateOfGavin @ScottAdamsSays @StalinsBoots @hausfath I'm happy Scott talked about climate change. Helped me find Gavin's blog,789444 +RT @Newsweek: Climate change 101: Trump's policies will only accelerate global warming | Opinion https://t.co/Q0eNxY2Xcj https://t.co/25fvL…,846358 +@TuckerCarlson i thought that 100% of climate change scientists believed in climate change.,726457 +RT @WorldfNature: Scientists seek holy grail of climate change in Oman's hills - ABC News https://t.co/ejhvxHEnro https://t.co/5Pu4pGYIa2,721486 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,85593 +RT @CNNPolitics: The EPA chief says carbon dioxide is not the 'primary contributor' to climate change https://t.co/baokrLe2gc https://t.co/…,612031 +RT @TeslaMotors: Rising temperatures put millions at risk as climate change hotspot @third_pole (world's 3rd-largest store of ice) is melti…,338459 +Art Basel 2017: Hypnotic underwater procession tackles climate change https://t.co/AgQTTzmosW,11187 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,64779 +@Boejarnewall global warming is real. Guys I'm super cereal.,257851 +RT @NRDC: Morocco is leading by example in fighting climate change w/ a 52% green energy target by 2020. https://t.co/1CsgdWMS9B via @guard…,222681 +Trump to roll back use of climate change in policy reviews: source https://t.co/KKunLugyF1 https://t.co/X3M00onQHB,85769 +EPA chief: Carbon dioxide not 'primary contributor' to climate change https://t.co/MAPyu62eLU https://t.co/i7cnomsoSs,491695 +"RT @TimothyAWise: Would industry lie to you? +DDT +tobacco +lead +asbestos +radiation +PCBs +DES +benzene +Bisphenol A +CO2/climate change +glyp…",69652 +RT @CNN: Indian PM Modi had said it would be a “morally criminal act” for the world not to do its part on climate change…,978637 +RT @RAlNYBOY: me thinking how this warm weather is bc of global warming but my seasonal depression is gone early https://t.co/M8qaT6JY5P,194315 +Donald Trump doesn't believe in climate change — here are 16 irrefutable signs it's real… https://t.co/i2TYNoHfkU,842272 +RT @sydneythememe: 屄 climate change for desert 屄,566358 +TONIGHT! Turn out the lights and #TurnUpTheDark! Get loud about climate change for #EarthHour's 10th anniversary!... https://t.co/Y0EaVHLQtc,836624 +RT @NextGenClimate: Three things business can do to fight climate change under a Trump administration: https://t.co/bjECCkT4Lw @HarvardBiz,896889 +RT @WHLive: “We’ve promoted clean energy and we’ve lead the global fight against climate change.â€ —@POTUS on the progress we've made to #Ac…,928128 +90 #megacities in the C40 need to raise $375B by 2020 to follow through on commitment to tackle climate change. https://t.co/pclfk4CrpE,32619 +"@zarahs He probably thinks of fires the same way he does global warming & weather. Things just burn sometimes, always have. 😳",4454 +the President of the United States of America thinks climate change is a joke and wants to build a 3000km wall,300730 +RT @NewYorker: Scott Pruitt denies the scientific consensus on global warming and disputes the E.P.A.’s authority to act on it:…,462746 +Google just notched a big victory in the fight against climate change - The Verge https://t.co/xaMSDZjg6c,18230 +RT @guardian: Fiji PM invites Trump to meet cyclone victims in climate change appeal – video https://t.co/ORWjy7XgXR,762818 +RT @anastasiakeeley: Our EPA director went on Breitbart radio and denied that climate change has any relationship to Harvey. https://t.co/p…,786587 +RT @TIME: Gov. Brown vows to fight Trump on climate change: 'California will launch its own damn satellite' https://t.co/qvklrPf6jK,709164 +@marshall5912 @KyleKulinski So many ppl okay with the fact our now president doesn't care about climate change & possibly thinks its a hoax.,310079 +"RT @FT: At $65m, this is the most expensive condo in Miami Beach — but could climate change affect its value?… ",300903 +"RT @IET_online: How does climate change affect 7,000-year-old mummies? 😮 Envirotech Online https://t.co/YsW1EROPq5 #mummy #mummies https://…",311755 +"RT @Seasaver: All seven species of sea turtle are on the @IUCNRedList. Overfishing, climate change, habitat destruction & polluti…",52324 +@CharlyKirby @Seasaver Bellamys published only 1 climate change article edited by climate skeptic Sonja Boehmer-Chr… https://t.co/Yt8hGp4M4E,756349 +"RT @colettebrowne: Today, Obama donated $500m to a climate change fund and commuted Chelsea Manning's sentence. +Trump was sued by a woman h…",360063 +RT @girlposts: if global warming isn't real why did club penguin shut down,679442 +"RT @ProtectWinters: .@realDonaldTrump, the US military thinks climate change is an imminent threat. Listen to them. #100Days #KeepParis htt…",121576 +Teens suing U.S. over climate change ask for Exxon's 'Wayne Tracker' emails https://t.co/VfWphr5oWh via @Reuters,491908 +#NowReading: Gender and intersecting inequalities in climate change studies https://t.co/a2qf2INyrD @Esther_Fahari https://t.co/tjKWSoeGMU,660702 +The Liberal Party's 30 years of tussles over climate change policy .. https://t.co/oAbGoTQsKU #energy,728978 +Curbing climate change has a dollar value — here’s how and why we measure it' https://t.co/VU8VhFJarX,849682 +"RT @ChrisJZullo: #StepsToReverseClimateChange stop electing climate change deniers. We must tackle this problem as a global community, not…",548683 +"RT @davidsirota: Photo background: apocalyptic climate change + +Photo foreground: humanity nonchalantly continuing to burn fossil fue…",277746 +"RT @BradReason: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/vSvaVgeR7R via @Reuters",912506 +March 2017 continues global warming trend https://t.co/nJoPCltBs0 https://t.co/TYZJsYZzxf,261231 +"RT @BadAstronomer: As much of the US freezes, here’s a #tbt reminder that yes, this bitter cold is a sign of global warming.… ",481398 +Cutting cow farts to combat climate change: https://t.co/Ggk6A0xtwa - BBC News - Home #Latest,529619 +RT @iansomerhalder: Speaking of climate change-TONIGHT Is another killer episode of @YEARSofLIVING ! 10/9c on @NatGeoChannel https://t.co/T…,864134 +"Finally, someone backbone: Energy Dept. rejects Trump's request to name climate change workers, who remain worried https://t.co/qiJvfhLmkR",764226 +RT @NeilGreenMidWor: More modelling linking global warming to the extreme weathers we are already facing. https://t.co/TvxTGqUDFf,257799 +Your mcm thinks climate change isn't real and argues about it on Facebook articles about the damage of climate change.,366010 +#Indigenous knowledge key to climate change https://t.co/26dkNcFeQK via @newscomauHQ #climate,578643 +RT @HenryMcr: Great to hear @climategeorge talk about communicating climate change to people not like ourselves @mcrmuseum…,857669 +"RT @nxthompson: To slow calamitous global warming, we may need to bring lab-grown wooly mammoths back to Siberia. https://t.co/livR6FuJ4I",478994 +"RT @XHNews: A top Chinese envoy says China will continue its objectives, policies and measures in combating climate change.…",673788 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",836471 +"The National Park employee who tweeted climate change data, in defiance of Pres. Trump will probably get fired, but… https://t.co/97rNOUA986",5195 +Naomi Klein: the hypocrisy behind the big business climate change battle https://t.co/AEqHRfjeZq,744071 +Yeah you're all dancing and drinking beer while global warming is happening,819993 +RT @ajplus: U.S. Secretary of State Rex Tillerson used an email alias to send and receive info related to climate change while…,105033 +"RT @KatyTurNBC: Trump says he will cancel Billions of dollars to the UN for global warming. 'By the way, no one knows what happens to that…",577219 +RT @mitchellvii: I have discovered the cause of global warming (and cooling)! It's that giant ball of burning fusion in the sky. #WhoKnew?,451731 +"Brace yourself for a bitterly cold winter, as climate change shifts the polar vortex https://t.co/TKrnPz6LIx https://t.co/setORHsbeK",839701 +Hopes of mild climate change dashed by new research https://t.co/mL6ZAVPZPc,873740 +"And yet there are those who say climate change isn't real, hmm https://t.co/GWQf3GdmxO",103273 +"You were the ice berg, and now I'm global warming bitch.",829729 +Acting on climate change is Africa’s opportunity https://t.co/lHySj0Ey6l #itstimetochange join @ZEROCO2_,687709 +"RT @Reuters: In a rare move, China has criticized Trump's plan to exit the Paris Agreement on climate change:…",975580 +@CoachTimSalem Give global warming a few more years,992939 +"RT @ClimateCentral: America “can’t walk out when the heat is on” over climate change, U.K. says https://t.co/ssmelJkfAI via @Newsweek https…",755969 +"RT @rehaanahhh: it was 60° yesterday and now its snowing, but tammy said global warming is a hoax so we have to believe her!!! #snowflake",425274 +Bigger beaches for us yas bitch yas global warming https://t.co/HBXaFEOKCr,449925 +RT @ninaland: Thought of the day: anti-porn feminists are the flat-earthers of the intellectual world (along w/climate change deniers). @Th…,673834 +"A global health guardian: climate change, air pollution, and antimicrobial resistance - ReliefWeb https://t.co/XhU1OJyyXo",242524 +Clinton: I believe in science. I believe that climate change is real. (Convention speech) https://t.co/LsjgmOe0Cu,699239 +my soulmate is probably lost somewhere in the woods fucking some cute black chick w a fat ass & im here reading on global warming. Fun,964461 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",189638 +RT @commonwealthorg: Commonwealth drives strategies to put climate change into reverse https://t.co/Kp8eax4qkk,440494 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,286814 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,947754 +RT @WorldfNature: The climate change battle dividing Trump's America - The Guardian https://t.co/CTazAqStR9 https://t.co/xDO6SyKMKg,611158 +"RT @Spam4Trump: Trump will go down in history claiming that climate change doesn't exist, while meanwhile the great barrier reef and the Ea…",930418 +"RT @ratpatr0l: Niggas asked me what my inspiration was, I told 'em global warming, you feel me? https://t.co/2U8qrsUNiL",881582 +RT @Slate: The kids suing the government over climate change are our best hope now: https://t.co/AAecrGraLG https://t.co/aX4A6r7KtT,321503 +RT @JammieWF: Must be climate change. https://t.co/hHW9rdYv6k,978268 +RT @latimes: You can now figure out how much you're contributing to climate change https://t.co/UVvBJk9VBL https://t.co/3IAx9ISczr,90863 +RT @insideclimate: Leading scientists quickly denounced @EPA head Scott Pruitt's comments questioning CO2 as key climate change driver http…,461856 +"According to the U.S. Committee on Science, Space, and Technology, scientists have fabricated global warming. + +https://t.co/34OI8Qhp68",159752 +"@realMSTD @IBM @PathwaysInTech if you believe n climate change,no one will stop you from sending them a check or ditiching your car.",893413 +RT @henkovink: NATO urges global fight against climate change as Trump mulls Paris accord https://t.co/PrQhO3ET9V via @Reuters,97582 +"@jjmcc33 this is a story about weather on the east coast and mid west, not about climate change. you can help yourself by reading the story.",70433 +"RT @ziyatong: I find it interesting that a lot of people who don't believe in climate change, believe that Noah built an arc because of cli…",54251 +RT @highlyanne: Teachers: did you get climate change denying propaganda from Heartland Inst? NSTA will trade it for a science ebook! https:…,202195 +RT @HuffPostPol: GOP plots to clip NASA's wings as it defiantly tweets urgent climate change updates https://t.co/M910vXQ3FX https://t.co/s…,410018 +EPA faked biosludge safety data just like it faked global warming temperature data … Shocking truths unveiled in… https://t.co/P1qdsFagr6,505784 +RT @DanNerdCubed: Trump's put a climate change denier in charge of the EPA? https://t.co/iKRrbXRS4f,273223 +RT @lifeaseva: Taking shorter showers and buying reusable bottles won't stop global warming. It's the main result of our agriculture demand…,886247 +"RT @ESAFrontiers: Key drivers of coral reef change—fishing, water quality & climate change—must all stay within safe boundaries…",938271 +"During its earliest time, a scientist over 80 y/o was well aware of the climate changes we face today + +https://t.co/gdqroLmZdK",943867 +#Growthhacking #Startups #PPC #ideas #solution #idea The best solution to eliminate the climate change is in: https://t.co/nAzqrCc1M0,131809 +"RT @lakotalaw: “Our ancestors and our spiritual leaders have been talking about climate change for a long time.” + +Support... https://t.co/j…",617622 +"RT @QuantumAdvisory: When it comes to climate change, are pension actuaries like the frog...? https://t.co/4e8urFZ6CR https://t.co/mViVBjnI…",377222 +we literally skipped winter again in my state thx global warming,477261 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,640045 +RT @nowthisnews: Bernie Sanders wants to talk about climate change and income inequality – not 2020 aspirations https://t.co/rASODRTr3T,965900 +RT @jessalarna: when ur enjoying the peng weather but deep down you know it's cause of global warming and we're all gonna die soon https://…,19444 +"@nickkerr1961 @guardian He's got a lot more stains like racism, bigotry, climate change denial, misogyny. .....",359565 +RT @ClimateCentral: Donald Trump could scrap the Obama administration’s plans to combat climate change once he takes office…,608805 +"RT @alisonjardine: Beginning a new landscape, based on my Telluride series. + +Concerned about a climate change denier running the EPA?…",232495 +"Trudeau to raise residential school apology, climate change with Pope Francis https://t.co/l8gtHS87Zt #CTVNews #CTV #News",123701 +I recall Obama tried to have dissent outlawed on climate change. https://t.co/6a7MVw0NjC,817217 +"RT @LTorcello: If scientists don't talk about climate change, while actual impacts are being felt, the public will always treat it…",635161 +But according to #Trump there is no climate change nor problem whatsoever ... #keepdreaming #houstonflood https://t.co/c80fTpxial,247020 +"RT @SFBaykeeper: A new study shows a link between climate change and SF Bay oyster die-offs +https://t.co/XTlBLVp8PO",617451 +More intense and more frequent extreme weather is a consequence of climate change we’re experiencing right now.'… https://t.co/DAdtOeCTGE,938781 +RT @FAOclimate: #Climatechange goes far beyond global warming & its consequences. Learn more about #UNFAO's #climateaction via…,30759 +RT @Slate: Trump will be the only world leader to deny climate change. https://t.co/thTQM5qEy6 https://t.co/0WvubdXUqu,705452 +"RT @SreenivasanJain: Trump's top picks so far: a WWE promoter, a climate change denialist and a guy nicknamed 'Mad Dog'. And then there's T…",349996 +@NPR No question on climate change? Nobody wants to risk his or job on this question?,119394 +Pakistan ratifies Paris agreement to combat climate change https://t.co/DepwfbxmSk,896443 +UN climate change agency reacts cautiously to Trump plan https://t.co/U2i72kAS7x,719233 +Donald Trump believes that climate change is a myth invented by the Chinese — how does that level of stupidity even breathe unassisted?,607289 +"RT @enriqaye: im tryna SMASH +S- save the bees +M- maintain a healthy lifestyle +A- address climate change +S- support environmental reforms +H-…",303795 +RT @nvisser: I'm in Marrakech at #COP22 -- what big questions do you have about climate change/the environment? Email me: nick.visser@huffi…,123568 +RT @GoogleForEdu: Happy #WorldEnvironmentDay! Let's ensure we celebrate every year by teaching about climate change…,287032 +RT @WayneDupreeShow: Pelosi: Border Wall Will Leave Children Hungry �� How much money did they spend on climate change again?…,914400 +...and then he spouts anti-climate change nonsense and alludes to pro-Trump Birtherism. Then claims almost all clubhouse is pro-Trump. GTFO.,24611 +RT @voxdotcom: A Trump adviser wants to scale back NASA’s ability to study climate change https://t.co/XLdutJfevB,441152 +RT @KimHenke1: Call @EPAScottPruitt 202-564-4700 and express concerns about his stance on CO2 emissions & climate change. He is gambling wi…,100465 +How does climate change affect British gardens? https://t.co/iNkXl5lEkP,257636 +RT @WRIClimate: @CNBC He should have a look at a few irrefutable facts on climate change science that says otherwise: https://t.co/caMZaq9r…,587932 +RT @markarodrig: @MaureenShilaly @ChooseToBFree He's too worried about climate change,323729 +"RT @toph_bbq: Trump picked a climate change denialist, who has sued the EPA, to head the EPA. + +https://t.co/w39W4YVOy0",50830 +RT @NYTScience: Americans overwhelmingly believe global warming is happening. Far fewer think it will affect them personally.…,599546 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,552116 +RT @backdoordrafts: Gov. Jerry Brown warns Trump that California won't back down on climate change - LA Times https://t.co/NCvDBSAWvn,878865 +"@BLKROCKET @YahooNews So what? What we do? Few people will seed that planet when we ruin this one. And, we'll climate change that one.",494211 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,803869 +"RT @altUSEPA: The EPA's climate change web page shall remain in place for now. At least until it can go away more quietly. +https://t.co/TAZ…",882581 +"RT @ben_thurley: “The Coalition Government has abandoned all pretence of taking global warming seriously.” +#climatechange… ",535734 +Pacific leaders to turn up heat on climate change - Seychelles News Agency https://t.co/dbZIqeGj2W,995446 +"A turistattraction needs to collapse before the reality of climate change is taken seriously.. + +https://t.co/Bn4wXnwbpA",318172 +Washington Post - Trump's pick for Interior secretary can't seem to make up his mind about climate change https://t.co/Q3wXPo9wpB,51166 +"RT @coverboyomie: Warm today, snow tomorrow and niggas still denying climate change",801017 +73 degrees on November 1st.. But global warming isn't real right?,447285 +RT @EricHolthaus: The researchers found the amount of global warming might be higher than previously thought once CO2 levels double (prob b…,735991 +RT @MadamClinton: To the world: A man who doesn't believe in climate change is now president of one of the biggest polluters. This will aff…,100505 +RT @unfoundation: We know that gender must be considered in all climate change mitigation efforts from now on.-@jeannettewocan #EarthToMarr…,72085 +Trump's favorite techie thinks there should be 'more open debate' on global warming https://t.co/9J2WqyMbal,844827 +"RT @AmyMek: Let's blame it on Russia today, tomorrow fake news, next up global warming! This is getting really old! YOU LOST! GROW UP!�� #C…",204185 +Trump signs executive order blocking Obama-era action against climate change. We'll see how well fossil fuel profits stop the rising seas.,135358 +"RT @NickRiccardi: Finnish president on threat of climate change: 'If we lose the Arctic, we lose the globe.'",265254 +"France, where “climate change” causes Islamic terrorism https://t.co/ssPWBm186o",426503 +RT @HarvardChanSPH: In a recent episode of our podcast Lise van Susteren discussed links between climate change and mental health…,226392 +"RT @Resistance_Feed: The Energy Department climate office bans the use of the phrase ‘climate change’ . + +Trump is trying to rewrite scienti…",829793 +@RyanMaue r u saying as argument for climate change these stats don't hold water?,822833 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,613321 +RT @dailykos: Maine state rep's new bill forbids discrimination ... against climate change deniers https://t.co/2Jgmt3bDUU,789678 +RT @NAUGHTONTish: Donald Trump isn’t scrapping climate change laws to help the 'working man'. https://t.co/yE57ADLh7l,167452 +RT @Sick_Sage: Unnecessarily contributing to traffic and global warming. Smfh irresponsible. https://t.co/9A81TI8Pb6,134392 +"RT sacau_media: Time for a farmers’ convention on climate change +https://t.co/39LZ3BsZOz https://t.co/SRoxSg7tj5",761645 +RT @UNEP_CEP: We need to improve the data and gather and consolidate information on global warming to prepare for the future - models need…,265477 +RT @LarryT1940: We're in an interglacial period between ice ages. It's not global warming. This has been happening for eons.…,456308 +@jddickson @AnitaDWhite is maxine waters stupidity caused by global warming too ?,928781 +"RT @RealAlexJones: The latest globalist witch hunt is on as NYT declared incoming EPA head, Scott Pruitt, a “climate change denialist.” +htt…",488311 +RT @ClimateCentral: This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/Cs2qXsnELQ htt…,637257 +@MotherJones whhhuuuut? An Oil man denying CO2 contributes to climate change?? Surely not.,398134 +Palau: on the frontline of climate change in the South Pacific https://t.co/R35GcXAWjZ,291255 +RT @deaddilf69: The iceberg wouldn't be there bc of global warming you dumbass Bitch https://t.co/8Jx4MRhe0s,636686 +RT @NatGeo: The rise in sea levels is linked to three primary factors—all induced by ongoing global climate change. Take a look: https://t.…,691251 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,717856 +RT @ryanstrug: I swear every single 'climate change' video I find has comments disabled. `The debate is over because we'd lose if we had on…,921344 +RT @tinynietzsche: be the climate change you want to see in the world,16525 +"RT @Holbornlolz: Next up + +#G20Hamburg + +Something to do with climate change apparently + +https://t.co/7Sp2rogQRx",738565 +RT @almightylonlon: It's mid November & im outside ... at the park ... with just a tshirt on ... in Chicago this is global warming at its f…,114799 +so much for global warming,64363 +RT @manahelthabet: To those who don't believe in global warming. Giant iceberg splits from Antarctic https://t.co/A5dozkdiOu,349755 +"RT @_CarlosHoy: To keep global warming under 1.5C, we need to accelerate #ParisAgreement implementation &amp; increase our ambition. - ed",709627 +"RT @MarkRuffalo: Because they know climate change is a hoax they started to make things very sad and unfair! Tremendously, very sad… ",896596 +The BBC has been weak on its coverage of climate change via /r/climate https://t.co/5za2XXbuYW #rejectcapitalism #… https://t.co/jJHUOn1reb,126674 +RT @jmsexton_: NY Attorney General uncovers email alias used by Rex Tillerson to discuss climate change at Exxon | DailyKos…,20322 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",344127 +RT @romeogadungan: Semua orang sepertinya harus nonton Before The Flood di Youtube. Dokumenter National Geographic tentang climate change.…,380343 +America’s youth are suing the government over climate change https://t.co/KALEtrWL8W by #WeNeedHillary via @c0nvey,431495 +RT @AndySpenceYheke: The effects of climate change are escalating. What next? Monsoon season in NZ EVERY year in the summer? https://t.co…,666836 +"RT @JooBilly: The problem w/that is climate change is now a matter of national defense--nowhere is that more true than Houston. + +#Harvey",979256 +RT @veroniqueweill: .@AXA is committed to & investing in reducing global warming @JL_LaurentJosi @AXAUKCEO @AXAChiefEcon @AOC1978 @AXAIM ht…,522596 +"MarketWatch: Trump EPA chief Pruitt rejects link between carbon dioxide and climate change https://t.co/fhkJ1eNDam + +Trump EPA chief Pruitt…",922437 +Al Gore offers to work with Trump on climate change. https://t.co/nVsUonKdar,936407 +"reason for global warming and lack of rain +And solution + +https://t.co/FGStSvRgnL + +Please watch this",177547 +"RT @nybooks: Like tobacco companies denying that smoking causes cancer, Exxon spent decades hiding the truth about climate change https://t…",854940 +RT @jelle_simons: Leader of the 'free' world on climate change: https://t.co/ARNZ9x0mPG,219086 +"RT @sleepingdingo: .@mikebairdMP Actually, I think the land clearing laws are worse. Direct impact on global warming! Please reverse t… ",285478 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",376394 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,278668 +nuclear war so that don't have to worry about climate change. https://t.co/XiyIkDApYv,803944 +"Is Charles Koch a climate change denier? Charles Koch would say you’re asking the wrong question. + +“Obviously, if... https://t.co/HHOOmWLieN",919590 +RT @GuyKawasaki: Everything we need to know about the effects of climate change in one terrifying graph. https://t.co/rKAJZYEt4I,671551 +"RT @PopnMatters: Stabilising population helps solve poverty, climate change, biodiversity loss, resource depletion, hunger, the list…",944137 +@tiniebeany climate change is an interesting hustle as it was global warming but the planet stopped warming for 15 yes while the suv boom,794925 +"RT @Dory: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https://t.co/aNfZ…",756835 +RT @NewYorker: A lot of the confusion about climate change can be traced to people’s understanding of the role of theory in science https:/…,485914 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,60176 +"Why President Trump will be awful for clean energy, climate change fight via @FortuneMagazine https://t.co/anegB7P6pl",45335 +"RT @RepAdamSchiff: We believe in dreamers, climate change and healthcare for all. We build futures, not walls. We are Californians. We are…",155423 +"RT @markitgirlz: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change https://t.co/shkOROo…",777221 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,302729 +@realDonaldTrump Ur going to compound climate change with ur anti environmental stance. New $$ making endeavor gas… https://t.co/xxvlHunfP8,270476 +"Hanson visits reef to dispute climate change. + Senator Pauline Hanson has slippe...https://t.co/YL8R2uRnin",564907 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",868071 +If you don't think freedom of speech is under attack ask yourself why the EPA has a gag order and can't discuss climate change.,511137 +be hate inchworm thymes global warming maroon mcchicken is marina,765166 +@realDonaldTrump NASA provides proof of climate change. I'm sure you could talk to them yourself. Please do that. https://t.co/wBGyncL5dP,686589 +"RT @TheAuthorGuy: Hmmm, climate change witch hunts? And still 32 days 'til inauguration. +https://t.co/EIOlsb20YH",179460 +Government facing legal action over failure to fight climate change - The Independent https://t.co/bvcRS6sY6Z,979548 +No @VaiSikahema it's not just 'summer there'...it's called global warming. This isn't normal.,161158 +"RT @JoyAnnReid: So the federal govt won't be fighting climate change for the next 4 years. They *will be fighting abortion, voting, healthc…",122086 +RT @AMZ0NE A SciFi author explains why we won't solve global warming. Read the blog. ▶https://t.co/SkfzcYglrf #amreading,242717 +RT @davidsirota: Most climate change denialism is a reflection of,820265 +RT @washingtonpost: CDC’s canceled climate change conference is back on — thanks to Al Gore https://t.co/rsgScuTXxn,301262 +RT @nokia: Our followers say stopping global warming is a top priority in the future. How can technology fight climate change?…,548778 +"RT @papermagazine: The LGBT, climate change, HIV/AIDS, and disabilities pages have already been removed from the White House website… ",50847 +RT @Kathleen_Wynne: We've reached our 3 billionth recycled container! Thanks to everyone fighting climate change by keeping cans & bott…,816109 +"RT @genemarks: America’s loss is China’s gain: Trump’s stance on climate change is a gift to the Chinese +https://t.co/xHe4u4oIeb",529955 +@carolinaluperc @NCStandards global warming is some serious shit,223003 +@NYCMayor We all know climate change is real your dumbass. It's called the ebb and flow of Mother Nature. Go read a book you hack,306003 +"RT @AstroKatie: Seems much of global warming denial these days is data nihilism. Lots of 'you can't possibly know!', little substantial arg…",670436 +RT @parthstwittter: how can our snow have melted if climate change isn't real? @absltly_haram https://t.co/4Bqikjj4oK,927913 +RT @GlobalGoalsUN: One more day! The #ParisAgreement on climate change enters into force on Friday. Ban Ki-moon needs us all to take a…,797806 +RT @nowthisnews: Al Franken is the master of humiliating climate change deniers https://t.co/8yu54IPI3P,518697 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,320211 +RT @NYTScience: Trump has called climate change a Chinese hoax. Beijing says it is anything but. https://t.co/tPCyXdfKAC,312148 +"Do you believe that recent climate change is primarily caused by human activity? +more: https://t.co/CuNMYc00Hw https://t.co/zQUeX3QTKN",703919 +"RT @PiyushGoyalOffc: India’s clean energy share to reach 46.8% by 2021-22; will achieve committed climate change goal much earlier +https:/…",951694 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,78201 +Six irrefutable pieces of evidence that prove climate change is real | Popular Science https://t.co/IQ8KowQQBf,178353 +RT @NathanJonRoss: 17 US states together filed a legal challenge against White House efforts to roll back climate change regulations https…,856674 +RT @ProPublica: Weather Channel attacked Breitbart News for a post last week that denied the existence of climate change. https://t.co/NY8m…,88796 +RT @SpiritualSmoker: it's absolutely disgusting how big of a problem climate change it yet nobody seems to give a fuck,763171 +RT @richardbranson: 8 ways you can make a difference to climate change: https://t.co/vVz3HupO4l #readbyrichard https://t.co/5Zi4VXbbij,961797 +RT @tan123: 'Senior Nasa scientist [Gavin] suggests he could resign if Trump tries to skew climate change research results' https://t.co/M0…,331941 +@truth_2_pwr_ @Slate In a PBL study only 43% of meteorologists surveyed even believe in man-made climate change.,61059 +"ProudlyLiberal2: RT ChrisJZullo: Karen Handel opposes marriage equality, climate change and would outlaw abortions. Make an impact #Georgia…",228395 +"RT @Reuters: Budgets and business, climate change, oil prices and protests. Get your headlines in the Morning Briefing:…",906839 +RT @usachemo: @ActinideAge @tder2012 More proof that climate change has a religious aspect that sometimes overshadows the scientific part.,796076 +"thefirsttrillionaire Red, rural America acts on climate change – without calling it climate change… https://t.co/Zpe8DTW3RB",550181 +RT @umSoWutDntCare: @MrJamesonNeat @PatrickMurphyFL Florida you need Dems in office to get things done with climate change! #VoteBlueNoMatt…,584668 +RT @billmckibben: Mildly Disturbing Headline Dept: 'Stratosphere shrinks as record breaking temps continue due to climate change' https://t…,858574 +#BeforeTheFlood a documentary on climate change ðŸ³ðŸ¼ðŸ§https://t.co/vkSGOpO5fE https://t.co/ad7ef58YPF,397634 +@rainbowscome @billmckibben Exactly! It's address climate change or slowly kill ourselves,774584 +Angela Merkel promises to take Donald Trump to task at G20 summit over climate change via /r/worldnews https://t.co/LsBf0ghrrX,376780 +Hurricane Dineo hits SA hmmm and global warming doesnt exist according to some lmfao SA doesnt get this global warm… https://t.co/csAy0QGd5n,571842 +RT @Mensvoort: Holland before the dykes (500 AD) looks a lot like Holland after a global warming catastrophe.…,598952 +RT @EcoInternet3: California lawmakers passed a landmark #climate change bill — and environmental groups aren't h...: Business Insider http…,251053 +"I generally avoid posting politically charged material, but as a scientist I'm dismayed that many world leaders still deny global warming.",156160 +"@curticemang @JPJones1776 @CDNnow No. Chelsea has connectedness, child marriage and climate change going for her!",209792 +RT @_ajaymurthy: The last time Bill marched was to stop action on climate change. He also called Helen Clark a cow. There’s that ba…,623700 +RT @jiljilec: bees are dying out & climate change is destroying our environment yet the nigga I want has the audacity to act like…,386349 +RT @COP22_NEWS: #climatechange: To deal with climate change we need a new financial system #p2 https://t.co/XUbIM5wvej https://t.co/n44pUJ6…,975607 +"RT @NaomiAKlein: In approving Keystone XL, the State Department 'considered a range of factors' - not one of them was climate change https:…",710461 +We need a democratic president- the Democratic Party is the future! ������they embrace climate change!����,414286 +RT @climatehawk1: 2nd Wisconsin state agency has solved #climate change by removing mention from public website…,504386 +"RT @GlobalWarmingM: Ta Prohm’s haunting ruins are also a 1,000-year-old climate change warning - https://t.co/bfpdRP9Jx2 #globalwarming… ",615210 +RT @LibyaLiberty: Best climate change advice: https://t.co/GU35pzw3iA,686504 +RT @Exxon_Knew: 'ExxonMobil has a long history of peddling misinformation on climate change.' @elizkolbert in @NewYorker #ExxonKnew https:/…,201360 +RT @CNNPolitics: The EPA chief says carbon dioxide is not the 'primary contributor' to climate change https://t.co/tx0NLedD6H https://t.co/…,477876 +RT @Sanders4Potus: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump th… http…,857523 +"RT @WomensInstitute: Make, wear and share green hearts in Feb to #showthelove for all that could be lost to climate change #WENForum #whywo…",65576 +"RT @handsock_butts: Reporter: Trump, what are your thoughts on global warming? + +Trump: Rearrange 'Miracles' and you get 'Car Slime' This me…",311290 +RT @AP: VIDEO: New study says Earth will lose 10 days of mild weather by end of century because of global warming. https://t.co/hMlUsJhOn5,354703 +@albertacantwait @paigemacp - I guess climate change isn't real.,713717 +"@climatebrad @elonmusk Musk prioritizes NewSpace over environment - look at him fundraise for climate change deniers +https://t.co/0QZs4nzVUD",3484 +Energy Day comes as major companies lead the fight against climate change https://t.co/xEFmnRSVeJ,333986 +@funtrouble1 So what you're saying is because he has the educational background to understand the science of global warming you mock him.,433077 +RT @Descriptions: if global warming isn't real why did club penguin shut down,987845 +RT @uchinatravel: #GameofThrones' @NikolajCW and @GoogleMaps are showing climate change in Greenland https://t.co/yTJkPZ54sl……,487343 +He's not protesting climate change he's protesting inaction and insufficiency of action on climate change! https://t.co/ujFWxjiAZg,389631 +Theresa May says she won't address climate change at the G20 summit https://t.co/5784fELpZx https://t.co/f3KMDQB1Hz,349078 +"RT @NPR: The German chancellor had described G7 climate change talks as 'very difficult, if not to say very dissatisfying.' https://t.co/uw…",110116 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/6sR48wg6e4,853938 +RT @climatehawk1: Wisconsin state agency solves #climate change--just deletes it from public website https://t.co/v12i9R9wYH via…,280471 +"RT @NatureNews: The East Antarctic Ice Shelf is beginning to reveal its vulnerability to climate change, and scientists are worried…",528472 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,148108 +"RT @thenatehelder: When I'm on adderall thinking about finals, dark matter, climate change, and bees dying https://t.co/3xjBVLRSkb",344553 +when will people start talking about the climate being a human right? climate change is about human rights.,916759 +RT @ChristopherNFox: Merkel seeks to bolster support among #G20 members for tackling #climate change ahead of G20 summit on 7-8 July https:…,259516 +RT @kfhall0852: France's President is bilingual & believes in climate change. Our President cannot even speak English & thinks grav…,961234 +@aatishb @AstroKatie That the operator of @HouseScience thinks it is acceptable to harass people traumatized by climate change is horrific.,423634 +Post Edited: Trump ‘set to pull out’ of Paris Agreement on climate change https://t.co/bkksuiGf1X,857805 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,397365 +"♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/MPX4PhRDVP",857555 +"RT @dickfundy: Day 49 + +- EPA chief says carbon dioxide doesn't contribute to global warming. +- Flynn concealed foreign lobbying work from J…",989563 +"RT @daraobriain: Trump staffer Mick Mulvaney, wearing a Shamrock, announced an end to Meal on Wheels and climate change research. Happy St.…",288858 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,29623 +"Stopping global warming is only way to save GreatBarrierReef, scientists warn: https://t.co/DZxIQX9xJ9: #AdaniMineEnvironmentalDisaster",296324 +RT @tilc9: David does not mess about. Brilliant as per. If Attenborough isn't enough to get people to take climate change seriously.. #Grea…,195452 +"RT @BasedElizabeth: Liberals are more worried about Islamaphobia (which I believe they invented, kind of like global warming) than they are…",89006 +RT @KewGIS: Coffee and climate change in Ethiopia https://t.co/ud6CUXD3tD,685999 +RT @thelizarddqueen: have you ever heard of animal agriculture? Also known as a leading cause of climate change? https://t.co/kt6I7vFsX0,953360 +"https://t.co/dG4W1CTvdz Counting the cost of pollution and climate change, wind energy is much cheaper than burning… https://t.co/VwgGkxczua",398016 +Zombie health care bill dies in DC while bipartisan majority moves climate change bills in CA. Know hope.,23380 +RT @wef: Knowing about climate change doesn't make you care more. Your political beliefs might though https://t.co/W774R9nruZ https://t.co/…,858247 +"RT @sciam: Science and the Trump Presidency: What to expect for climate change, health care, technology and more… ",251406 +"RT @KHayhoe: How do we know this climate change thing is real - not a natural cycle, not an elaborate hoax? https://t.co/MvAWypaOJe #global…",892567 +RT @MailOnline: Scientists say climate change IS real with 'no room for doubt' https://t.co/AtetDXN1lz,544308 +"@realDonaldTrump Oh please. We have failing infrastructure, climate change (it's real), Flint water, cutting all se… https://t.co/QTztUs5aLk",736038 +Former President Obama is giving a keynote address on food security and climate change... https://t.co/XrVXFFZzII b… https://t.co/HQ4aXacz0o,788588 +RT @ProfTerryHughes: Minister's Op-Ed on Protecting the #GreatBarrierReef. No mention of tackling #climate change. https://t.co/bRVLto0enq,422746 +China 'laughed!' at Obama’s climate change speech,839256 +"On racism,global warming,and immigration policies,Poets of America take on Trump! https://t.co/XqDOAtMKmB",151320 +"RT @drvox: My new post: New research shows: yes, Exxon has been misleading on climate change https://t.co/JUGsu8yM5f",306785 +"It's not global warming, but cooler temperatures are the most pervasive throughout most of US: https://t.co/bMehhkkNw2 #climate",847300 +"RT @xoapatis: @bbhzeo @bynfck Gue tu bingung, apa hubungannya sm global warming",992698 +RT @9GAGTweets: Major causes of global warming https://t.co/fD2kbo0ZHh,659398 +RT @teenagesleuth: HRC used Obama's time machine to start the Industrial Revolution so she could use climate change storms to make Texas re…,147593 +"@Susan_Hennessey Long list of things more serious and immediate than climate change: e.g. Putin, gene drives, Pakistan/India nuclear war.",145217 +"RT @ClimateReality: Protecting our public lands, safeguarding our air and water, and acting on climate change shouldn’t be partisan iss… ",223963 +RT @nowthisnews: Listening to Barack Obama talk about climate change will make you miss common sense #tbt https://t.co/KmjYjBshIV,810561 +@realDonaldTrump I swear to god if you do nothing about climate change we are all going to die from prehistoric ice diseases. Congrats.,291291 +His opinion: The challenge of climate change: https://t.co/IhOhTk9zfM,703836 +RT @climatestate: Al Gore’s new climate change movie arrives just in time. https://t.co/471qPva31U,211575 +@MeredithFrost @gangwolf360 @artistlorenzo Brilliant! Art can do a lot to promote action on climate change. This highlights that.,238579 +"RT @Heritage: 23 environmental activists, trial lawyers, and academics came together to shut down dissent on climate change—using… ",210624 +"@themadvalkyrie you're right, global warming is already an issue. We can't pollute the air more.",819555 +RT @MJVentrice: Climate Change is something that is realized in the troposphere. I'm not aware of research regarding climate change's impac…,558154 +"@databreak Geez, that's HOT! Mail melt 2? +Can it be that global warming thingy? +Nah, Trump said it's a hoax, & he's… https://t.co/FiYFulklEa",592357 +RT @citiesdiabetes: The link between health and climate change is strong. A common vision for urban policy that includes health serves…,276482 +RT @PMOIndia: SCO can devote attention towards climate change: PM @narendramodi,673932 +RT @preston_spang: It's November 1st and the high today is 85° yet somehow people still say global warming isn't real. 🙃🙃🙃,995721 +RT @PublishersWkly: Stranger than Fiction: Why won’t novelists reckon with climate change? | @thebafflermag https://t.co/JItwCqGUXM,592147 +RT @edyong209: Trump’s “hoax” tweet has set a ridiculously low bar for his nominees on climate change https://t.co/J1OvWh6xsl https://t.co/…,773618 +RT @EnvDefenseFund: Historic news clips reveal that scientists forecasted the effects of climate change as early as 1883. https://t.co/35d7…,684165 +Nelson presses Wilbur Ross on protecting climate change data https://t.co/p4s9UqdjAO,350641 +RT @clairecoz: 'We used to grow apples here. Now we grow oranges' - how climate change is changing life in Nepal's mountains https://t.co/x…,87764 +"RT @Trump_ton: If you live in Texas, voted Trump, deny climate change and believe God sends storms as a punishment - hope you're enjoying a…",272814 +"These days temperature in Milan, Italy should be around 0°C. It was 16°C at 10 AM today. Call global warming a theory.",435767 +"RT @ImeldaAlmqvist: Brief message from a 13 year old shaman about reversing global warming! + +https://t.co/AsteUGKdNG",62657 +@foxandfriends the people that push climate change are the same that push segregation racism and we're Grand dragons of the KKK Democrats,296443 +"DUP 'the anti-abortion (...) party of climate change deniers who don't believe in LGBT rights'. + +Bigoted Healy-Rae… https://t.co/nYzeTRCQcX",263147 +"@KADYTheGREAT Aww that's no fair! I sent him, but global warming ��",671827 +"It's November and this is the forecast, but sure climate change is a hoax 👌ðŸ¼ https://t.co/V6Aq0FvcXJ",928178 +This is not climate change!!! This is the wrath of God upon the wickedness of mankind.The only hope is Jesus Christ… https://t.co/ErIaM2TZKV,467586 +"Scott Pruitt, head of EPA, isn't so sure carbon dioxide drives climate change https://t.co/2iQ2nFTBpa via @Mic",755440 +World leaders duped by manipulated global warming data https://t.co/er0fRQJQyC via @MailOnline,254496 +RT @RepMarkTakano: Since our fed agencies are no longer allowed to...I want to share some climate change facts that @realDonaldTrump doesn'…,460932 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",147670 +"RT @daveanthony: If the Great Barrier Reef can die and the deniers don't bat an eye, it's time to get militant about climate change. A huge…",569718 +RT @BarbieBee63: @FREEDOMPARTY2 God said if you remove Him from your land He will make it a wasteland. It's not climate change but a…,643831 +RT @spinosauruskin: People are actually using the 'plants need CO2' argument as a rebuttal to climate change https://t.co/umGAiv8i6V,886969 +RT @yoginibear11: Wait--they want to fight climate change? Is that a misprint?😳 https://t.co/ZIyRWedoUQ,232075 +"RT @IslamicReliefUK: 'The Earth is green & beautiful and Allah has left you as stewards over it” – Muslim + +Tackling climate change is ve… ",109532 +"Because if you are a denier of climate change, you are a denier of your own existence.",468568 +RT @YahBoyAang: I blame the Fire Nation for global warming,4936 +RT @lordstern1: My new op-ed in @FT about China's leadership on climate change: https://t.co/QiPwXuFfNb,203154 +"RT @ABC: Trump team compiling names of Energy Department staff who worked on climate change policies, document shows… ",27673 +"@GodandCountry51 @megynkelly I know it's hard for you people to grasp, but this is CAUSED by climate change.",129667 +"RT @StopEatingBees: If climate change is real, how come I ain't seen any climate dollars? + +#IAmAClimateChangeDenier",98126 +"RT @krauthammer: Obama fiddles (climate change, Gitmo, now visit to Havana); the world burns – as Iran, Russia, China, ISIS march. https://…",279960 +RT @CrazyinRussia: Russian haven't got time for your climate change bullshit. https://t.co/r4HUPHiZqR,417611 +"RT @Mod_Ems: Mon. temp -5°F (with wind chill). Thurs. 65°. I'm just relieved there's no such thing as climate change, or we'd see some REAL…",179502 +"So this is winter now. I'm not complaining, but people who say there is no global warming are smoking crack. https://t.co/lv5jaMiZbM",649846 +"RT @SteveSGoddard: January 20, 2017 is the day we end the climate change scam. +On January 20, 1977 it was snowing in Miami and hot in… ",972392 +RT @EdinburghMSYPs: SYP supports the Paris Agreement & urges Scot & UK Govt to work with other nations to ensure talking climate change is…,690263 +RT @INCRnews: Investors are acting on #climate change -new doc just released from @AIGCC_update @CeresNews @IGCC_Update @IIGCCnews https://…,844854 +RT @PattyMurray: When we are already seeing the effects of climate change—it’s unnerving Trump would choose a climate change denier to set…,64801 +There's gotta be at least a 70% correlation between who's wearing sweatpants on campus right now and who believes climate change is a myth,725765 +Proud to be part of the fight against climate change @Heurtel @stpierre_ch ; one of #Qc top priorities #QcDiplo… https://t.co/RJDm1qjLy6,500151 +Soon AAP will blame them for global warming': Twitter mocks Preeti Sharma Menon for blaming EVMs fo exit polls… https://t.co/AJS6hVCxNk,137665 +RT @itsmelukepenny: U.S. national parks tweeting climate change facts is an act of rebellion against today's Trump news. Not joking. https:…,327170 +RT @RogueNASA: Trump administration buries a government site designed to educate children about global warming https://t.co/KWVnzX6Oak,737240 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,835581 +"@ericbolling Eric, climate change is a natural process which happens every 500 years. Your male guest is an idiot he drank the coolaid",975161 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,76414 +RT @ClimateNexus: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/KanMC92G2k via @MiamiHerald https:…,957883 +Satellite launched to monitor climate change and vegetation https://t.co/aUyFA4W7s3 #DSNScience #spaceexploration,946476 +RT @scifri: Here’s how to change the mind of a climate change denier. https://t.co/mzU0LaEmck https://t.co/dunJVqJk5u,933294 +I enjoy what I predicted global warming.,854047 +Glacier photos illustrate climate change https://t.co/B9bv0MLMxj https://t.co/bsEP0PFDhp,117233 +@XxSnakeProxX now I'm failing to see the correlation between climate change deniers and their substantial lack of evidence and,270551 +RT @guardian: 'Where the hell is global warming?' asked @realDonaldTrump in 2014. Well... #GlobalWarning https://t.co/3n8F5g9E3e https://t.…,65083 +RT @guardiannews: Bird species vanish from UK due to climate change and habitat loss https://t.co/pSodQ352qU,202684 +INCONVENIENT DATA? Whistle blower says NOAA scientist cooked climate change books https://t.co/A8A8kcxJZC https://t.co/uPfrpv4KAf,64863 +"RT @EcoInternet3: This is what ancient, 3km long ice cores tell us about #climate change: World Economic Forum https://t.co/W9zSLCeSdl #env…",390621 +"RT @devitosdick: trump is president, carrie fisher died, regular show is ending, global warming is real. life is basically stupid at this p…",149562 +"On climate change, Scott Pruitt causes an uproar — and contradicts the EPA’s own website +https://t.co/hFguRWZvsk https://t.co/UN0PdBHiRH",292543 +"From healthcare to climate change, Obama's bold agenda remains incomplete https://t.co/BPdPzaC37C",263451 +"I’d be gay, but I was the World Trade Center, right now, we need global warming! I’ve said if Hillary Clinton were running",40122 +Is global warming real?,573893 +RT @ClimateNexus: Trump says ‘nobody really knows’ if climate change is real https://t.co/9ucnGI1FO2 via @washingtonpost https://t.co/gVPTz…,774671 +"RT @beeandblu: Is he the reason for global warming!? +@iHrithik you make our hearts skip a beat 🙈 +#HrithikRoshan @Hrithikdbest… ",879851 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,86848 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,397160 +@wikileaks the 'science' behind climate change is financed by the same people that control the media you're bad-mouthing. YOU take THAT in.,475194 +With scientists and religious leaders. Oceans and climate change. #COP22 #climatechange https://t.co/2r5f5omzH1,637080 +"RT @NotAltWorld: EU pledges $20bn/yr for next five years to fight climate change despite Trump's plan to pull out of #ParisAgreement + +https…",740039 +RT @kim: Adoption was Junior's signature issue in the same way Ivanka worked on climate change & Melania wanted to stamp out bullying.,925132 +"Tennessee broke a record of over 100 years with the high of 74 on Christmas Day. +Tell me global warming isn't real",629995 +meanwhile america's president-elect doesn't believe in climate change 😍 https://t.co/B2G2FkhF4h,687834 +"RT @iamrajl: Stop by poster 166, if you want to talk about hydrological modelling and climate change! 😀 @ArcticNet #ASM2016… ",869772 +"Top story: China rolls its eyes at Trump over his ridiculous climate change cla… https://t.co/4iduFECBg0, see more https://t.co/bJytaDKdOI",762016 +RT @SebDance: Only hearing the uncritical voices of Brexiters on BBC akin to 'filling its airwaves with climate change deniers co…,926397 +RT @SenKamalaHarris: Our scientific community has spoken on climate change. I want them to know with certainty that I hear them. https://t.…,647788 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,562390 +RT @UNFCCC: Going to @UN climate change conference #COP23 in Bonn in November? Start preparing now with this resource:…,535086 +British scientists face a ‘huge hit’ if the US cuts climate change research https://t.co/xM1mOV7IMz,424682 +Jane Goodall calls Trump's climate change agenda 'immensely depressing' https://t.co/ch8oK051eF,877815 +"@HalleyBorderCol Also, appointing a leading climate change skeptic and science denier as your EPA guy is already a bad outcome. Predicted.",696873 +RT @NasMaraj: Not to be dramatic but if we don't take climate change more seriously we're all going to die https://t.co/Y2PgKVwnbd,475889 +RT @AJEnglish: This cute Penguin colony is at risk from climate change https://t.co/IBMSbIssbX,31358 +RT @infowars: Climate Report to UN: Trump is correct to be skeptical of 'climate change' claims... https://t.co/hhssrar2pc #GlobalWarming #…,378750 +"RT @acespace: Extra Credit: This is a much-needed reminder when facing an issue as large as climate change. Thanks,…",444206 +".@ScottPruittOK Taking on your new job, it makes sense to learn facts about climate change and the environment. #ClimateChangeIsReal @epa",608581 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,728954 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,957113 +You gotta be a new kind of dumb to think that climate change isn't real??????,801794 +RT @CarbonBrief: NEW - Guest post: Adapting to climate change through ‘managed retreat’ https://t.co/ucdpLzxTza https://t.co/5Mf172NU9e,518225 +RT @MattBors: Florida. Half the state's going to disappear in ten years due to global warming. They're going for the guy who says it's a Ch…,358103 +"@sallykohn Well, gee. That's called earth cycles which can last for decades. If there is a 'climate change' the cycle will explain it.",680249 +Scientists call for more precision in global warming predictions: Source: Reuters… https://t.co/1Mb6l4J3DQ,330131 +"RT @NatGeo: The ocean is home to treasure troves of biodiversity, and protecting these areas builds resilience to climate change https://t.…",639079 +The reason why there is no global consensus on climate change is that different countries have their own interests at heart. #climatechange,568837 +Inspiring: filmmaker from Odisha wins her fourth National Award for her film on climate change @theLadiesFinger… https://t.co/27ov1ndnCb,674514 +"New York 2014 - buried treasure, global warming, corporate espionage, plucky kids, love, action, community & a plan to end late capitalism ��",408712 +"RT @JonRiley7: Trump denies climate change while Somalia's drought & starvation proves the consequences +@OxfamAmerica…",751683 +RT @AnthonyAdragna: OOPS: EPA left up its climate change information in SPANISH. https://t.co/qv8DxLVEz1 https://t.co/ylas9QyBRL,83788 +@StacyBrewer18 What is funny to me is in his private legal affairs he uses climate change to justify his cases. Then in public denys it.,870105 +"RT @AngelicaJoy__: It's so nice out LOL global warming, we're all finna die https://t.co/8QsUzRURXz",506017 +and ya'll thought global warming wasn't real -___-,990787 +"RT @Waterkeeper: Stream Before the Flood, a new film about climate change by @LeoDiCaprio & Fisher Stevens, for free. https://t.co/uRaXqAri…",249793 +RT @AbortionFunds: .@NancyPelosi would never endorse a climate change denier - so why an anti-abortion candidate? https://t.co/hLFbTWsGir,500428 +Does anyone think global warming is a good thing? I love @peltzgomez . I think she's a really interesting artist.,474046 +RT @WTFFacts: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/oJJePGBpSD,285709 +RT @ceerara: so many people actually don't believe in climate change !!!??¿? it's alarming ??!!¡¡!!!!,738823 +"RT @top1percentile: Arguable more serious with its impact over a shorter timescale, and far more easily rectified than climate change,… ",713163 +"@ajplus this climate change, world is warming huh?",254402 +@HawaiiDelilah Radical energy shift needed to meet 1.5C global warming target: IEA https://t.co/Z2xLWdaJA1 via @Reuters,784922 +"RT @climateprogress: Brace yourself for a bitterly cold winter, as climate change shifts the polar vortex: https://t.co/AzExUHPNIL https://…",172957 +RT @physorg_com: New technique predicts frequency of heavy precipitation with global warming https://t.co/rPFtaEYrRQ @MIT,152465 +"RT @Fusion: Imagine, if you will, a world where the media covered climate change the way it covers Hillary's emails…",808051 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",485595 +RT @Martina: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/nzRm0e8LG2,907857 +"@CoryBooker Nothing contributes to climate change, God controls it all.",976351 +RT @tan123: Guy who claimed 'climate change is a barrage of intergalactic ballistic missiles' now calls for 'less emphasis on “…,890487 +World leaders duped by manipulated global warming data https://t.co/JZjiM5wZpU via @MailOnline,22342 +RT @egervet: The heat is on... simple visualization of global warming in the past 100 years https://t.co/NvGCiz2x8R,793794 +RT @WhitfordBradley: This is huge. We need a bipartisan solution to climate change. @RepCurbelo is heroically leading the charge. https://…,397069 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,696234 +The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,446222 +"RT @mitch_at_EEN: From heatwaves to hurricanes, floods to famine: seven climate change hotspots https://t.co/Ki5IIY15Ip",421398 +"RT @davidrankin: Trump admin denies climate change & will do nothing about it; a Dem admin would have said they believe in clim change, don…",133429 +RT @thehill: NY attorney general: Tillerson used 'alias' email account to discuss climate change issues at Exxon…,906252 +Actus Mer/Sea News: Via @CBDNews - UAE’s fragile reefs will be under more strain: climate change report -…… https://t.co/21pSbcencG,414092 +RT @HarvardChanSPH: Health is the human face of climate change https://t.co/yBhqleDWeU https://t.co/Nozrp8FY7x,921186 +RT @DrexelNow: Did you know? An urban climate change research hub has opened at #Drexel https://t.co/OYctqDXlpi https://t.co/rFBWSeKmO2,73317 +There will be a banking royal commission after we change the government. Also marriage equality and action on climate change. #auspol,750866 +RT @GodfreyElfwick: My 8 year old niece told me 'I believe climate change also contributed to their vulnerability when it came to being…,404488 +RT @climatehawk1: Trump’s election marks end of any serious hope of limiting #climate change to 2C | @drvox https://t.co/O4uA38Ayq6…,217262 +"RT @PRESlDENTBANNON: 1. Get in power by denying climate change +2. Pull out of Paris Agreement +3. Watch liberal coastal cities wash away +4.…",82084 +"RT @dyoofcolor: me: exo has reversed climate change and freed us from our sins +someone: thats not possib- +me: https://t.co/h7jLnZbynh",178765 +Check out the @BillNyeSaves episode on climate change then go change the world #EarthDay https://t.co/BXkHklLST5,856902 +@DRUDGE_REPORT I coughed up a piece of my lung today. Because of climate change.,128311 +RT @xtrminatewhites: If I get a girlfriend we can stop global warming gamer girls DM me,28674 +@TerryDiMonte global warming anyone?,622104 +"RT @PMgeezer: 'China warns Trump against abandoning climate change deal!' +China not reducing emissions! Only we are. https://t.co/5YdlBvNg…",530054 +"RT @LAXX: The man who is going to be president of the United States doesn't believe in global warming. + +The world is fucked.",381560 +".@DeidreBrock pls publicly oppose DUP views on abortion, same-sex-marriage + climate change #DUPdeal",98355 +"@FLOOKLYN Well, his position on climate change definitely isn't a lie. https://t.co/cB0QNkpkGM",740344 +BBC News - G7 summit agrees on countering terrorism but not climate change https://t.co/aRObkNFQLI,138808 +RT @simon_schama: Fact: theman who said climate change was a 'Chinese hoax' now President elect of USA . Facty enough for you? https://t.co…,170089 +#ItShouldveBeenBernie He supports climate change action! Not sure abt any other politician. 2them $$$ always win… https://t.co/d95ugIUGKT,226215 +RT @EnvDefenseFund: 3/4 of our energy is being wasted. We’re losing money & contributing to climate change. Six key solutions. https://t.co…,423833 +"Millennials: In addition to housing affordability and climate change anxiety, have some nuclear existential anxiety… https://t.co/ycDKBqhqWY",369913 +RT @climatehawk1: Doctors warn #climate change threatens public health - @kavya_balaraman @SciAm https://t.co/4IsKwQp2Rp…,95896 +"Fam, if Gov. Deal denies climate change again.. and suggests we all just pray for rain.. again.. I'm DONE with this state forever",97840 +How does one not believe in global warming?,89084 +"RT @realDonaldTrump: Give me clean, beautiful and healthy air - not the same old climate change (global warming) bullshit! I am tired of he…",239009 +Republicans who support combating climate change urge Trump to stay in Paris deal https://t.co/nrQLs4Tfa1 via @HuffPostPol,366412 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",851148 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,474593 +RT @Canadian_Filth: China has 3500 coal plants so Alberta is shutting down 5 to save the world from climate change,633845 +RT @theCEWH: Research shows inland #wetlands can mitigate climate change by improving carbon stores & offsetting CO2 emissions…,51545 +How the global warming fraud will collapse https://t.co/hAMaWGKlCs,278633 +"@linyalinya Doon nalang sa basa tapos walang amoy. Kapag inasar ka, sabihin mo climate change nakikisabay lang sa p… https://t.co/pA9qLHynTk",39361 +RT @MarkRuffalo: Don't Trump our children. Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/4t31ZqceS9,221510 +RT @Independent: Leopards are moving into snow leopard territory because of climate change https://t.co/lmkD3Khzm0,66321 +@umairh @davidsirota Maybe climate change is just the Earth's immune response to us.,66661 +"RT @cnni: From urbanization to climate change, Google Earth Timelapse shows 32 years of changes on Earth… ",613615 +China deserves to be the biggest power in the world if they will battle climate change unlike the US,942704 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,15587 +"Donald Trump wants to meet Leonardo DiCaprio again, discuss climate change +#Trump #LeonardoDiCaprio #Climatechange +https://t.co/9ol16E9duc",353103 +"RT @GSElevator: Cool climate change speech, bro... https://t.co/fUCIfS4Iy0",271735 +RT @SenWhitehouse: We've got to be quicker to respond to the issues climate change poses RI fishermen like @SeaHarvesters' Chris Brown http…,159461 +RT @carolinagirl63: Sounds like more swamp needs draining....DOE won't provide names of climate change staffers to Trump team https://t.co/…,807877 +US 'forces G20 to drop any mention of climate change' in joint statement • https://t.co/qQlXc4LNzX •,934854 +RT @Joannechocolat: Amber Rudd: We wouldn't consider telling Trump he's wrong about climate change because 'that's not how diplomacy wo…,409387 +RT @PennyPurewal: Sad. We are the ones causing the climate change. Mankind must know that humans cant survive without earth but plane…,203644 +"RT @mattryanx: Tomi's favorite hobby in 2016 was calling climate change 'bad weather.' But in 2014, she said it was an agreed-upon… ",635192 +RT @climateWWF: The #ParisAgreement establishes a new way of working together to change climate change @WWF @manupulgarvidal https://t.co/9…,772176 +RT @Mr_S_Clean: Remember when climate change was called global warming but they had to change it because we're going through a cooling cycl…,227248 +y'all really voting for a man that doesn't believe in climate change,319106 +RT @ClimateCentral: Here's where people don’t believe in global warming https://t.co/LnCz4SU2BX via @PacificStand https://t.co/oD7uksAAOa,128668 +RT @indianz: Tribes go it alone on climate change as Trump team shifts priorities https://t.co/cJJRDo7USC https://t.co/UpSBMPIk8o,731220 +"Through #climate change denial, we're ceding global #leadership to #China. https://t.co/D6BHK8D7Ue https://t.co/sJ9QhRy0Sn",311826 +RT @RogueNASA: Science deniers are dangerous. The impact of climate change is real. There are consequences for infrastructure and human lif…,808440 +"RT @ImaYuriPhan: If we painted the roof of every building in the world white, would we reduce the rate of global warming?",615105 +RT @Nix_km: WTF is wrong w/ Jerry Brown & the California Legislature? MORE taxes & HIGHER gas prices for FAKE 'global warming'.…,723926 +A new book ranks the top 100 solutions to climate change. The results are surprising. https://t.co/enWeOTohV6 via @voxdotcom,582734 +RT @altNOAA: Trump's other wall - a seawall around his golf course he says to protect against effects of climate change! https://t.co/WnTnc…,520223 +"RT @nycjim: In Florida, Trump pledges to stop sending money to the United Nations aimed at fighting climate change. https://t.co/G7kNkbrNM8",858352 +"Ocean goes from Jaws to jellyfish as climate change progresses, says @thetimes https://t.co/FD9hQZdiYS",606234 +Thank goodness for global warming because without it we would still be in the Cold War,276096 +RT @Wahlid: If global warming is real then why are my nipples so hard��,254986 +"RT @RealKyleMorris: If you think that climate change is a greater threat than radical terrorism in this world, you're part of the problem.…",381775 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,592526 +RT @antoniodelotero: good morning to everyone except climate change deniers,230347 +@MissBills2You damn global warming is serious shit.,61228 +"if trump wont support climate change, we will be having summer christmas next year",819339 +RT @SwannyQLD: Turnbull’s backbench lining up with Abbott on sinking the Paris climate change agreement #auspol #qt,995982 +"This is not global warming, an invasion etc.. got 3 hurricanes in the golf now this? This is the rapture, God is an… https://t.co/veIb2ZHOwS",727863 +"US federal department is censoring use of term 'climate change', emails reveal https://t.co/JOPStYc6VN",186751 +That $52-billion road bill just made California's next climate change move a heavy lift,964719 +Stand up to climate change deniers with the League of Conservation Voters. https://t.co/2mmHHtqpqS #PositiveAction,125624 +#eco #environment #tfb Selenium deficiency promoted by climate change https://t.co/Df7fPHXCA3,344973 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,949789 +RT @guardianeco: Tony Abbott says 'moral panic' about climate change is 'over the top' https://t.co/f7MiLOiQA2,599330 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,265518 +"RT @kellyblaus: Damnnnnn.....is it hot in here, or are Conservatives just blatantly denying proven scientific facts that global warming exi…",298147 +#weather Climate change: Fresh doubt over global warming ‘pause’ – BBC News https://t.co/H5GAZVlAp2 #forecast,226325 +"Make that: climate change-denying, misogynist, petty, corrupt, hateful and doddering-old-fool MODERN DAY PRESIDENTI… https://t.co/8zXHdOuCqe",239874 +RT @comingupcharlie: I can guarantee people on the Buller coast wake up and think about climate change https://t.co/rTb3enBZku https://t.co…,301650 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,157290 +"RT @1followernodad: ok a climate change denier heading the EPA is AWFUL, but what's that shade of lip stain my dude https://t.co/w8BKE4wZ3s",345248 +https://t.co/8sLwOkUSZs 'intended to prevent natural gas being wasted & to cut methane emissions contributing to climate change.',137668 +@Reuters Good they are the ones that have created this so call climate change & need to clean up their dirty air. Funny Fake Science,387140 +Ryanair's O'Leary refuses to accept global warming is a reality - Irish Independent https://t.co/MtXMdzgsur… https://t.co/awLliPwrOM,393316 +How is the global warming working out https://t.co/r9TStvcg62,940665 +RT @CassRMorris: @altNOAA This is Ptolemy. He's super concerned about how climate change affects wildlife. https://t.co/068wrR4gUi,206952 +@gaylec_ global warming man,541428 +"so, if CO2 is not 'a primary contributor to the global warming that we see' TELL US WHAT IS PRUITT!! https://t.co/Wq0gTHCa7y via @PolitiFact",886796 +RT @Greenpeace: The physical reality of global warming doesn’t bend to denial or “alternative facts.” https://t.co/lzFluNj39D https://t.co/…,546374 +"RT @LineDams: @ifmsa delegation to #UNFCCC #SB46 highlighting health co-benefits of tackling climate change; 2 for 1 deal, save e…",922849 +@neiltyson global warming or global hysteria?,857364 +RT @nytimesbusiness: If we're going to survive climate change we need better ideas a whole lot faster. https://t.co/0f7cU920CU,528773 +RT @rulajebreal: China reprimands Trump: There is an international responsibility to act over climate change. https://t.co/DGF3PEQxPb,348027 +"#news On climate change, it’s Trump against the world https://t.co/Xi3BS0ddVa",534413 +One can only hope that the little we are doing to prevent climate change isn't decimated tomorrow. https://t.co/ZdfKn3ttLR,447525 +"Can we please get #SallyYates to stump for climate change, women's reproductive rights and affordable single-payer healthcare?",607037 +RT @guardianeco: Paris climate change agreement enters into force https://t.co/JJTou0jtLj,136714 +New Maine anti-discrimination bill would protect… climate change skeptics https://t.co/6z86KY0UXG #pjnet #tcot #ccot https://t.co/ugANjdyKE7,698954 +"so excited for the fall... the climate change ��, the leaves ��, Halloween �� and Thanksgiving��.... IM JUST READY FOR THE FALL ☺️!",496231 +RT @MyFavsTrash: sad to see what climate change has done to the Grand Canyon �� https://t.co/rmdzq4cu6b,112559 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,746719 +RT @pzmyers: Another sign of doom: the climate change denial of Rex Tillerson https://t.co/n0SQWXfQhO,56423 +@StateDept @JohnKerry President Trump will expose your lies and agenda to bilk the people with fake climate change! You will be caught!!!,111610 +RT @ajplus: China is emerging as an unexpected leader in fighting climate change. https://t.co/3mNFCBCZnR,59106 +RT @ruthsatchfield: Watch Tucker Carlson lose it after Bill Nye takes him to school on climate change https://t.co/8SNrZIoqob,324423 +"RT @WalshFreedom: They push gun control, but glorify guns in their movies. + +They cry about climate change & fly on their private jets. + +#Ho…",903495 +The @PentlandCentre & others are calling for a globally-funded scientific team to help tackle climate change… https://t.co/yuZVpEcABn,522578 +RT @PolitiFact: Is it true that Ron Johnson doesn't believe people contribute to climate change? Mostly. https://t.co/dfsqhlmm5v,330418 +"@washingtonpost But, climate change is a 'liberal hoax.'",170036 +"RT @Greenpeace: 100 nations have agreed to take actions to prevent disastrous climate change. +There is no turning back.…",811734 +Kerry tells climate conference that the US will fight global warming — with Trump or without - Los Angeles Times https://t.co/eEsMlyra4F #…,336133 +RT @SensesFail: The nom to run the EPA doesn't believe in climate change. That is an absolutely ridiculous situation.,61446 +RT @climatehawk1: It's time for investment asset managers to step up on #climate change https://t.co/S20yoKx2rT #ActOnClimate #divest https…,286684 +RT @thehill: American Meteorological Society comes out against EPA head on climate change https://t.co/rOd39Kh37F https://t.co/ONWV5Y5xKk,86718 +RT @BeingFarhad: A “deadly duo” — invasive species and climate change https://t.co/xZpVPtYb2P https://t.co/EHA8zFA7kO #ClimateChange #tfb #…,378434 +RT @guardianeco: Five ways to take action on climate change https://t.co/oPAdYN1daO,95056 +RT @bitchrunmyfade_: @bobsadget Black women have been on here blaming black men for global warming at one point and y'all think them bei…,157217 +RT @docj76tw: Our military has been saying for years that climate change is a national security issue. Here's how: https://t.co/rPjIyevOYG,678843 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",131307 +RT @motherboard: Fiji's prime minister pleads with Trump: 'save us' from climate change: https://t.co/6GGy9FnOn6 https://t.co/jbPZ4zeG7N,531053 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",947694 +"RT @peta: The honeybee population has been nearly decimated from disease, pesticides, and climate change. Protect them by say… ",759959 +RT @epocalibera: #Greece #earthhour2017 Acropolis turned off its lights to raise awareness on climate change #Athens…,976235 +"Retweeted Christopher N. Fox (@ChristopherNFox): + +Exxon ordered to turn over documents in #climate change probe,... https://t.co/kh9eOClj4Y",772212 +Republican proposal for a $40/ton tax on carbon emissions to fend off global climate change could be a non-starter… https://t.co/d0Qci8NwY2,869188 +National Geographic’s climate change documentary with Leonardo DiCaprio is now on YouTube https://t.co/S8IbXczGgt via #thenextweb,7256 +5 climate change challenges India needs to wake up to https://t.co/k4YMowjchc,910026 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,970748 +"Dituduh Trump membuat hoax global warming, China berang | https://t.co/pePDfGjZaZ http:",960297 +@FrankReinthaler @ScottAdamsSays most skeptics r not 'denying' climate change. They just don't want to throw 90 billion to UN to 'fix it'!,487259 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,2648 +Oh dear... EPA boss says carbon dioxide not primary cause of climate change | New Scientist https://t.co/TY9OUn14ur,93493 +"RT @RussHansen51: By exposing the global warming hoax as the scam that it is, #Trump has saved American taxpayers $4.7 Billion Per Yr https…",320569 +"RT @undimas69: If we are not killed by climate change,#ClimateChange #entrepreneur_86 #MondayMotivation #MakeYourOwnLane #defstar5…",435902 +My major is straight up about climate change. We won't get funding???,24812 +"RT @tha_rami: When climate change starts having disastrous effect, I say we jail every person in government voting against climate exactly…",709950 +RT Climate Reality: We *should* rely on good science — and 97% of climate scientists agree climate change is rea...… https://t.co/yuznMiVOLW,191870 +"RT @UNEP: Scale of migration in Africa expected to rise due to accelerated climate change. @Kjulybiao, Head of our Africa Off…",544288 +RT @GIRLposts: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus o…,599634 +Data on climate change progress is disappearing from the US State Department website https://t.co/3pGe9xVlcx https://t.co/M2trVXmzHT,948396 +not necessarily global warming- it's always coldest in the morning and warmest in the afternoon https://t.co/SLEXZhN3j5,628855 +RT @ClimateCentral: February’s record warmth was brought to you by climate change https://t.co/mJLXdJs0jk https://t.co/WldhSAxjHl,219705 +RT @Reuters: Trump team memo on climate change alarms Energy Department staff https://t.co/iOVFu9i8s4,76369 +"RT @peytonmarieb: People of 2017: +*dont believe in climate change* +*believes in the Kardashian curse*",209707 +RT @davidicke: One of key proponents of climate change 'science' now says eating weed killer is safe for health & good for planet…,529193 +"So sad must do more 4 global warming, save polar bear home 😃 https://t.co/pBAn5acKU6",488505 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,649995 +#Endangered #penguins hunting for fish in wrong place after #climate change creates '#ecological trap' #nature https://t.co/pKE5Md9ZFT,328227 +#AdoftheDay: Al Gore's stirring new climate change #ad calls on world leaders. https://t.co/QmmxMOcBop https://t.co/c0ptYPFEPK,734220 +RT @raywolf3rd: Watching Soylent Green in light of climate change today certainly lends a different perspective than when it was first rele…,569724 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,617157 +"For 12 years, plants bought us extra time on climate change - The Verge https://t.co/GHBevys4ka",835618 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,497694 +RT @redsteeze: Sam Power spent her time at UN lecturing about dangers of Israel & climate change. But she totally cares about Assad now @Sa…,6641 +"South, southeast face Europe's most adverse climate change impact: agency https://t.co/YmPJ4sy5Sp",791125 +"RT @greenparty_ie: Tackling climate change requires the power of connection & collaboration rather than the exploitation of fear, divi…",479666 +@DrummPhotos @LjHaupt @datrumpnation1 I would exactly call that a ringing endorsement for climate change by the military.From your article:,232716 +Using microbes to fight climate change:,786460 +"The Weather Channel shuts down Breitbart: Yes, climate change is real https://t.co/bJepbLLCuU https://t.co/zTt8nJaHVH",492966 +"RT @ThtGuyMichael: is this real life? trumps 100 day plan intends to cut BILLIONS of dollars towards climate change, and to start the…",885363 +Lol it literally rains on trumps parade the day he is inaugurated as his first act of his presidency is to cancel the climate change act.,346906 +RT @JudicialWatch: JW suspects fraud ‘science’ behind the Obama EPA - a scheme to end coal under the guise of fighting global warming.…,295934 +RT @DineshDSouza: I'm trying to think what possible fact would disprove global warming and I believe I have the answer--when the research f…,650486 +RT @GlobalGoalsUN: The #ParisAgreement is just the start. What else is @UN doing to limit climate change? Check it out:…,958263 +"RT @RailMinIndia: Students learn about climate change on last day of Science Express. +https://t.co/CALBmgwlLs https://t.co/oTjIM7dEL4",939823 +@CIFOR @Hijaukudotcom lets go green stop global warming,69802 +"RT @Obscureobjet: @Avaaz Its as if climate change will begin with Trump, of whom it is said he ll destroy the planet in less than a month.…",264749 +.@AGScottPruitt I know global warming isn't real bc my driveway is covered in snow #checkmate but can u come shovel it for me,744004 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,903111 +RT @NPRinskeep: Wow. China points out that Ronald Reagan and GHW Bush supported international climate change talks https://t.co/pWsmSvx87J,464048 +How can people be so ignorant when it comes to climate change #ClimateCounts @PUANConference @PakUSAlumni #COP22,353129 +"https://t.co/HUv2vGQd3d-top stories Trump's EPA: Cuts, infighting and no talk of climate change https://t.co/pV9NBHsAeY",781817 +RT @AnonyPress: 2016 was the year that the United States elected a man who believes that global warming is a Chinese conspiracy,105244 +Antarctica: Revelation about sea creature could shed light on climate change https://t.co/kynvKIBqyO https://t.co/znnKXcPHKo,899313 +global warming (名)地球温暖化,421940 +"The story of man-made #global warming is a story of science fiction put forth to advance a primitive, collectivist political narrative.",651955 +RT @thehill: Trump admin tells EPA to take down its climate change webpage: report https://t.co/aBtTwWmD7K https://t.co/6CFN8Ga0dD,966826 +@jordanashley137 Everyone seems to be quick to forget that the marginalized face the harshest repercussions of climate change,277192 +RT @DoYouScience: Stopping global warming is the only way to keep the coral reefs from dying https://t.co/TTNt1rERMr,557101 +"RT @RGasperWRI: Thanks, Obama...for making the U.S. more prepared to face the impacts of climate change https://t.co/xVWUfyT63C",16077 +RT @TheDemocrats: Why are scientists marching tomorrow? Because climate change is real: https://t.co/wf7UdctuyQ,788753 +Did you miss this great collection of global stories on solutions FOR climate change? See https://t.co/Q4NrfPK9KU https://t.co/3guCL8dsgJ,636671 +"RT @SFWater: View the deterioration of the #SFSeawall & learn why seismic activity, rising seas & climate change threaten it…",209113 +RT @YEARSofLIVING: How to make a profit from defeating climate change by @MikeBloomberg and Mark Carney https://t.co/EqJsoHbU49 via @guard…,17873 +"‘Science Express’ train flags off to create climate change awareness in India. + https://t.co/33az37KLWK by #usha_sen via @c0nvey",263873 +businessinsider: American schools teach climate change differently in every state — except these 19 … https://t.co/vZOxFDgShT,818047 +RT @voxdotcom: Almost 90% of Americans don’t know there’s scientific consensus on global warming https://t.co/oSqEWnJhgK,274518 +@knightlypixies The stress about climate change has really been getting to me and i dont want to loose hope but im so scared,137245 +Scientists call for more precision in global warming predictions https://t.co/pfjHHSKl1v via @Reuters,210901 +"a question asked by my 4 year old pamangkin while finishing my melted ice cream: + +'Why do you have global warming in your ice cream?'",452172 +Concept: blow up the sun to fix global warming,814366 +RT @guardian: Antarctic study examines impact of aerosols on climate change https://t.co/aGba1esRpm,212158 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,90901 +"RT @UNEP: The longer we wait to take action on climate change, the more difficult and expensive it will get:…",143454 +planet succumbs to global climate change from greenhouse gas emissions? The answer is no so enjoying your life here on Earth while your,761556 +RT @ChristopherNFox: U.S. just signed a document calling #climate change a “serious threat” to the Arctic & noting the need for action http…,505773 +"I know climate change is really bad for the world and all, but if it keeps the weather feeling like this, I might be okay with it.",601972 +"Kashmir, climate change, and nuclear war https://t.co/IlfG7FyGn3",74231 +RT @Independent: California says it's 'ready to fight' Donald Trump over climate change https://t.co/9NkhOwoaHM,815985 +RT @brontyman: America’s loss is China’s gain: Trump’s stance on climate change is a gift to the Chinese - Salon https://t.co/ImEhme4Syn,481732 +"@goodthngs I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",627871 +Because of climate change is just the country.,594469 +"RT @Bobbyh214: UN poll shows most people don’t care about fighting global warming https://t.co/TF6Fr5XNVU via @CFACT So many lies, turn peo…",350756 +RT @GlobalGoalsUN: Fantastic sculptures highlighting crops threatened by climate change & environmental degradation. #COP13 https://t.co/pA…,269893 +"RT @GardnerSalad: Also, as an American, i now have to commit to the belief that climate change is a hoax.",6511 +"RT @EnvDefenseFund: The White House calls climate change research a “waste.” Actually, it’s required by law. https://t.co/DTJAZghYlf",436306 +"RT @SafetyPinDaily: Scott Pruitt, head of EPA, isn't so sure carbon dioxide drives climate change | By @claire_lampen +https://t.co/4lhpEO…",780075 +RT @NormOrnstein: NYT session yesterday w/Trump left Tom Friedman hopeful about Trump and climate change. Today- announced killing NASA cli…,143536 +"@AmandaJ718 No climate change isn't real! Scientists don't know what the heck they are talking about!* + +*😉 I don't… https://t.co/2zZG4ZSwAk",635339 +RT @SenSanders: The Dakota Access Pipeline would be a huge blow to our fight against climate change. #NoDAPL https://t.co/47m6yUu4m5,904919 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/SBoP2Ukqw6,775083 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,201705 +"RT @GeorgeTakei: A whale's entered the Hudson River. On suggestions that it's protesting climate change policy, Trump said, 'She's overweig…",71322 +RT @ProfTerryHughes: HERE is the confronting science of global warming. WHERE is Australia's science-based policy to save…,718755 +RT @sciam: Rain from thunderstorms is rising due to climate change https://t.co/Gr7J1GCDuO https://t.co/D2jYJQfKb6,355397 +"Endangered, with climate change to blame - High Country News https://t.co/3wdry1uIyV",7480 +.@p_hannam: The Great Barrier Reef is the canary in the climate change coal mine: https://t.co/dCP2QqUwMz https://t.co/I1PUYXoAcs,676361 +"RT @TheAtlantic: Welcome to Pleistocene Park, where Russian scientists want to fight climate change with woolly mammoths… ",27930 +"RT @newley: 'By a factor of three, the key threat to global security identified was climate change' https://t.co/o0nIFqpQHZ",689435 +RT @nytimesbusiness: Hundreds of American companies are pleading with Donald Trump not to abandon gains made to mitigate climate change.…,6365 +RT @WhennBoys: Only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scientists,117872 +@LetsBCompassion @jennythefriend @JordanSchroll Burning fossil fuels is the number 1 cause of climate change. Not a… https://t.co/nVkiyGWdWh,303319 +"RT @trutherbotsilve: #Climategate, the sequel - How we are STILL being tricked with flawed data on global warming: https://t.co/GQoYmyLHCx",758069 +Great Barrier Reef just the tip of the climate change iceberg https://t.co/T5lZNHIpAc,519052 +"RT @TheAtlantic: A 765,000-person study argues that climate change is already costing Americans sleep, @yayitsrob reports.…",173245 +@Independent @violencehurts While the Australian government remains opposed to renewables. Continuing to burn global warming coal.,906749 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,9631 +"dumbass racist, sexist, misogynist, lying and unqualified corn muffin who thinks climate change is a hoax.",186664 +RT @JayBaumgarten: Glad to see #DeadliestCatch teaching some of its viewers global warming is real with a reduction of available crab this…,818801 +RT @stephenro88: @Trump__Girl @realDonaldTrump dont tell that to Bernie Sanders who tweeted that climate change is our biggest worry right…,610128 +"RT @ksmainstream: .@KCStarOpinion: New EPA administrator & acknowledged climate change denier hired to protect KS,MO,IA,NE environment http…",200984 +"Murray Energy CEO claims global warming is a hoax, says 4000 scientists tell him so - CNBC https://t.co/S5uHkUlz84",946451 +RT @pwthornton: Imagine getting a perfect score on the SATs and then voting for a guy who claimed global warming was a Chinese hoax. Unlike…,588728 +"RT @HuijsmansTim: RT +We're already facing a global warming #extinction. https://t.co/xpF974A4yb",132012 +@KatTimpf The irony of the 'not so tolerant' and climate change believers to use 'bottled water' in an assault; the… https://t.co/ccxbgtIDEX,746803 +RT @alessandracatsi: Conservative groups shrug off link between tropical storm Harvey and climate change https://t.co/3aHgN8Bg0U,684358 +@alexinthedryer global warming is a concept created by and for the Chinese government,180750 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,997932 +The US is relocating an entire town because of climate change. And this is just the beginning https://t.co/rRa5kZJQ5r via @qz,291282 +Can combating climate change coexist with increased US oil production? https://t.co/gkEByfpjw8 https://t.co/kNRFydvXsi,865532 +"RT @Stinkybarbie: there are no facts in the global warming agenda, rebrand it all you want https://t.co/jNjy0nFsTE",937154 +RT @washingtonpost: Members of Congress met to discuss the costs of climate change. They ended up debating its existence. https://t.co/u1lo…,272540 +@zakomano him and his batch of extremists that don't believe in climate change lmao I love the guy buy seriously? 😴😴,28014 +RT @ClimateCentral: “This is the next stage in climate change liability litigation' https://t.co/jGyFKsMc1U,54105 +RT @agbiotech: #Plant scientists have developed #biotech maize capable of mitigating against the effects of climate change:…,677318 +RT @austincarlile: Maybe all of you that don't think climate change is real will disagree with this one too: https://t.co/qYAyKysi84,142298 +Isn't it fun to think that we all boutta die because of global warming and our president still thinks it's 'fake ne… https://t.co/HVrOsAYlu9,546152 +@PhillipCoorey Too little too late. Just let them keep their heads in the creeping sands of climate change. Pathetic!!!!,131990 +Nordic project will solve a riddle of dramatic climate change https://t.co/G03vTJ1keR @paul_v127 @ruth_mottram… https://t.co/h7TKvebvnD,930247 +The only thing that will really change global warming in the long run... #BjornLomborg #quotes https://t.co/VbG8y9hXjS,405814 +"Trump faces G7 squeeze on climate change, trade at Sicily summit https://t.co/TUve0qI4QF #worldNews https://t.co/DXVS9RwZif",849259 +RT @buddy_dek: Anti-Science: EPA chief says carbon isn’t a ‘primary contributor’ to climate change. Science says he’s wrong https://t.co/zY…,970178 +RT @EugeneCho: The reality of climate change impacts everyone but the truth is that poor communities suffer most...perpetuating the injusti…,775969 +The role food & agriculture plays has been almost entirely absent from written commitments on climate change. https://t.co/Mikcfqpgcp,251906 +"Trump is deleting climate change, one site at a time https://t.co/s5mAb0GeKQ #green #engineering",209894 +@CBSNews Also in today's news: Trump declares trees responsible for global warming.,82633 +RT @allegory_io: By 2020 1/2 of global #smartcity programs will include #sustainability & #climate change as KPIs - @btratzryan…,216329 +RT @ericgeller: It's happening: The White House has ordered the EPA to delete its climate change page. https://t.co/uZ4TSegfYi https://t.co…,147245 +RT @livelikelois: Are we still denying climate change??? Bc it's kinda warm outside.,375068 +"I'm all for trump, but this dumbass better start believing in climate change 😂",432029 +"The picture on climate change is not quite as bleak as some claim, says @_richardblack https://t.co/ReciIWNfzS via… https://t.co/ZbD6gzZcrS",681008 +RT @HouseScience: .@BjornLomborg on facts behind Paris deal:“the agreement will cost a fortune but do little 2 reduce global warming”…,985356 +RT @extinctsymbol: Almost 90% of Americans don’t know there’s scientific consensus on global warming: https://t.co/6jkPpRuyh6,83642 +"RT @CBSNews: Donald Trump says 'nobody really knows' about climate change, contradicting settled science on the issue… ",924379 +RT @RobHudsonPhoto: If we all light candles for hope it's going to contribute to climate change. Whereas cursing the darkness is carbon neu…,474657 +"RT @tan123: Of course climate change exists. Also, CO2 is NOT the climate control knob https://t.co/O4C111XxP4",966145 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,943890 +"1/ Over on my work twitter (science org), so very dismayed to see that lots of nastiest climate change denier trolls are military personnel.",226367 +"RT @HI_GreenGrowth: mayors, cities offer 'best opportunity for dealing with climate change.' #honolulu part of @100ResCities to address…",60192 +"RT @voxdotcom: When we deal with food the right way, we can simultaneously feed the hungry and fight global warming, from…",893971 +"ReelectBernie: SenWarren: And the same day Tillerson dodged climate change q’s, ExxonMobil must turn over climate … https://t.co/rCaJA6OiCN",418543 +RT @greenpeaceusa: Did you miss the premier of @LeoDiCaprio's climate change documentary #BeforeTheFlood yesterday? Catch up here >> https:…,13358 +@yashar @jackshafer FFS - denying climate change and promoting mercenaries are NOT 'opinions' they're cankers on humanity,520619 +RT @hondadeal4vets: I will put an end to climate change,321598 +"RT @SenSanders: Will Scott Pruitt, a climate change denier who assisted the fossil fuel industry, combat climate change? Don't thin… ",741056 +RT @ClimateNexus: Trump meets with Princeton physicist who says global warming is good for us https://t.co/R0b9Wue4hl via @postgreen https:…,936461 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,143146 +Dont people buy Tesla cars to protect the planet in their own way from effects of global warming? Lets destroy the planet cos we hate Trump,535965 +RT @JoyAnnReid: ...and given that the federal government is likely about to cease action on climate change and weaken business regulations…,281202 +"@realDonaldTrump You're the fake news. Based on data? Scared to release tax returns, no travel ban on Saudi Arabia, & climate change data?",165837 +RT @nfergus: Now I get why so many Republicans deny climate change. Rising ocean levels will submerge the Clinton archipelago: https://t.co…,613580 +RT @CoryBooker: This is terrible – companies causing deforestation that damages our environment & contributes to climate change: https://t.…,446237 +RT @Obaid_Obi_: Individuals should volunteer to the couse of reducing climate change effects. #ClimateCounts #PUANConference @PakUSAlumni,897909 +RT @WIRED: What a Trump presidency means for the global fight against climate change: https://t.co/JhDmByNpNP,35072 +"RT @WakeUp__America: In the Arctic, polar bears face a grim scenario due to climate change. Rising temperatures have caused sea ice to m…",334267 +"https://t.co/S9Up1jDg5k + +No one is talking about increase in solar output contributing to climate change. +@bbc",150295 +RT @emorwee: This exchange between a senior White House official and a reporter on climate change is.... not great. https://t.co/3R6WLV1bKZ,414005 +"https://t.co/mV9UPenX1U +The government says it's a lie, fake news, no such thing as climate change. Here you go!",691449 +RT @intlspectator: UNITED STATES: Trump is consulting on how to withdraw the US from the Paris climate change deal,586333 +G20 members meet Fri to discuss climate change. T chose to meet with Putin at that time & skip hearing challenges t… https://t.co/lGfJd8TdYL,805955 +RT @GovPressOffice: ICYMI: @JerryBrownGov discusses #Under2Coalition action on climate change with @ScotGovFM Nicola Sturgeon today:…,994946 +"@FoxNews LOL, in all this time I thought it was global warming",535234 +"@shauntomson The meat and dairy industries contribute to 51% of global warming, & non plant based diets are the leading cause of disease.",990339 +RT @PremierBradWall: Carbon tax even worse idea after US election. Last thing Cda needs is tax harming economy w/o helping climate change h…,245539 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,142285 +"@politico hmm, maybe some will be made up for by not throwing it at climate change. 1.3tr/yr? #backinblack",471258 +Join the resistance. Follow @AltNatParkSer for LL your climate change and Nat'l Park services. https://t.co/4sXOgYKFfK,181421 +Trump can't deny climate change without a fight - Washington Post https://t.co/svjFLXSXJM,804056 +RT @japantimes: Trump team memo on climate change alarms Energy Department staff https://t.co/ujlN1Ohcuz,250453 +RT @DrJillStein: Military spending is 20X greater than the budget for energy + environment. But the Pentagon says climate change is a dire…,422794 +"RT @NotAltWorld: .@NASA has released a photographic series called 'Images of Change' despite President Trump denying climate change. +https:…",896160 +RT @Better_4_US: #Democrats #Liberals Next 'nothing burger' for losing the election? How about climate change affected the polling m…,493299 +We *should* rely on good science — and 97% of climate scientists agree climate change is real and man-made… https://t.co/FOY693W6uU #Clima…,579107 +RT @gillymac02: Whether you believe in climate change or not it's common fucking sense that we can't live without clean water and oxygen??,853420 +"RT @nytimes: Scott Pruitt, the head of the EPA, said that carbon dioxide was not a primary contributor to global warming https://t.co/j3DZW…",661565 +"RT @MimsyYamaguchi: @ScottWalker Affordable Care Act, legalization of same-sex marriage, Recovery Act, Paris Agreement on climate change, m…",373413 +RT techjunkiejh:RT FastCoExist: Most corporate climate change pledges aren't strict enough to stop climate change … https://t.co/yJOOQuMXyE,962094 +Groups sue EPA to protect wild salmon from climate change https://t.co/3Wb7dq5i8E https://t.co/Xn74fjUjqt,41812 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",504594 +@ABC @kathi728 damn climate change causing all the flowers to bloom.,507593 +RT @AJEnglish: Not all fur and waddles: This Penguin colony is at risk from climate change https://t.co/qZRyCS4WD4,210061 +RT @PiyushGoyal: India makes International Solar Alliance a reality. Solar-rich countries come together to fight climate change. https://t.…,287454 +@RealJamesWoods LOL! These are the same people that believe in global warming smh,536194 +RT @DCTFTW: @MrDash109 That's why the Hollywood elites & climate change millionaires are buying ocean front property. Give me a break. @Ro…,814693 +Press release: MEPs to participate in #COP22 climate change conference in Marrakesh: https://t.co/AjoCybpr3c @EP_Environment,400723 +"the sun is shining, global warming has stopped, I suddenly have straight A's, my skin is clea- https://t.co/O56WL793ix",397613 +RT @tyleroakley: if kathy griffin held up a globe on fire would barron think it's the real earth & donald then denounce global warming?? wo…,609991 +"RT @michelleisawolf: Congressman: god will take care of climate change. + +God: bitch I sent you scientists.",343360 +.@coachella's owner uses his money to support anti-LGBT causes and climate change denial https://t.co/bOfo1lDoYD via @UPROXX,519580 +"RT @sethstump17: Don't understand how human caused climate change can just be ignored like this, we should be taking more steps to help the…",631971 +"RT @WorldfNature: Economic inequality drives climate change, economist finds - ThinkProgress https://t.co/TjBDV0dvcy https://t.co/bR6zd0J4Sh",468411 +progressives absolutely LOVE science when it comes to global warming but absolutely cannot accept it in regards to gender differences,239916 +"RT @ashleycrem: If history repeats itself, Hillary will come out of hiding in about a year, with a beard and a movie about climate change.",937873 +Aung San Suu Kyi’s #climate change crisis: https://t.co/TVnwcOahmc My piece @SEA_GLOBE with @earthjournalism #Myanmar #1o5C #ParisAgreement,562422 +RT @MichaelGWhite: A new book ranks the top 100 solutions to climate change. via @azeem. https://t.co/htATI2bL1V via @voxdotcom,422498 +RT @CNNCreate: 'We should not leave anyone behind' @csultanoglu on future energy and climate change @EXPO2017Astana @UNDP…,88056 +RT @WIRED: Researchers were all set to study the effects of climate change in the arctic. Then climate change got in the way https://t.co/g…,370179 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,729780 +"After Obama, Trump may face childrens' lawsuit over global warming https://t.co/jOXdpBepEK https://t.co/9BAvb3J2ua",758644 +Interesting blog – the power of images to shape climate change perceptions @CarbonBrief @ClimateOutreach |… https://t.co/c2OGPDBIDC,965567 +Al Gore and others will hold climate change summit canceled by CDC https://t.co/bYxjJSWjDZ,327049 +"RT @DailyPsychologQ: From a survey of almost 30,000 scientists, 97% agree that climate change is caused by human activity.",973414 +"RT @UN: If properly managed, climate change action can lead to more and better jobs. @ILO info: https://t.co/o6Mgxasjkq…",109041 +RT @charliekirk11: Will it now be the policy of Disney to never fly on private jets since you are so scared of climate change? https://t.co…,457236 +From tiny phytoplankton to massive tuna: How climate change will affect energy flows in ocean ecosystems https://t.co/pgu9TnW4Tv,703005 +Bill Gates and other billionaires open climate change investment fund https://t.co/mpZJ9Lc3Mx,666461 +RT @SwannyQLD: Barking mad ideology in the coalition is the cause of our energy crisis because climate change deniers are running the Govt…,200379 +"RT @SadhguruJV: We think the biggest problem is global warming. No, it is population. +https://t.co/6Hdxw32ZDd +#WorldPopulationDay",800041 +RT @JustinTrudeau: Touching base with @EmmanuelMacron - we’re committed to addressing climate change & increasing trade to benefit peo…,645036 +RT @colincampbell: 'we need global warming!' https://t.co/bEgUYnMuDq,888342 +"RT @DerekCressman: Bay Area folks ain't cut out for heat. Get used to it, global warming is coming baby. https://t.co/Jk5DgKPWeq",308411 +Nato warns climate change is 'global security threat' as Donald Trump mulls Paris Agreement | The Independent https://t.co/nQmMMcWUIM,896890 +RT @dandangeegee_: climate change a guh kill we tpc,346042 +"RT @Unilever: Took #collective action on #GlobalGoals to end poverty, combat climate change, fight injustice & inequality #12ways… ",211349 +Record-breaking climate change takes us into ‘uncharted territory’. Stable popn can limit climate change victims… https://t.co/tRcemKQXkE,719119 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,599794 +"RT @NickKristof: Well, this will stop climate change! White House proposes steep budget cut to NOAA, leading climate science agency https:/…",710238 +Good thing global warming isn't real right everyone? https://t.co/HdBWFIYNmJ,654615 +What does a Trump presidency mean for climate change? #Tech #TechNews https://t.co/ZxBRZR22rj,744157 +RT @UN: Starts today in Marrakesh: @UNESCO conf. on indigenous knowledge & climate change https://t.co/obyaU13EWR…,68991 +"RT @SophiaBush: Censoring our national parks, and scientific facts about climate change, Drumpf? Putin would be proud. #1A https://t.co/We…",62494 +"RT @ClimateRealists: Jim Pfaff: 30,000 Scientists say catastrophic man-made global warming is a HOAX https://t.co/2oescIoENA https://t.co/J…",119981 +RT @larryelder: 'This is why they call it 'climate change'' https://t.co/P24C05hCxt,858023 +RT @HalsallPeter: We are the first generation to experience the damage of climate change and the last one that can stop it. @cathmckenna @e…,470649 +"RT @DaniRabaiotti: You may have missed this, but Defra sneaked the 5 year climate change report out on Jan 18th without announcing it https…",824428 +RT @SaleemulHuq: A long way to go on climate change adaptation https://t.co/IjqpayKX9l,499614 +"RT @laurenepowell: We have the tools, minds, & motivation to address climate change now. Honored to address the global community leadi…",382254 +"RT @COP22: Akinwumi Adesina, the @AfDB_Group supports climate finance to adapt to climate change",927245 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,63744 +RT @BBAnimals: please stop global warming.. https://t.co/S9db4KKKYg,175662 +RT @Adolfhibsta: Another warm day thanks to global warming https://t.co/JlqrEdxIZ1,808354 +Is there a link between climate change and diabetes? https://t.co/KJFw5TtHPt https://t.co/DNAyisYUVk,859015 +RT @JimVandeHei: Phrase 'climate change' scrubbed from NIH website https://t.co/9LZCeJRuXv,22385 +RT @TIME: Donald Trump's promise to reverse momentum on climate change hasn't stopped the Obama administration https://t.co/xk0JdHMtxe,245056 +"@UKLabour All governments (except 47) being too slow on climate change, please come out and show us you would ACT f… https://t.co/WyF4CfVUXU",237976 +"RT @Alex_Verbeek: �� ��‍�� ���� + +Talking to students on the importance of the #CircularEconomy and the impact of #climate change and…",884803 +RT @UN_News_Centre: #COP22: #UNSG Ban urges rapid increase of funding to address climate change. https://t.co/GzkhU6sl4C https://t.co/oqOw7…,107153 +RT @BigJoeBastardi: very very good point. If it misses everyone no one cares but if it slams someone it will be climate change point https:…,467496 +When Jimi Hendrix sang about climate change in 1967: https://t.co/NKpim6YEzX,935108 +"allkpop: Ryu Joon Yeol narrates EBS documentary about climate change +https://t.co/Sdk8eGfAMK https://t.co/tMM1ZyoHO2",835385 +RT @tveitdal: How to teach kids about climate change where most parents are skeptics https://t.co/DnJkZdUWII,345228 +RT @EmoLizzyMcguire: when florida drowns because of climate change https://t.co/zE7OHFIXqp,656751 +"@OchiDeedra I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",64369 +"RT @InxsyS: The real culprit behind climate change? +According to Rick Perry: 'The, um, uh, ocean waters and this environment that we live i…",822812 +"RT @cristiaaandiaz: Climate change and global warming is real +If our president won't do anything about it then it's up to us!!",893774 +"RT @AJEnglish: How to help those displaced by climate change? +https://t.co/aodvxtyRqb https://t.co/GIKa8theUD",300949 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/tE2DWywYJT,368266 +RT @issafrica: Top read | Land privatisation & climate change are costing rural Kenyans. https://t.co/eKvjwl7RKI https://t.co/Kd5rvbN3j4,762993 +RT @jankivelli: global warming is so real man.,364409 +RT @Koxinga8: Australia PM adviser says climate change is 'UN-led ruse to establish new world order' https://t.co/WWVR6fQPL7,165076 +Donald Trump cites global warming dangers in fight to build wall at his Ireland golf course https://t.co/3lXwRZ17UF via @YahooNews,845006 +We need a solid political cabinet in the White House who can stand up for climate change.,482039 +Why I actually like working in the insurance industry? B/c : No climate change skeptics ! https://t.co/BSaTIBjtqI https://t.co/acZ8YohfwX,934736 +"Daines on agriculture, climate change and Russia - NBC Montana https://t.co/NA5KViglHe",964388 +RT @deray: How climate change affects you based on which state you live in https://t.co/nh4HrLp8ix,57305 +Did you know that the use of human labor in farms conserves energy thus reducing global warming?… https://t.co/YNThEZ3lbV,955294 +It's not going to matter what bathroom ur trans grandson is going to be able to use bc they're going to drown to death due to global warming,64942 +RT @IBTimes: What do storms like #StellaBlizzard say about global warming? https://t.co/tMJrN9WRGx https://t.co/icBTU7qB6A,339722 +RT @alexberardo: Trump's plan to reverse all climate change laws is like ripping stitches out of an open wound so you can tie your shoe wit…,804326 +RT @JamesMartinSJ: Why climate change is a moral issue...and a religious one. https://t.co/Ca5ZtwIoJ4,196186 +RT @catfuI: The new president of america is going on trial for raping a 13 year old girl and doesn't believe in climate change,945210 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,910005 +"Funding for climate change research-->Funding for space exploration. + +So the plan is just to find a whole new plane… https://t.co/plD3bWOlqH",256047 +RT @MailOnline: Is global warming going to cancel the ski season? https://t.co/tasd3FxQcV,684487 +RT @WorkaholicBlake: if global warming isn't real then explain this https://t.co/O2czkMthBe,596984 +"RT @NasMaraj: Scientists: *global warming will make natural disasters worse* + +Global Warming *makes them worse* + +Y'all: GOD IS SENDING US A…",100902 +RT @WorldfNature: Green Party claims climate change 'bigger than Brexit' - BBC News https://t.co/rwbKKxF0Y3 https://t.co/hbixwF2DAi,555448 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,972459 +RT @lomehli: wow i can't believe climate change isn't real and obama is a muslim now,925684 +RT @blkahn: Reminder: it's not just about one country. We're all in this climate change thing together https://t.co/nsqFbnxz3X https://t.co…,331377 +"RT @justcatchmedemi: GlblCtzn: 'We must stand with every child who is uprooted by war, violence and poverty and climate change.'@ddlovato h…",326789 +RT @lifeaseva: Taking shorter showers and buying reusable bottles won't stop global warming. It's the main result of our agriculture demand…,649869 +RT @dimitrilascaris: Australian coastline glows in the dark in sinister sign of climate change: https://t.co/ParSUHiqfC #climatechange #kee…,447927 +@LKrauss1 Any chance the world's most brilliant psychologists can incept the reality of climate change into the head of Donald Trump?,162757 +@simplysune14 @RC1023FM some leader don't believe in climate change in especially when it don't change there pocket,121988 +Donald Trump likely to pull out of Paris deal: US states pledge to continue efforts to combat climate change -…… https://t.co/FkI7wbmHwM,876900 +"Letter: Working on the puzzle of climate change: Salt Lake Tribune: In early June, more than 1,000… https://t.co/ws5Z4ErRDZ #ClimateChange",428436 +RT @_IamLynn_: Dryspell ikipitisha 3months ni climate change.,980099 +RT @NYTScience: Republicans used to say 'I'm not a scientist' when confronted with climate change. Here's what they say in 2017: https://t.…,469400 +RT @MotherJones: Republicans beg their party to finally do something about global warming https://t.co/IxlSfrC1iO https://t.co/9yX20HSkjK,69303 +"RT @BarackObama: The Paris Climate Agreement is a big deal in the fight against climate change—and now, a big step closer to reality. https…",901450 +RT @FactTank: 49% of Trump supporters care not too much or not at all about climate change: https://t.co/HPmL385tJh https://t.co/eOaAdvWdAN,469091 +@TuckerCarlson @FoxNews Great debate with that guy about climate change. You won.,107745 +"RT @AHlMSA: Screaming 'adopt don't shop' & 'global warming' don't mean a damn thing if you fund animal ag. Own up, at least TRY not eating…",759608 +RT @rriproarin: @thisiswatt @PostMalone if you need proof global warming is caused by mankind you just have to listen to this heat! https:…,105104 +RT @kylegriffin1: Pruitt's office was so swamped w/ angry calls after he questioned global warming science the number was disconnected http…,937094 +RT @SenatorHassan: We need an Energy Sec. who will fight climate change & build a cleaner energy future. That's why I voted NO on Rick…,505536 +The Paris climate change agreements are a great place to work from as we move towards true sustainability. https://t.co/yUrHXEfDFc,166852 +RT @nytimes: Read the draft of the climate change report https://t.co/PbmYwShMTy,955751 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",297133 +RT @powershiftnet: Millennials to @NYGovCuomo: are you brave enough to stand up to Trump on climate change & #SaveOurFuture?…,840457 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",246498 +RT @TravelLeisure: #GameofThrones' @NikolajCW and @GoogleMaps are showing climate change in Greenland https://t.co/62fD8d22Ic https://t.co/…,453796 +RT @ABCPolitics: UN Secretary General Ban Ki-moon says he believes Donald Trump will make a 'wise decision' on climate change…,752359 +@southern_raynes and CA political 'climate change' is happening... storm brewing (will always ❤️ this strong man in DC����,680137 +"RT @NYMag: The realities of public health, much like those of climate change, bedevil American conservatism https://t.co/BEXpkqmWVw",651615 +"Donald Trump set to visit France for Bastille Day, Macron will bring up climate change, trade issues https://t.co/8gXWQ6ILFX",34294 +[WATCH] Cycling naked for climate change - Eyewitness News https://t.co/dmhqcdX7lR https://t.co/358kgSihtq,566577 +UN meet calls for combating climate change on urgent priority https://t.co/hkImbvxy2b,546774 +RT @thehill: Trump admin tells EPA to take down its climate change webpage: report https://t.co/DE2Ps0Gzad https://t.co/04VmHUj4KO,672130 +RT @Drsinboy: Preparing our health professionals to combat climate change https://t.co/j9RAZ0a8m9 via @CroakeyNews,180963 +"RT @internetsmom: the floor is global warming + +u.s. government: +https://t.co/91cUZeyCcP",894127 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,818501 +"Pixar, now more than ever we need you to make a movie that convinces the normies about climate change",57049 +RT @evetroeh: Prediction: climate change will lead to the revival of the indoor shopping mall.,480533 +RT @elnathan_john: Everything from climate change to desertification from rustling to porous borders. From politicians to criminals. The ca…,249370 +"Begnotea enumerated indications of climate change. In the PH, he mentioned the increased arrivals of typhoons as one example.#SealSUMMIT2016",175803 +Due to climate change no doubt... like the climate of 'why should I give you something you sell me back for $200 a… https://t.co/M0epUjQJ0u,390055 +Donald Trump may face young people suing over global warming - The Sydney Morning Herald https://t.co/1BH5S2Mbqj,797992 +RT @AJEnglish: Will a Trump presidency set back the fight against climate change? Share with us your thoughts below #COP22,720945 +RT @ClimateDesk: There's one last thing Obama can do to fight global warming...and Trump wouldn't be able to stop it https://t.co/Smeql79AR7,538702 +"@swirlOsquirrel Smoke another joint, grab a tea, and get on with how Comey lost the election, our global warming. Ur entertaining.",526631 +China is taking global warming seriously. Shame about the US. https://t.co/BA9ShybgO2,233659 +RT @ClimateGuardia: 3 signs that the world is already fighting back against climate change - The World Economic Forum #auspol #springst ht…,288602 +"RT @activist360: IN 2017, IT HAS COME TO THIS: Scott Pruitt, Trump's top climate official says humans are not causing global warming https:…",810965 +#WorldOceansDay is a great day to learn about how climate change is affecting sea levels. ������ https://t.co/TbASIa64di,111100 +John Kerry says he'll continue with global warming efforts https://t.co/I6VAiQMjXK #science,528758 +#Brazil Rio's famous beaches take battering as scientists issue climate change warning https://t.co/5DLDxQMU3C https://t.co/L64KCKnxTy,564829 +Well done @elonmusk Enlightened America will rise to the climate change challenge despite @POTUS… https://t.co/3qyeJgqbus,538223 +"agriculture is bad we should stop agriculture because it causes climate change' + +me: go starve",39918 +"RT @RealAdamRose: climate change + +climate change + +climate change + +there's no politics if there's no planet. + +climate change + +climate change…",128542 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,110687 +RT @ClimateReality: A1. We’re turning off our lights and starting conversations about climate change—and the power we have to solve it #Mak…,198596 +@jbendery Isn't the news here that liberalism is raising hysterics who think climate change is going to take forty years off their lives?,64585 +RT @realtimhess: Still can't believe that Donald Trump is a President who rejects basic science. 97% of scientists agree climate change is…,586728 +RT @DavidCornDC: So @Scaramucci is against the wall and for climate change action & gun safety measures. So why does he 'love' Trum…,223741 +RT @M_Steinbuch: #unbelievable: EPA chief Scott Pruitt says carbon dioxide is not a primary contributor to global warming https://t.co/Z6w5…,753397 +"@Linda0628 I'm glad to hear it! But it was flooded when that person tweeted, yes? I was RTing in the context of my climate change tweet.",290174 +RT @ajplus: Diplomats at the UN global warming summit are very concerned about Trump's stance on climate change. https://t.co/wZ6VbM60K8,542214 +Trump abolishes climate change in first moments of regime https://t.co/VeQrEkCskG,372837 +"RT @ErikSolheim: At the #R20AWS, talking with @Schwarzenegger about local action to fight climate change, and health and economic ga…",288012 +#IfinditFascinating that people still question climate change? Do you even science brah?,94780 +RT @sciam: Fifty-nine percent of voters want the U.S. to do more to address global warming. https://t.co/IkgORHI1bC https://t.co/TXkzRaMfkW,964126 +RT @lhfang: Jaime helped coal firms defeat Obama's climate change legislation. Worked for banks. No qs about his lobby career https://t.co/…,869801 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,366133 +RT @guardian: Want to fight climate change? Have fewer children https://t.co/cfEg31Wgt0,702070 +The case for collaborating on climate change https://t.co/MGYEn61fGH,407850 +"BlAme it on global warming!, Snow falls in SAHARA DESERT for only second time in living memory https://t.co/ImhhvVvMnM",681790 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,528548 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,830318 +RT @bogglesnatch: Independent study shows NOAA was right -- there was no global warming 'pause'. https://t.co/Onx0WqxxPY,720943 +EPA head Scott Pruitt may have broken integrity rules by denying global warming https://t.co/gO0OZ9H1HS,355391 +"#NewNBATeams @midnight + +The global warming trotters",910133 +@francoisd8000 They don't belong in captivity for our viewing pleasure ... but you're right global warming is another problem they r facing,644426 +Free trade helps to deal w/ impacts of climate change argues H. Lotze-Campen @pik_climate #T20blog… https://t.co/GeuOWlOUrc,892393 +Pretty afraid watching this @Heritage foundation briefing on climate change on @cspan 😂😂😂,147139 +New priests to learn about global warming as part of formation - Green - News - Catholic Online https://t.co/7i9WmAKrMh (NEW WORLD ORDER?),242092 +"@IndianaUniv Global cooling, global warming, oh wait.. Climate Change.. My tax dollars flushed down the FN toilet �� �� Ridiculous",337513 +"Well according to our lord and savoir Trump, global warming doesn't exist. + +And since we always know Trump is right… https://t.co/eGFr6Tz40p",442543 +"RT @RepRaskin: Proposed cuts to @NOAA would devastate climate change research and resiliency. Who's designing the budget, Vlad Put… ",331242 +RT @Phosphorus_ie: Conference to focus on manure management in battle against climate change https://t.co/Nk75izEM2p,697685 +Growing algae bloom in Arabian Sea tied to climate change - https://t.co/W6QReCj9Zx https://t.co/Us6ysUPPsJ,238142 +RT @alicemmilner: Palaeoecology tells us species constantly move w/ climate change.Policy needs to take long term future view to reflect th…,639271 +RT @SierraClub: California signs deal with China to combat climate change https://t.co/ysFmBeSUTI (@thehill),390876 +RT @deathpigeon: A silver lining to global warming. https://t.co/ZodblSJhoo,892822 +RT @ScotGovFM: First Minister met with the Governor of California Edmund G Brown. Joint agreement signed to tackle climate change.…,368716 +New post on my blog: What will Trump presidency mean for efforts to curb climate change? https://t.co/l7UDMTHrvP,391611 +@alison_rixon @SAPaleAle @JacquiLambie just like the irrational church of climate change persecutes skeptics today.,26366 +RT @Joelsberg: @IvankaTrump So NASA is correct about this but wrong on climate change?,830437 +RT @ClimateReality: We don’t have to choose between putting Americans to work and acting on climate change. Retweet if you know the US…,213126 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,421994 +"RT @RichardOSeager: @SteveBriscoe6 @MaryStGeorge @NZGreens So far none of the parties have adequate polices on climate change. +#LeftWithEno…",585939 +@TheWaiverHounds 'Yeah right! Let me tell you some more global warming...' https://t.co/9WzkMqseEM,475433 +"On climate change, Trump won't kill the planet - The Globe and Mail https://t.co/LyKmVstgDY",481193 +Panelist at #sustainableag deflects discussion of climate change. 'CLIMATE CHANGE IS REAL' shouts audience member. 😨😨,388001 +"RT @RICSnews: News | In the race to curb climate change, cities outpace governments. #WBEF https://t.co/eapT3jr7Ca",721285 +"RT @mwbloem: #DYK For each 1 degree of global warming, 7% of world will see decrease of 20% water resources…",395050 +@wesearchr i'm gonna go for the darkhorse candidate 'global warming',577469 +"#Nigeria #news - Satellite launched to monitor climate change, vegetation https://t.co/b37E5ISjS6",211607 +Can energy-efficient lightbulbs help Zimbabwe reach its climate change goals? https://t.co/YOHWKvMHIb https://t.co/gebJguc8pF,574907 +RT @BraddJaffy: The Trump-Putin meeting is taking place at the same time the other world leaders are discussing climate change https://t.co…,805807 +RT @Oldyella49: Seriously? They're endorsing someone that denies global warming. They should be ashamed. https://t.co/tbyRI6pWVF,661405 +"California Republicans join climate change fight, tell colleagues 'it would be foolish not to engage' https://t.co/Tu171Tk6Hr via @TheWeek",767832 +Veterans urge the White House to stand by our fight against climate change as senior advisers debate exiting the... https://t.co/lJiA8XJAR3,851400 +climate change. change the stairway Krystal.96x.,726350 +RT @bigmacher: #IWishICouldSpeedUp global warming. It's cold!!!,826614 +Now's the time: we need a strong #FTT that works for those hardest hit by climate change and poverty!,821952 +sun cycles and global warming' https://t.co/qEsfH7WFQ9,468095 +"RT @ClimateCentral: February was the second hottest on record, despite the lack of an El Niño, a clear mark of global warming…",225454 +RT @cnni: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,937705 +"France regrets G20 meeting outcome on trade, climate change https://t.co/ziskKVWWJx via @Reuters",346504 +"RT @EricBoehlert: reminder: network evening newscasts this yr spent 125 mins on Clinton emails, 0 mins on climate change;…",372790 +"RT @verge: What 720,000 years of ice can tell us about climate change in the past — and the future +https://t.co/4Tnxcpx165 https://t.co/t0Q…",715616 +What is climate change? https://t.co/lL5BkLpDw6 via @DavidSuzukiFDN CO2 & #climate for dummies:,281080 +"Google:Malcolm Roberts' climate change press conference starts bad, ends even worse - The Sydney Morning Herald https://t.co/tmoQsV0PNa",361431 +RT @climatehawk1: Here's why #climate change would swamp Trump’s border wall – @climateprogress https://t.co/2MUr6MY4zm #ActOnClimate…,434867 +RT @ImranKhanPTI: Pak 7th most affected country by climate change. Apart from immed reforestation we must plan for clean energy today https…,425309 +Great Barrier Reef is A-OK says climate change denier as she manhandles coral https://t.co/7AEnNmizkn https://t.co/A3VaLfAypn,698813 +RT @StayHopeful16: Mike Pence gets buried for pretending he can’t understand the importance of climate change https://t.co/l50y1jp5Zb via @…,615023 +"@BofA_News I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",641 +"New York Times actually asked in a TWEET..' What’s a greater threat to Guam? North Korea, or climate change?' + ��Insane Liberalism!",937551 +RT @spectatorindex: IMAGE: New Zealand newspaper discusses climate change in article from 1912 https://t.co/uZhOybd0MK,133842 +"RT @SteveSGoddard: The whole 'climate change' scam is fake news, from top to bottom. The biggest fraud in science history. https://t.co/5kM…",252814 +@ElizHarball @SusieMadrak @exxonmobil @SuzanneMcCarron Didn't Exxon scientists do some of the original research on climate change?,575434 +"Everglades restoration report shows success, but climate change remains a challenge https://t.co/5iRYMwaBoi https://t.co/sbm8YPeCGr",242013 +RT @JustinCase02: @merz_steven No one with a brain who is honest believes man made global climate change. They even changed it from 'global…,206664 +RT @Super70sSports: Climatologists now believe global warming was dangerously accelerated by the Hall and Oates H2O album cover. https://t.…,399851 +"RT @ZachJCarter: Anthropogenic climate change immediately threatens food and water for 100s of millions of people. + +THE CAUSE IS RIGHT, AND…",104630 +RT @The_Win_Trump: Trump begins tearing up Obama's years of progress on tackling climate change https://t.co/kFTGzy7kZh https://t.co/GNatn2…,237325 +RT @CNNPolitics: Why climate change experts fear Donald Trump's presidency https://t.co/HrFP4c1qSH https://t.co/zvhRsjqrx6,814076 +It doesn't look like climate change is going to be stopping any time soon. #climatechange #globalwarming #science https://t.co/5qM0L3lbk6,438092 +RT @TPM: Fourteen Democratic state attorneys general warn Trump that he'll face litigation if he scraps climate change plan…,902087 +"RT @RedTRaccoon: #UselessScienceExperiments + +Using snow to prove climate change isn't happening. + +Support the #climatemarch activi…",845881 +RT @DennisWardNews: Grand Chief Stewart Phillip says Indigenous peoples are already climate change refugees. https://t.co/pTXWNxyqQs,93753 +"RT @MikeBloomberg: With partners like the EU, we're creating a path to victory on climate change. Great to meet w/President @JunckerEU…",746802 +RT @alertnetclimate: Can Finland's Sámi reindeer herders survive climate change and logging? https://t.co/w1IFiW0AQY @Fern_NGO #Finland htt…,545644 +If we could overturn global warming … how exiting would that be? https://t.co/0pZZV4GKZL,494858 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",744232 +"1969: By 2017 we will have flying cars, no global warming, high end technology. + +2017: https://t.co/YlAbClAiIy",518375 +DON'T FALL FOR GLOBAL WARMING @realDonaldTrump!! ->What's going on between Ivanka Trump & global warming guru Gore? https://t.co/gOc4Vt5nOb,673188 +RT @billshortenmp: Used to have fairly strong views on climate change too. https://t.co/yJN6twCzww,650394 +RT @NnimmoB: 'We didn't create the problem;but we have the solutions. ' - Indigenous women fighting climate change @Health_Earth https://t.…,579240 +The GOP absolutely believes in climate change. They just know we're fucked and are consolidating power before the coasts start to go under.,283548 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,964677 +I’ll build a man – we need global warming! I’ve said if Ivanka weren’t my office and you all know it! Please don't feel so,733088 +RT @SpiritualSmoker: it's absolutely disgusting how big of a problem climate change it yet nobody seems to give a fuck,795451 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,189822 +RT @HuffingtonPost: White House gives $500 million more to help poor countries fight climate change https://t.co/wHFynQk0zO https://t.co/pA…,554376 +RT @JunkScience: Trump in Jacksonville: 'We will cancel millions and millions of global warming payments to the UN.' #climate,83587 +"RT @71djt: What a headline. +Trump to name Scott Pruitt, Oklahoma attorney general suing EPA on climate change, to head the EPA https://t.co…",77193 +"RT @HuffPostPol: Thousands march in Washington, D.C. heat to demand Trump act on climate change. https://t.co/s3irCK2nZq https://t.co/EN1Px…",802848 +"@mench_ke I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",258627 +RT @amazonnews: 1/4 Amazon continues to support the Paris climate agreement and action on climate change.,665792 +"RT @AGBS2017: Green Building can help us limit global warming to 2 degrees – rather than 6 degrees +#AGBS2017 #AGBS2017FINALDAY",322201 +"RT @billyeichner: Head of the ENVIRONMENTAL PROTECTION AGENCY doesnt believe CO2 contributes to global warming, contradicting, oh ya… ",23535 +RT @MariaAlejAlva: @curvegawdess climate change isn't real tho right? i mean we have countries UNDERWATER and the western half of amer…,630135 +RT @BBAnimals: please stop global warming.. https://t.co/S9db4KKKYg,848949 +RT @ThisWeekABC: .@algore: Trump administration 'comes off as tongue-tied and confused' about climate change https://t.co/A9cSdVohZX…,802178 +@canberratimes For $100 per year per household we will ignore climate change???,203862 +"RT @latimes: Despite Trump's skepticism, nearly 200 countries pledge to keep fighting climate change https://t.co/YheWWAD9nz https://t.co/l…",239658 +"RT @JeffreyGuterman: #Trump has selected Myron Ebell, a climate change and global warming skeptic, to lead the @EPA transition team.…",456223 +RT @SenatorCarper: There are no alternative facts when it comes to climate change. And there’s no alternative planet. https://t.co/pyj3C9Jr…,586979 +"RT @hemantmehta: Don't worry, everyone. When President Trump does nothing about climate change, Florida will be the first to go.",474632 +@CRhodesTWilson heck with a high I want to solve climate change world hunger eliminate US debt create jobs & cure cancer only cannabis can!,651329 +"RT @ezraklein: All the risks of climate change, in a single graph: https://t.co/nvnr97cCDi",889489 +RT @cosmicaIly: When u ask him what the leading cause of climate change is and he says 'animal agriculture' https://t.co/Nx8ozn7oQU,725388 +"Huckabee on prioritizing terrorism over climate change: 'A beheading is worse than a sunburn' +Nothing says dumbass… https://t.co/dLLPLrd5g6",477844 +Why coal miners need a moratorium (but can't ask) | Climate Home - climate change news https://t.co/LFvWnIZ1cX via @ClimateHome,376894 +Best of Davos: How can we avoid a climate change catastrophe? Al Gore and Davos leaders respond… https://t.co/785AzHIa9f,402248 +RT @p_hannam: Hey @Barnaby_Joyce I hope you are listening to this excellent summary of climate change and WA farming: https://t.co/XnN0MUVK…,310164 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",130849 +RT @CattyTheDoormat: Although I think it's ludicrous that Trump is a climate change skeptic- there are ways everyone can do their bit to co…,374093 +"RT @paulapoundstone: If we don't like flooding, and it looks horrible, we'd better take global warming real fucking seriously.",481749 +Elon needs to not go to Mars because if we cannot solve climate change and capitalist imperialism we do not deserve to expand our reach.,463808 +"RT @KamalaHarris: From melting glaciers to rising sea levels, we can’t ignore the evidence—humans are contributing to climate change. +https…",288000 +RT @CNNPolitics: OMB Director Mick Mulvaney on climate change: “We’re not spending money on that anymore” https://t.co/uJ1zwwqhNH,845217 +"Everyone had to complain about global warming when we had nice weather, and this is what we get for it. Smh.",757316 +This statue in Berlin is called 'politicians discussing global warming'.. Retweet if #funny #reaction #lol https://t.co/kKxPilaUv9,262230 +@bbcweather hi is the high temperatures a natural occurrence or is it a consequence of man made climate change ?,167856 +RT @LangBanks: Finally got the perfect gift for Trump for his inauguration... Prince Charles’ new Ladybird book on climate change…,215975 +RT @guardianscience: ‘Moore’s law’ for carbon would defeat global warming https://t.co/x3MXzofik9,182510 +RT @harambaetista: good morning to everyone except everyone the bees are dying and we caused global warming we should be ashamed of ourselv…,396184 +RT @nowthisnews: Remember when we had a president who acknowledged climate change was real? https://t.co/zC3RNfEo3N,449083 +RT @pemalevy: He is a microbiologist. He's standing in the rain because politicians are ignoring science and global warming https://t.co/VQ…,627919 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",944107 +@crabtrem Yes! Imagine all the money wasted. Trump's plan to ditch payments for climate change will save us billions!!,314291 +RT @PleasureEthics: We use the sea around Britain as a place to build on water & work out solutions to climate change #opendata #smartcitie…,907344 +It's midnight in November in colorado and I'm literally walking around in shots and flip flops. Don't tell me global warming isn't real.,380697 +"@JimW_in_NM “The Secret Society of Anti-AGW-ACC Cultism,” an organization that claims climate change is a hoax was… https://t.co/cK9ipreZTH",374602 +It was literally 96° in LA today in mid November & our future president doesn't believe in global warming...,568728 +RT @jamalraad: Sen. Jeff Merkley patiently exposed Rex Tillerson on climate change https://t.co/LKGOdkOQQd via @voxdotcom,32358 +RT @FXS_Finance_EN: PwC's 25 Fastest Growing Cloud Companies signal software climate change #All Finance #United Kingdom https://t.co/6fMV9…,358751 +RT @frankdpi: Obama takes a swipe at Trump over climate change policy - Daily Mail https://t.co/bTr3KGcqMo,601169 +"Merkel urges EU to control their own destiny, after Trump visit, climate change decision https://t.co/YiIs4NmnsX https://t.co/FNAlJ5gLcp",563515 +"RT @kevxnkvto: So we just gon act like the weather in 20 years ain gon be extremely unstable and global warming don't exist, bet",825374 +"RT @matthaig1: Believing in climate change is not left wing. It's just science. If you don't believe in it, that's because of your ignoranc…",401164 +Arctic ice melt could trigger uncontrollable climate change at global level | Environment | The Guardian https://t.co/6ATfKqSPG6,269512 +"RT @wwwfoecouk: Watch, share and #ShowTheLove 💚 with a RT because climate change risks so, so much - music by @Elbow +https://t.co/61Bag2UFsI",736903 +"Pope Francis appears in ‘climate change’ movie featuring Obama, Clinton, Leonardo DiCaprio https://t.co/cJPy80oDRQ",665185 +RT @GlobalMomsChall: A4: Collaboration is key! We need to work together to address climate change. #EarthToMarrakech https://t.co/KImvRjFcon,703493 +"RT @GSmeeton: The picture on climate change is not quite as bleak as some claim, says @_richardblack https://t.co/ReciIWNfzS via…",649176 +RT @VICE: What the future looks like with a climate change denier in the White House: https://t.co/957NwcUBbq https://t.co/cNoEW5AGRW,89747 +"RT @TomCBallard: Senator Malcolm Roberts on terrorism: + +'MUSLIMS ARE EVIL AND WILL KILL US ALL!!!' + +On global warming: + +'Everyone stop be…",801434 +"In executive order, Trump to dramatically change US approach to climate change @CNNPolitics https://t.co/s9XAj0tyHi",750936 +"Trump will be the only world leader who denies climate change, giving the United States the official title of Dumbe… https://t.co/oCuViLX4n4",62996 +"Hey, we are all fucked. Welcome to earth where it snows, rains, gets hot and where the people say climate change is a hoax",197941 +"RT @openDemocracy: With a climate change denier in the White House, what are the prospects for the Paris Agreement on climate change? https…",931726 +RT @scienceclimate: If anyone wants lessons on how to learn about climate change. It's here. ������ https://t.co/cpxsaxzjvr…,999411 +"RT @CBCNews: After Trump's Paris pullout, MPs line up behind climate change accord https://t.co/jyi0eFDQ9Z https://t.co/MpDOHKM1Kf",166179 +"@wraithburn I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",415347 +RT @nowthisnews: Rick Perry is a proud climate change skeptic — but Sen. Al Franken is having none of it https://t.co/RjL95OtD0G,703334 +RT @elisewho: Hey remember that time that Donald Trump backed urgent action on climate change? It wasn't that long ago https://t.co/ciohQ43…,535633 +"RT @_K_N_Z_: It's not 'spring' you fools, it's global warming and it's boutta snow next week. #minnesota",848046 +"RT @ESQPolitics: China is now embarrassing the U.S. on climate change. + +How did we get here? + +https://t.co/y48vTaD0vW https://t.co/XxAfY2h…",26885 +"RT @Blubdha: @simonworrall Prince Charles; climate change is 'wolf at the door', mtg w Donald Trump mooted https://t.co/umeKlbTR7R via @tel…",656503 +RT @JulianBurnside: Senator Paterson skilfully evaded dealing with the major point: accepting the reality of climate change #qanda,876235 +"Retweeted Washington Post (@washingtonpost): + +Opinion: Phoenix heat, Tropical Storm Cindy show how climate change... https://t.co/7qWekKiYSa",253058 +@kumailn Isn't it amazing how people who don't believe in global warming or science trust & believe we can predict… https://t.co/0qpfVEfJoe,335901 +"@realDonaldTrump You don't have to believe in climate change to want cleaner air, water, and a healthy planet. Don't let pollution win.",486930 +"RT @LeeCamp: 44% of bee colonies died last year due to climate change/pesticides. When bees die, we die. ...But who's counting?",519709 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,751553 +"Ran a 5K in shorts. In January. In Pennsylvania. OOOOOook. Thanks, global warming. https://t.co/aJuga2tn1O",15916 +RT @hodgman: The New York Times should not have hired climate change bullshitter Bret Stephens https://t.co/0dn1OarWei via @voxdotcom,876083 +’hereTs another story to tell about climate change. And it starts wiht water | Judith D Schwartz https://t.co/vtKGCvhhlT,549489 +RT @FoxBusiness: .@realDonaldTrump: 'We will also cancel billions in global warming payments to the United Nations.' https://t.co/HxeORNHL5p,484787 +RT @Pat1066Patrick: Major TV networks spent just 50 minutes on climate change — combined — last year. https://t.co/XEBHh2Q86Y,339205 +"RT @robinince: J. Delingpole said 'liberal left have lost the battle against climate change', unaware that the acid sea won't just flood th…",293922 +RT @SierraClub: Women Mayors break the glass ceiling to tackle climate change https://t.co/RjV0YXhbVF via (@HuffPostPol),716370 +"RT @Greenpeace: The world is on fire. And if we continue like this, climate change is only going to make it worse…",121979 +"@DailyCaller climate change is doing as much good to our planet as bad. Better crops, less death, etc. We headed into cycle cold period",355364 +RT @Jon_Pantaloon: I swear if it's 80 degrees on Christmas again I will personally defeat global warming. Revenge is a dish best-served cold,652890 +"RT @zachhaller: 'You're going to die of old age +I'll die of climate change +I just lost 40 years life expectancy' + +https://t.co/3eAbvcJ4xF",736209 +@ScottAdamsSays 'Sci. consensus on man-made climate change is at same level as sci. consensus that cigarettes cause cancer. ' #persuasive,506571 +「環境がテーマの文章ででやすい単語2」 global warming:地球温暖化 greenhouse effect:温室効果 ozone layer/ozonosphere:オゾン層 skin cancer:皮膚ガン the Kyoto Protocol:京都議定書,874194 +RT @foe_us: 'A study of our electrical grid that fails to even mention climate change is barely a study worth reading.' https://t.co/zPVLup…,24852 +"@historylvrsclub How would of thought he would grow up to be an advocate for climate change, global warming crap!!!",960566 +"Apparently the elderly, poorly read & educated DJT nominates a politician who denies climate change to head NASA?! #FunnyTrump #FallofTrump",932863 +Perils of global warming could sink coastal real-estate markets - https://t.co/84tWCjc5X7,329246 +RT @abbymccartin: don't understand why some people think they have the luxury to not 'believe in' climate change lmao,339552 +"RT @semodu_pr: We should stop #climate change, otherwise climate change will stop us - #climatechange #future #Earth #Mankind #environment…",175017 +"Let's make this perfectly clear: CLIMATE CHANGE DENIERS should be called what they are: CLIMATE TERRORISTS. Yes, climate change is that bad.",605037 +"In Trump budget briefing, 'climate change musical' is cited as tax waste. Wait, what? - Washington Post https://t.co/4HsbpGgHBo",910328 +RT @Earthjustice: BREAKING: Trump to issue a sweeping exec order that will undermine critical action to fight climate change tomorrow…,379922 +"EPA chief says carbon dioxide doesn’t cause global warming https://t.co/DHazzs01iZ via @BostonGlobe + +https://t.co/pclxOFIysp. MARCH",620027 +RT @WhiteHouse: .@POTUS on how acting to combat climate change can help the environment and grow the economy: https://t.co/dLThW0dIEd,798220 +care about climate change' is one of the most useless phrases concocted. It can mean too many things. 1/? https://t.co/avZrKwXnwt,378654 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,90310 +RT @slforeign: #Somaliland faces its worst drought ever but is still excluded from discussions on climate change. It's time to end…,660044 +Fighting climate change isn’t a “waste of money” — it’s a good investment https://t.co/v3sfqVOCHd via @Verge,143190 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,350310 +RT @davidsirota: Remember how Gov. Jerry Brown just refused to back single-payer? Well now there’s this on climate change policy.…,743542 +RT @newscientist: Most people don’t know climate change is entirely human-made https://t.co/kbAPaoR3TZ https://t.co/JNAuLwESAp,66186 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,772331 +RT @guardian: Arctic ice melt could trigger uncontrollable climate change at global level https://t.co/AuNkUlVX3c,205514 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,743938 +"If u aint concerned with global warming my nigga, u should be",534691 +@lakshmisharath mam r u also interested in the field of climate change ? Just asking,52110 +"@EcoWatch @ukycc @CANEurope @RebelMouse Meanwhile, no one in Utah believes in climate change",179889 +RT @BBAnimals: please stop global warming.. https://t.co/S9db4KKKYg,921175 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/vOE1d0hMtD https://t.co/1wo…,516392 +Washington state youths sue government over climate change - The Mercury News https://t.co/4U7qkukSSW - #ClimateChange,967962 +And Mr #DonaldTrump says that climate change is a hoax! What a pity. https://t.co/dGNzeTrmg3,8838 +Mexico-sized algae bloom in the Arabian Sea connected to #climate change | Inhabitat https://t.co/WQ2AxM3eAo,192236 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,212983 +Surprising that @EPA has not changed the content 'Humans are largely responsible for recent climate change' yet.. https://t.co/4HVVn7yEMh,203985 +Beginning of the youth conference on climate change and REDD + @ONG_AIDEPur # Copmycity225,710768 +@karaisshort It's a legit question as global warming has changed our environment,524220 +"@VP @POTUS @NASA @NASA_Johnson So, the VP doesn't believe in climate change, that people are born LGBT, or that birth control (1/2)",750797 +"RT @JaredWyand: Mon: 'Hey Al, stop by Trump tower & pitch me climate change' + +Wed: 'Hey Al, I'm gonna nominate the guy who thinks you're fu…",964888 +"RT @StationCDRKelly: Tragic day yesterday with the passing of Piers Sellers, astronaut classmate, friend, and champion of climate change… ",969489 +RT @AmericanVoice_1: Surveys find 97% of #ClimateChange experts believe global warming is real & human activity is the main cause. Do you t…,178619 +"@PatriciaRobson9 @cenkuygur Their messages of being pro climate change, pro gay rights, pro immigration reform, pro gun control not enough?!",704138 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,132174 +Pretty sure we are about to see George blame penguin shit for global warming any minute now.. #QandA,46263 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,817449 +RT @Greenpeace: Happy 2017! Let's make it the year for stronger action on climate change: https://t.co/eHVVy2NULg #PeopleVsOil https://t.co…,870810 +RT @MuqadessGul: I assure you that I'll be the voice of climate change in the Senate. - Senator Mushahid Hussain Sayed @PUANConference #Cli…,233755 +"RT @GLOBE_Nigeria: 2/2)..of acting to mitigate climate change is real and cannot be ignored,”- @BarackObama @SPNigeria #NigeriaGreenEconomy",609080 +"@touchofgrey9 ⚡️ “Apocalypse bunker for seeds gets flooded by global warming” by @anchor + +https://t.co/sM9DRkLxV2",981674 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,417942 +RT @ChinaUSFocus: Follow to learn more about how China and the U.S. plan to combat detrimental climate change. https://t.co/VLo5nZ1PmM http…,992917 +"Documentary explores how climate change is impacting Yosemite +https://t.co/rJbqNhv8L4 https://t.co/ZiHXVfQ7Dr",84796 +@StormhunterTWN @weathernetwork I'll bet everyone is happy we have global warming. Imagine how much worse could this have been?,346872 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,631393 +RT @sajeebwazed: #Bangladesh demonstrates coping with #climate change as #CoP22 talks begin https://t.co/4LJ45mwvmn,340881 +RT @ajplus: Leo takes on climate change skeptics: “You might as well not believe in gravity.â€ https://t.co/v8EdagKObD,216823 +RT @Andrew_Marcus21: @MLoParis @BeverleyMaxwe15 @Jane9873 True but he also is a global warming scam promoter & appeaser and booster of I…,182348 +RT @PeterGleick: The @nytimes replaces '#climate change dissenter' with 'denialist.' Thank you for reconsidering key word choice. https://t…,567946 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,141268 +U.S. Energy Department balks at Trump request for names on climate change - Reuters https://t.co/6d8mAMmfFS,684612 +#fragrance #beauty #fashion The powerful smell of pine trees and climate change https://t.co/XaCUsIhY3J,687469 +RT @Crapplefratz: I've been saying the same thing about 'man-made global warming' for decades. Glad to see you're finally coming arou…,702863 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,286035 +"RT @kellykvee: Science may say climate change exists and here's how we can stop it, but philosophy says why climate change is bad and why w…",284067 +"RT @Pinboard: In both cases, a millenarian obsession with End Times prevents work on actual problems: climate change, ethical problems of m…",458157 +United states engagement with african partners on climate change hydroelectric energy ppt The United States has worked closely with ...,834117 +RT @CNN: How cities across Africa are fighting the effects of climate change https://t.co/zcSZtTsIuP (via @CNNAfrica) https://t.co/DRzqJd2F…,255010 +RT @Independent: Government to 'scale down' climate change measures in bid to secure post-Brexit trade https://t.co/Up9Gd9kvut,797499 +@z0mgItsHutch CNN is the result of decades of boiling down rhetoric to the point where climate change is debated by pundits on air,646377 +"RT @sjredmond: Hey Jerry Brown,climate change deniers are solidifying their support. The Koch Brothers Are Pulling Trump's Strings. https:/…",940776 +RT @abcnews: Westpac's new climate change policy is bad news for #Adani's Carmichael mine in Queensland #ausbiz…,195519 +RT @vornietom: If climate change isn't real then what the hell is up with this turtle https://t.co/HfyZQPzBAr,993798 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,364112 +"RT @cinespia: Happy Birthday @LeoDiCaprio +Thank you for standing up for climate change and human rights. ✌ï¸ https://t.co/k3Ytjn1Rha",197836 +"RT @Planetary_Sec: ���� + +Four-star veterans urge Trump-government to continue U.S. support for combating #climate change…",245546 +"RT @FilmFestList: At Sundance, Al Gore says storytellers can rally the fight on climate change - https://t.co/5hchr3VwhB… ",365759 +Hawaiian Airlines joins international climate change study - https://t.co/W6QReCj9Zx https://t.co/BVU9nsAoGg,896324 +@RMaintainers @mary122514 0bama /9/11/2001 global warming climate change carbon trading scam..killing off 1142 peop… https://t.co/xik2rwNyF9,351010 +"EPA chief: Trump to undo Obama plan to curb global warming | @scoopit https://t.co/TWiPVmS04w + now you can breath more carbon dioxide.",502504 +"RT @latimes: Despite Trump's skepticism, nearly 200 countries pledge to keep fighting climate change https://t.co/YheWWAD9nz https://t.co/l…",332354 +"RT @mike4193496: Bill Nye is protesting Donald Trump. +No one cares about Bill Nye. Old old news. He's a hoax just like climate change & th…",484950 +"@EPA @EPAScottPruitt @WashTimes Humans on the verge of causing Earth’s fastest climate change in 50 million years +https://t.co/6fJMS1WHeX",37265 +"RT @PajaritaTW: no, Alicia. los grandes perdedores son los latinos, los q luchan contra el climate change, los indocumentados, los…",202025 +RT @ChrisCuomo: Notion that all advisers who helped make this decision never discussed global warming with Potus? Come on. https://t.co/sh…,886374 +"RT @CECHR_UoD: Benefits far outweigh costs of tackling climate change - say economists +http://t.co/FvZS45Bidc http://t.co/alfK8fFezb",180486 +@NoahCRothman Problem here is many believe envir regs shouldn't be left to states. Country should act in unison to threat of climate change,687405 +"@EWErickson Is all the data -- polls, election results, alleged global warming -- manipulated? + +What, other than God's Word, is trustworthy?",298447 +RT @BjornLomborg: Don't blame climate change for the Hurricane Harvey disaster – blame society https://t.co/8IKqtsgdfl via @ConversationUK,9338 +"RT @Independent: 80,000 reindeer killed due to global warming melting sea ice https://t.co/n3602Dt8gm https://t.co/mPQ1pNaRep",982971 +RT @EricHolthaus: Just something to keep in mind: A President Trump would halt most efforts to tackle climate change. Not much point of any…,328782 +RT @newsbusters: CNN took a break from conspiracy theories about Russia to promote Al Gore’s conspiracy theories about climate change. #alg…,208788 +Come on china enough of your global warming conspiracies!!!!,477780 +RT @Amazing_images: Here you can see who the victims of global warming are ... https://t.co/NuZDI1Hloy,941588 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,576611 +"@bravenak @smcvea When global warming REALLY hits, somehow climate change deniers will overnight shift gears and bl… https://t.co/CrWBdE61Np",947570 +"@highwaystarzo 1 of the benefits of global warming & international terrorism,is that more people are holidaying in England,ill drink to that",997910 +RT @emmaroller: A climate change skeptic running the EPA is now a reality https://t.co/8JUq66p1Qz,74986 +"RT @ULTRAVlOLENCE: Interviewer: 'What do you think about global warming?' +Melania Trump: 'Hello... He's kind he's strong, he's a great... c…",496365 +RT @JulianCribb: Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/11SUBs0VlH,502482 +"Finally, Paris climate change agreement designed by crooks- #Trump is not buying this crap https://t.co/afS8vBckLs",961810 +"RT @GovMarkDayton: Today, Gov. Dayton joined the #USClimateAlliance, joining Governors across the U.S. to address climate change…",94242 +RT @scienceclimate: Do you teach climate change? Join the climate curriculum project. @edutopia https://t.co/cpxsaxzjvr #lessons…,183339 +"@FoxNews @brithume @POTUS shut it down & arrest or fire all of these Democrat saboteurs, their 'climate change' hoax & lies end right now",780613 +RT @whosanto: if global warming is real why my girl cold hearted,658499 +RT @Doughravme: The only way States can fight against climate change is 2 work around the treasonous authoritarian conman in the WH https:/…,144485 +I believe in Mr. Trump about as much has Mr. Trump believes in climate change,485804 +"In Trump's America, climate change research is surely 'a waste of your money' https://t.co/wMgxASPhmz",265961 +"RT @CarolineLucas: One single mention of climate change, with no detail at all. Nothing at all on air pollution. Total environmental failur…",974437 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,430035 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,906357 +RT @alyshanett: 92 degrees in November... da fuq?? But climate change isn't real... 😒,327332 +RT @Fusion: Why the scariest response to climate change is finally being taken seriously: https://t.co/jPL6QR5n54 https://t.co/LlgQFlVIly,460921 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,493471 +RT @UN: #WorldOceansDay: Crisis beneath the calm of Seychelles as climate change threatens coral reefs #SaveOurOcean…,16241 +RT @clareshakya: Denying denial: time to arm ourselves with facts & shore up ambition to tackle climate change @IIED @andynortondev https:/…,58712 +17 U.S. communities are actively relocating due to climate change. Upwards of 13 million Americans will be at risk… https://t.co/DVoRZ5ZrD8,816270 +"RT @elimeixler: .@AJEnglish appears to have taken down a heinously anti-Semitic tweet about climate change denial. +Cuz deleting me…",910551 +RT @pettyblackgirI: Well considering her husband doesn't even believe in climate change the 'gift of nature' won't be able to heal sick…,771337 +"RT @TonyKaron: 'Do you now, or have you ever believed that climate change is caused by human activity?' https://t.co/RnHCvwRrAI",573204 +"RT @Scout_Finch: It's climate change and saving the planet and mankind, not picking where to vacation. https://t.co/SeYz8wWGWm",367907 +"@RVAwonk + +That's the guy who brought a snowball into the house floor and said it was proof that global warming wasn't a thing, isn't it?",372518 +@DavidCornDC @MotherJones does he know there's a difference between weather and climate change or does he lump them together? Oh right...,639437 +"RT @CLMTBerkeley: Head of EPA denies carbon dioxide causes global warming – video: Scott Pruitt, the new head of the US Environmental… http…",474666 +RT @washingtonpost: EPA chief pushing governmentwide effort to question climate change science https://t.co/x0g3CwNlrR,648482 +RT @JGreenDC: The most polarized on the issue of climate change scored the highest on assessments of scientific literacy https://t.co/6LNDm…,143860 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,114275 +"RT @USMC_DD: Questions Trump never answered +Obama's wiretapping evidence? +Did Russia hack? +Is climate change a HOAX? +Why no cameras @Press…",358451 +"RT @xanria_00018: You’re so hot, you must be the cause for global warming. +#ALDUBLOSTinLOVE @jophie30 @asn585",576988 +"@darrenrovell pollsters 👎Like the deniers of climate change. +They have no clue!",346022 +"RT @globalnews: “In Paris, we came together around the most ambitious agreement in history to fight climate change,” Obama said. https://t.…",533375 +RT @sloat24: Damn I wish global warming was this good when I was a kid so I coulda trick or treated in 70 degree weather,887942 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,643526 +"RT @AstroKatie: In case you were wondering: no, 4 years of US-led inaction on climate change will not go well for the planet. Now is when i…",435200 +RT @KeepsinItRealz: I blame global warming and something about gay wedding cakes. https://t.co/x4L2JN2ark,73621 +RT @highimjessi: America's new president doesn't believe in climate change and thinks women who have abortions should be punished. Welcome…,430733 +"Trump just had to do it...stared at eclipse without glasses. Scientists said NOT to , but they believe in climate change so must be false",187712 +RT @therealroseanne: #Obama's bullshit has caught up w him: global warming is caused by radiation from Japan's nuclear accident which he ha…,216777 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",236330 +"Scott Pruitt, the head of the EPA, said that carbon dioxide was not a primary contributor to global warming https://t.co/PFgvJgbMNV",615817 +"Nicholas Stern: cost of global warming ‘is worse than I feared’ + +https://t.co/6w3nouwg3V",279661 +@BadAstronomer @Syfy How about we study global warming on some hypothetical expoplanet. Those Earth studies are just to provide a baseline.,515797 +My one request: during all the coming coverage of the hurricane please make a note of how often you hear climate change mentioned.,846929 +"RT @Bentler: https://t.co/iB1xnJDJKi +A man who rejects settled science on climate change should not lead the EPA +#climate… ",927705 +Humans Caused 100% of the Past Century’s Global Warming - Unnatural Causes 100 percent of global warming over t... https://t.co/KvzPmEJfBI,337882 +Must-watch: Leonardo DiCaprio's climate change movie 'Before the Flood' - https://t.co/qJQxWXN6aF https://t.co/W75wlPjKz1,651214 +"RT @_Makada_: Sahara Desert gets first snowfall in almost 40 years, but the fake news media told me global warming is real! + +https://t.co/L…",751056 +"RT @Hope012015: Trump to undo Obama plan to curb global warming, EPA chief says https://t.co/RME4KwJ5iQ via @BostonGlobe",248125 +They aren't bright enough to understand. I will translate. 'Tattoo Kardashian iPhone8 herbal enema climate change s… https://t.co/76uYPGh3do,659759 +First two paragraphs are loaded with bullshit about climate change and forced carbon tax.. this government has got… https://t.co/KoEgsFZLGf,44797 +"RT @cleanh2oaction: Scott Pruitt misled the Senate at least 3 times abt climate change. As a former baseball player, he should know wha… ",798117 +RT @Niki_London: Not surprised. This is a man who thought global warming was propaganda. https://t.co/uA5lozZR5Q,638313 +New Post: Global warming causes Alaskan village to relocate. How to stop climate change before it’s too late https://t.co/pzKU7Ubom8,204555 +RT @ClimateTracking: Why is #women participation and engagement important in climate change work both in policy and grassroots level?…,540417 +RT @michaelhallida4: 97% of scientists told the LNP climate change is real and happening so Josh Frydenberg say COAL will save you. Morons…,352057 +"RT @SuzanneWaldman: 'Activists, treating climate change as a problem validating their policy goals, contributed to climate skepticism.' htt…",799088 +"Getting used to the snow in Tabuk, KSA (desert) was weird but snowing 190km north of Riyadh? We have serious global warming issues- Wut even",934720 +"The longer we wait to take action on climate change, the more difficult and expensive it will get:… https://t.co/xjzE7XXmp4",529609 +RT @albertasoapbox: Why a #C02 tax? I would like to see the Alberta #PCAA have a public discussion on the science of global warming. C02 la…,358662 +"RT @UberFacts: President-elect Trump has selected Myron Ebell, a climate change skeptic, to lead his Environmental Protection Agency transi…",704245 +Trump-fearing scientists remove 'climate change' from proposals - https://t.co/Pl8D4zh0Ve,932974 +"£1.5 billion for climate change denying creationist anti-abortion, anti-science, homophobic fraud and terror enablers.",531048 +Deny climate change and stop protecting our nation's natural spaces. This is how we make America great again. https://t.co/rMQD6YKklU,71743 +"RT @ThePoke: #recap 23 amusing signs to distract you from the perpetual doom that is Brexit, Trump & climate change… ",767345 +Group says Nigeria needs 2.4m litres of biodiesel daily to meet climate change… https://t.co/qSCg7iwHcV #EnergyNews,530839 +RT @NRDC: G7 leaders blame US for failure to reach climate change agreement in unusually frank statement. #ParisAgreement https://t.co/dbX…,815047 +"RT @MissLizzyNJ: Blizzard Warning: A bunch of snowflakes will try to shut this trend down and replace it with muh global warming. + +❄️��❄️��❄️…",128752 +"RT @joostbrinkman: Cost of climate change: World's economy will lose $12tn unless GHG's are tackled. Thats $12,000,000,000,000 #ActNow http…",39654 +RT @KvanOosterom: Celebrating entry into force of #ParisAgreement to counter climate change with #SIDS colleague PermReps hosted by…,132905 +"RT @samgeall: China understands the need to mitigate climate change. But also: wants to move into position of technology leadership, restru…",116459 +I admire the irony of David Koch being a major sponsor of NOVA while at the same time pushing climate change denial.,165532 +called global warming a hoax perpetrated by the chinese' I'm wheezing pls watch this https://t.co/UfiPVNyYGb,502758 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,284295 +RT @SaleemulHuq: Need to invest in long term capacity building to tackle climate change instead of sending fly-in and fly-out international…,29769 +RT @YaleE360: Botanist plans to use unique biodiversity of Appalachia to save plants from climate change & boost region’s economy https://t…,818671 +RT @LeeCamp: A 1991 Shell Oil video shows they KNEW about the dangers of climate change all along [WATCH] https://t.co/ikn9y3NU7m,201465 +Does Trump getting elected mean global warming isn't real? Find out tomorrow at our annual Flat Earth Society Convention,663088 +Scientists say climate change is causing reindeer in the Arctic to shrink - The Week Magazine… https://t.co/KqKE89sIF4,184683 +@ChrisMBassFTW I'm surprised more businesses haven't parted ways with GOP due to the religious nutters. Denying climate change?! Bonkers!,281280 +RT @mttmera: Dry ice will save global warming thanks dayjah,496917 +RT @bencaldecott: Mark Carney: firms must come clean on exposure to climate change risks | Business | The Guardian https://t.co/kBGGOIDWN3,229445 +RT @drewepting: How about that global warming folks,906993 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",734003 +RT @TIME: 'This is the pivotal moment in the fight against climate change' https://t.co/IWaQ77MD3f,970888 +RT @CharlieDaniels: I cant remember if Al Gore invented the internet before or after he invented global warming,75892 +RT @YourAnonNews: Why don't people understand Exxon Mobile and the Koch Brothers are funding the narrative that climate change doesn't exist,829171 +RT @newscientist: It just got harder to deny climate change drives extreme weather https://t.co/dbI8WdX0fW https://t.co/AKvQVfjmTg,487955 +"RT @Jackthelad1947: Wild weather & climate change #StopAdani #keepitintheground #auspol #qldpol #science + https://t.co/UCLs3zB3Pb",127968 +World leaders duped into investing BILLIONS by manipulated global warming data https://t.co/iLEtQKfB14 … https://t.co/n4pUAYxXER,274632 +RT @MaryCreaghMP: Theresa May should use her meeting Donald Trump to tell him that climate change is not a 'hoax'. https://t.co/J0xzYRBYag,731069 +"@donttrythis I hear this a lot in my part of the country, show me recorded data showing evidence of climate change from 1000 years ago.",221632 +@JenniferGrayCNN @hm5131_massey Of course one candidate believes in the science of climate change the other dismisses it.,769168 +RT @realLO2017: @realLO2017 If 'global warming' is #real then why do we have so many snow days? China is responsible. Sad!,641285 +"RT @GeorgeTakei: Pope Francis gave Donald a copy of his climate change encyclical & a treatise on progressive economics. + +Hope he included…",454883 +@POTUS @realDonaldTrump Donald most intelligent speech on 'climate change'... https://t.co/ixYhB4CbLy,821566 +Moroccan vault protects seeds from climate change and war #RABAT #Morocco #seedbank https://t.co/RO9t0IK4HQ https://t.co/7FqCCuyFqT,314629 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,82988 +"RT @JoshButler: I went to Antarctica with @TomCompagnoni for this massive project on climate change, science and exploration… ",696785 +RT @naheinyaar: Find yourself a guy who cares about global warming and the bees dying,797805 +RT @washingtonpost: Analysis: Hurricane Harvey and the inevitable question of climate change https://t.co/k3sRVeamO9,525201 +"#ClimateChange #GIF #New #world, green, earth, waiting, sign, sitting, climate change, soul… https://t.co/j6qZUpV3R1 https://t.co/KjOSdnyrcI",599152 +"@luisbaram @EcoSenseNow rule #1 of climate change alarmism, the current year is always the hottest on record.",466357 +RT @GadSaad: imply that I am a climate change denier BUT it does imply that I don't believe that my soccer injuries were caused by climate…,191679 +RT @sierra_markk: Happy Earth Day! Stop denying climate change! Science not Silence!! I love earth!,777617 +"RT @tveitdal: G/: Trump’s colleagues want to change his instincts on climate change, but few can predict how he might react…",3581 +RT @NRDC: Flat-out denial of accepted science: Pruitt says he doesn't agree CO2 is a primary contributor to climate change. https://t.co/NP…,176471 +RT @UCSUSA: Will fossil fuel companies join in fighting #climate change? https://t.co/zQk51TivZE #CorporateAccountability https://t.co/2Doj…,188510 +RT @postgreen: The quest to capture and store carbon – and slow climate change - just reached a new milestone https://t.co/J73phLV7de,852019 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,687573 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,1499 +"RT @DaniNierenberg: 'Let's give the next generation agriculture that protects soil, promotes biodiversity, fights climate change.â€ -K.…",687976 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,815050 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,670948 +"RT @davatron5000: A climate change denier as head of EPA. +A creationist as head of Education. +A Nazi-inspired database for Muslims. +Ugh. Th…",321255 +@EPA Scott Pruitt wants to set up opposing teams to debate climate change science https://t.co/Mz1LWpIsBc,683149 +RT @Thomas1774Paine: How bout you refund the billions you've stolen in federal grants to fund your portfolio. Real climate change: To yo…,157906 +"RT @MarkDiStef: Yes really, Australia’s senate set aside one hour to debate “the disputed theory of global warming' https://t.co/71ryMJkDbX",723426 +"@erinisaway if you're able to turn a blind eye to climate change & consider it an issue for thirty years down the line, you're very wrong.",977979 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,693058 +"RT @suzlette333: A million bottles a minute: world's plastic binge 'as dangerous as climate change' #Pollution #ClimateChange +https://t.co…",917095 +"RT @MDSebach: If by 'climate change experts' you mean 'catastrophic climate change cheerleaders' or '...partisans,' their fear is…",197950 +RT @InfoDesign_Lab: We discuss how to communicate climate change with @bjornhs and Espen Larsen @klfep @unioslo https://t.co/LWK3jojtDY,812383 +It's the beginning of November n I'm wearing jeans n a t shirt n sweating but y'all still think global warming doesn't exist ðŸ¸â˜•ï¸,122505 +Ice core samples used for climate change research melted after freezer failure https://t.co/1zoDcSJdYV,913830 +"this year is snowing more in USA/canada/europe and sahara desert than other years, i can agree with trump that global warming is hoax xD",286098 +"@Sluttela not this year apparently, global warming kill us all",76092 +Badham favours workers (coal jobs) over climate change (too much fossil fuels) - 'jobs save nature' or some such b… https://t.co/V4JeXLDO8u,544534 +"RT @explicithooker: me: Leo come over +Leo: i can't im busy +me: my friend said global warming isn't real +Leo: https://t.co/kveRTYlpIi",370160 +"RT @Tomleewalker: u talking about tackling climate change + +▶ ��──────── 23:07:42 + +u talking about the environmental effects of animal ag + +▶…",527515 +"As climate change heats up, Arctic residents struggle to keep their homes #Arctic https://t.co/SM9eYMZ9Z4 #Arctic",617472 +RT @climatehawk1: Insurers count cost of #Harvey and growing #risk from #climate change | @reuters https://t.co/eyZXdWtyUT…,177127 +RT @TheAuracl3: Vice President Elect Pence just confirmed an anti-LGBT agenda is definitely on and Trump appointed a climate change…,173098 +RT @AnimalBabyPix: The effects of global warming https://t.co/NV3eFwBk6D,328325 +"From Oslo to Sydney, #cities are leading the way in setting ambitious goals to curb climate change. https://t.co/FnyNUb8k2G",443275 +RT @RogueEPAstaff: EPA has taken down its climate change website. #climatemarch #altgov https://t.co/qp8CBvZQB0,662169 +RT @NowaboFM: Now @POTUS will change his opinion: climate change may not be invented by China - but by Japan. Great stuff.…,745784 +3/ objective journalism sticks to facts: 'science says climate change is real' - and avoids ascribing motives etc.… https://t.co/u1fsUDQ4xE,877890 +RT @pleatedjeans: Santa gives coal bc the North Pole is cold af he's trying to speed up global warming in 100 years his workshop will be be…,129486 +Scientists just published an entire study refuting Scott Pruitt on climate change: https://t.co/GG2xjz0fz7,57431 +RT @thehill: EPA removes climate change page from website amid 'updates' https://t.co/LeALQozE8L https://t.co/7uch58zYUH,184494 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,653677 +"@FCPSMaryland We have to have a snow day tomorrow, with global warming we won't have many left. Fit 'em in while you can right?",77414 +RT @LodhiMaleeha: I was honoured to deposit Pakistan's instrument of accession to the Paris agreement on climate change at UN today. https:…,766841 +RT @nature_org: World leaders reaffirm their commitment to climate change and the #ParisAgreement. https://t.co/q6dKopWrSo https://t.co/BMp…,340443 +"RT @rootsinterface: i love being queer, supporting women & poc & their rights, believing in climate change & evolution & basic science, aid…",331063 +@GregHands @tradegovuk Agreed. Does the forecast account for works required for global warming preparation/ resilie… https://t.co/uC88QGCnvi,560136 +RT @GreatGasScam: #FossilFuel driven climate change disaster yet #auspol throw our $$$ at their mates in #Shale #CSG #GAS. Smacks of…,791454 +1 News • '‘Fight against climate change is a moral obligation’' via @233liveOnline. Full story at https://t.co/j7W89CP1NS,804182 +RT @RichieBandRich2: 75 degrees in Chicago on November 1st...global warming but aye it's bussin,996054 +"RT @NewsHour: What a Trump administration could do on immigration, health care, climate change & more in his first 100 days. https://t.co/Z…",997577 +"Pruitt’s EPA office deluged with calls after he questions science link between human activity and climate change~ +https://t.co/u1mXTADByw",678955 +politico: Merkel's visit this week will test whether allies can persuade Trump not to blow up their efforts on global warming… …,146227 +RT @GEMReport: Both teachers and students need to learn about climate change and its underlying causes #COP22…,299148 +"#EPA chief Scott #Pruitt: Carbon dioxide not a primary contributor to global warming https://t.co/OU0IWzeYG1 +#Embarrassed as a country yet?",964213 +G20 finance ministers ditch anti-protectionist pledge and #climate change commitment after US opposition: City AM https://t.co/kg2Lz6IxpP,703910 +"RT @cbcasithappens: Canadians help U.S. scientists protect climate change data: +https://t.co/xdeifq0G7l https://t.co/mC1QEozHTf",651805 +RT @Reuters: EPA chief unconvinced on CO2 link to global warming. Via @ReutersTV https://t.co/eeG5RieyTY https://t.co/l67L0dr6AZ,360112 +RT @MBlackman37: #ChrisChristie successfully getting tan is proof global warming exists.,554929 +Obviously the scientists behind the global warming conspiracy have calibrated these plants incorrectly. https://t.co/Z4oHmf3REn,460850 +@spacealienzz & people here still have the nerve to say global warming isn't real !,266567 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",988459 +RT @climatehawk1: China blames #climate change for record sea levels | @Reuters https://t.co/zmKndsamHI #globalwarming #saveourfuture…,54960 +@AlwayzB_ the problem here is.. what is the long run when we cut funding to the EPA and climate change destroys the planet,262128 +Having a phone without a headphone Jack will be like having a president who doesn't believe in climate change https://t.co/8dOaodLoxO,390911 +"@YogiBabaPrem @FOTCangela @CNN @DrJillStein Well if you voted Jill, how's climate change going for ya among other t… https://t.co/hau4lGqJrq",663234 +@helenhuanggg @joyceala it's a waste of wood and causes global warming tho. Killing trees for no reason,207607 +#bbc US diplomat in China quits 'over Trump climate change policy': The Beijing-based envoy… https://t.co/7UlFff6210,166012 +"RT @charliejane: It's definitely true that fiction should be dealing with climate change way more, but there's been some great stuff: https…",215025 +RT @jameshupp: Batteries are great but the best way to fight climate change is to elect 70 or so additional Democrats to Congress. https://…,819232 +"seriously, though, would saying 'climate change is an alien conspiracy' really be any sillier than denying its existence completely",738464 +"As climate change heats up, Arctic residents struggle to keep their homes #Arctic https://t.co/H2w6cStnUy #arctic",152114 +@POTUS @NWS oh and global warming arming is fake news right?,812759 +China tells Trump that climate change isn't a hoax it invented https://t.co/rVm8xZR6Pv via @business,249602 +"RT @DavidParis: ahaha the ALP are saying, fresh off their approval of Adani, that progressives need to work together on climate change. FFS…",802862 +RT @jamespeshaw: A strong Green heart in the next progressive govt means ambitious climate change legislation in the first 100 days https:/…,713304 +The entire global warming mantra is a farce. Enlist in the #USFA at https://t.co/oSPeY48nOh. Patriot central awaits… https://t.co/Qb5F99nDKF,577367 +RT @Channel4News: .@LeoDiCaprio calls on citizens to vote for “people who believe in climate changeâ€; @realDonaldTrump has called it…,491349 +RT @ATBigfoot91: Hey MAGAs: how stupid are you when 100K PhD.s tell you global warming is caused by CO2 yet you never even heard of…,652650 +"@televisionjam issues of unemployment, infrastructural & economic development, climate change, social intervention programmes & civic pride.",967930 +RT @davonmagwood: When you believe global warming is fake news. You do dumb shit like this. https://t.co/V8tiREQfvy,900531 +im howling at these global warming memes but for real im acctually worried about the environment https://t.co/xTBy9fRiSv,869994 +RT @wef: 7 things @NASA taught us about #climate change https://t.co/Gxxm61F2iB https://t.co/xvmMjzUWWZ,677812 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,576783 +RT @NYtitanic1999: Boris Johnson thinks no one should tell Donald Trump he's wrong about climate change https://t.co/4Zfs2u6mKt https://t.c…,401607 +RT @benandjerrys: We've come too far to back down now. We must continue to fight climate change and #KeepParis. Join @ProtectWinters…,935016 +RT @TheInfidelAnna: Im not willing to change my lifestyle because of climate change. I dont care. I want ISIS wiped out #MAGA…,743175 +"RT @GhostPanther: Biggest loser tonight is the human race. Cause climate change is gone as an issue in Trump America. + +THIS IS A HUGE DEAL.…",966359 +You know who doesn’t care about climate change? Everybody. #GetReady https://t.co/3CgxfwUGPp,208243 +RT @elonmusk: @TheEconomist ... on how to address threats of climate change. They do require a global response.',332009 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",486157 +RT @leepace: Bali. The mud under mangroves hold one of natures best solutions to climate change. Blue Carbon Solutions.…,343615 +RT @bvdgvlmimi: completely normal. climate change is absolutely a myth. nothing to see here folks let's keep pretending the world i…,462164 +RT @thinkprogress: TV coverage of climate fell 66 percent during a record-setting year for global warming https://t.co/uliCapYn4e,407405 +RT @LeeCamp: 44% of honey bee colonies died last yr due to climate change& pesticides. 90% of great barrier reef has died. When bees &ocean…,931719 +@a2controversial BTFO global warming conspiracists,642445 +"@TwitterMoments 'Uh......fake news! Ain't no such thing as climate change' + +- A republican, somewhere in America.",940529 +UC Berkeley researcher debunks global warming hiatus - SFGate.. Related Articles: https://t.co/WskgTLf1vw,693850 +RT @richardbranson: Everyone from Sir David Attenborough to Rex Tillerson knows climate change is critical: https://t.co/m5BWwat5Hu https:/…,846956 +RT @MDBlanchfield: Al Gore thought Trump ‘might come to his senses’ on climate change. Nope. - The Washington Post https://t.co/B1m76WmtGA,999669 +RT @sophiaxemily: Obama has spent time creating a plan for climate change issues and it's gonna go down the drain bc TRUMP THINKS GLOBAL WA…,256463 +"RT @craigtimes: Jack Black calls @FLGovScott 2x about #Florida's lack of action on #climate change, can't get thru https://t.co/xpRzEHpONy…",37534 +@HuffPostPol - We all know climate change is real.,930321 +"RT @CapitolAlert: As Trump appoints climate change denier to EPA transition team, @JerryBrownGov doubles down on climate change fight https…",495749 +Wow......the Chinese are soooooo good at this climate change 'hoax' smh....... I sure wish our next president had a… https://t.co/FPmpm5uYS4,363368 +"Stopping global warming is only way to save Great Barrier Reef, scientists warn: Improvements to water quality or… https://t.co/EmoIfnzRWB",482774 +RT @WinWithoutWar: Rex Tillerson funded climate change deniers for 27 years despite Exxon’s knowledge of climate change in 1981. #rejectrex…,968706 +RT @michikokakutani: The Arctic is undergoing an astonishingly rapid transition as climate change overwhelms the region. via @sciam https:/…,984473 +Al Gore offers to work with Trump on climate change. Good luck with that. - Washington Post https://t.co/kn4RGZw1B1,537348 +RT @obliviall: «Il concetto del global warming è stato creato dai cinesi in modo tale che l’industria manifatturiera Usa non fosse competit…,511380 +"RT @mcarrington: SHOCK: The 'Father of global warming', James Hansen, dials back alarm https://t.co/vHKoqtuKXP #FAKEGlobalWarming… ",74611 +"@criticalthinkrs @nlingua @realDonaldTrump you mean saving some Americans job , focusing more on economy than climate change maybe",714843 +@BreitbartNews 93 million a day??? That would probably solve the 'climate change' issue.,83398 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,953071 +@Not_a_rake1234 @AnaBulger2 @KgiardenKaren @jjauthor @KevinPlantz don't make stereotypes. She might believe in some kind of climate change,644182 +RT @ingridfcnn: More #Science facts adding to body of research on #climate change. Perilous warming increase in #oceans.…,636836 +Rex Tillerson made Trump’s position on climate change seem like a hoax https://t.co/adb6oek74b,591233 +"Under Obama, national parks tweeted about climate change. + +Under Trump, they tweet about shit. https://t.co/kANnVpZj9F",479785 +"RT @SenSanders: When climate change is already causing devastating harm, we don't have the moral right to turn our backs on efforts to pres…",366080 +@iainkidd Genocide and mass rape are more horrific and evil. Irreversible climate change is potentially more catastrophic. Apples/oranges.,86880 +"RT @CSUBiodiversity: Conserving natural sounds is an important, yet often overlooked practice, especially as climate change alters the s… ",285987 +@kerrence Good thing climate change is a liberal hoax and weather won't continue to get more and more extreme going forward,560727 +"If global warming doesn't exist, then why did club penguin shut down?",248082 +RT @corpsemap: you know who was really good at science? the oil company guys who figured out climate change in the 1960s. didnt help much,53406 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",152769 +"RT @SenBookerOffice: In May 2016, Scott Pruitt said the debate over global warming “is far from over.” 97% of scientists & a majority of… ",953075 +How informed are you on climate change? Take the quiz and find out. https://t.co/bHqs83HQ70,798231 +RT @DmitriMehlhorn: Phrase 'climate change' scrubbed from NIH website https://t.co/G0NPCCwAR2,596716 +"Trump's transition team crafting a new blacklist—for anyone who believes in climate change + +https://t.co/NhzeA2RcLG",496433 +"RT @J_amesp: Thankfully, America's autocracy will be short lived and the world we know will be killed by climate change before we repeat th…",68652 +RT @altUSEPA: 75% of extreme heat events now attributed to climate change. https://t.co/TW5MMWQmIx,415102 +RT @k_leen022: let's just keep pretending global warming isn't a thing and enjoy the 60 degree weather in january 👍🏼,247580 +The bigger pictture: combining #climate change reduction #policies with ensuring #humanrights https://t.co/ycY0soFWbP via @ecobusinesscom,739680 +"RT @InvestWatchBlog: Trump killed Obamas, Merkel & China's global climate change initiative today. ( The Paris Act) - https://t.co/POwlb1n6…",467608 +"RT @TheReel_in: Watch, absorb and act upon Leonardo DiCaprio’s dire warnings on climate change in ‘Before the Flood’ https://t.co/7NpajBFLrG",120848 +@JodieMarsh How do you feel about Trump's denial of climate change though? He says one of his first jobs will be to cut funding...,799462 +RT @kshaidle: .@ClimateDepot meets up with @SheilaGunnReid at the UN climate change confab in #Marrakech #COP22... #MAGA https://t.co/aHUiL…,580292 +"RT @ZachTBott: Global warming and climate change isn't real, so fuck the earth amiright??",943835 +"RT @jfberke: Bloomberg has a message for Trump on climate change. + +https://t.co/84G5pzeUwN",990402 +"Climate talks: 'Save us' from global warming, US urged https://t.co/uwHvPMeE5l #BBC",955360 +Why didn't Theresa May make a PUBLIC declaration about Trump's climate change u-turn? https://t.co/3I7N1OqVhI via @MidWalesMike,947963 +"@sidharth_shukla well, after your contribution at global warming phenomena you owe to humanity a kind of compensation ����������",784748 +RT @MichaelSpenc72: Questions about climate change ? This gif says it all. Retweet. https://t.co/YrdNU6eYig,502914 +"Harvests in the U.S. to suffer from climate change, according to study https://t.co/96EpDPwTIt https://t.co/NHdC7alKOz",365296 +RT @ClimateBook: Call US EPA administrator Scott Pruitt +1 202-564-4700 and tell him global warming is real and is due to CO2 emissions.,158992 +Oil & gas as part of the solution to global warming: materials. Read https://t.co/rg5sqrlkfG,471246 +David Hempleman-Adams urges climate change action after Arctic voyage https://t.co/sTIJ402RFO,345671 +@Dad613 @democracynow @mgyllenhaal nuts is ignoring climate change so you can keep greedily polluting.,687199 +"Charlie Clark talks Uber, climate change and fentanyl at mayors' meeting with Trudeau https://t.co/n1pUtHZsVY #uber",321723 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",174439 +RT @FollowTheVegan: People who care about climate change: one of the biggest factors a person has personal control over is eating vegan. ht…,442391 +RT @ClimateTreaty: Mangroves and marshes key in the climate change battle - Huffington Post https://t.co/y1W5N3SvIo - #ClimateChange,750827 +"@RaylaKrummel Lmao I believe that to but not about this, if you believe global warming isn't real then you're wrong… https://t.co/PkvTKhG39K",171801 +RT @rabiasquared: And climate change has much to do with this. Pruitt is helping dig this grave. https://t.co/58dXCQ0wHW,165677 +SPPI is a green advocate and helps in the preservation of more trees to help curb climate change. https://t.co/ClawMrUPJJ #exteriorpainters,563428 +"RT @sydneythememe: Donald trump, the now president of the United States...... does not believe in global warming ðŸ˜",464821 +The unthinkably high stakes for climate change that we’ve completely ignored this election https://t.co/jItgZUnfKs via @voxdotcom,116432 +"Latest climate change scare story: Rising oceans to produce '2 billion climate refugees' by the year 2100, alarmis… https://t.co/mq9Iv2omaw",204331 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",644706 +"RT @ABCPolitics: Trump team compiling names of Energy Department staff who worked on climate change policies, document shows… ",305351 +RT @NYTScience: Want a real snapshot of Trump's climate change policies? Take a look at the proposed Energy Department cuts…,731500 +"@MauritsGroen @Standplaats_KRK Ye-, men denkt aan abrupt global warming zelfs- en dan zijn we mega-fucked, en snel ook",17208 +RT @Thomas_A_Moore: polar bears for global warming https://t.co/6AITzjHapC,19337 +i think the day i understand why many people don't think climate change is real is the day i die,8755 +"RT @PeterHeadCBE: +40C never been recorded in UK, but could quickly become common with climate change. Also drier S Coast,wetter West. http…",133797 +@climateguyw This hot is nonstop - thanx climate change. We have weathered enough heat for the summer-at least rain… https://t.co/DJbZnWJZOK,255140 +RT @mcnees: Periodic reminder that Trump is a hypocrite who knows that human-driven climate change is real. https://t.co/s0KMY79Wk3,627021 +RT @PhotograNews: Meet the woman using photography to tackle climate change - The Independent https://t.co/cryWp9tIeh,914045 +#weather King County among US hotbeds of belief in global warming – The Seattle Times https://t.co/k73QzA3xX6 #forecast,763365 +RT @grist: Major TV networks spent just 50 minutes on #climate change (COMBINED) last year https://t.co/Wm8OGXEN1b https://t.co/RFXvU56uum,655183 +RT @tweetotaler: Today's @PLOS Reddit AMA: #scicomm researchers answer Qs on science literacy and climate change. https://t.co/SRDwdDvhVW #…,773911 +"When asked about climate change, Hillary Clinton stated that she will 'Deliver on the pledge' President Obama made to combat global warming",411123 +RT @benmekler: It's 91 degrees in mid-November and the president-elect wants to cut 100 billion dollars in federal climate change spending,125139 +Watching Bill Nye the Science Guy special on climate change. One dude just leaves us 15 more years to survive. Doomed,647348 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,335490 +"Shrinking glaciers are ‘categorical evidence’ of climate change, study says https://t.co/Nd58nlqfjF",660005 +"RT @ULTRAVlOLENCE: Interviewer: 'What do you think about global warming?' +Melania Trump: 'Hello... He's kind he's strong, he's a great... c…",612647 +RT @Complex: .@BillNye on climate change under Trump: 'Maybe the world will end' https://t.co/KPW3tq2082 https://t.co/NzK32hWIxg,53118 +"@CNNPolitics @cnnbrk taking money from the little people cant fix global warming, its a ponzi scheme to steal from poor to give to liberals",402290 +"Tackling climate change doesn’t cost the Earth, and Britain is the proof, writes Michael Howard @guardianopinion… https://t.co/8VrTy58tmb",954816 +RT @ClimateRealists: Three Cheers: Another US agency deletes references to climate change on government website https://t.co/yvhm28dBRt,285572 +pnwsocialists: Microbes in soil are essential for life and may help mitigate climate change via /r/climate … https://t.co/bV7LDB5RnC #just…,682172 +RT @GlennKesslerWP: The Trump administration just disbanded a federal advisory committee on climate change https://t.co/t8LenfJl5S,229711 +Older politicians that deny climate change are too old to care. It's time for politician change.,17840 +"RT @SteveSGoddard: 'for the last four decades the global warming industry has been almost wholly under the control of crooks, liars, ....'…",959088 +RT @ClimateChangeB: Guest Opinion: Time to act on climate change #ClimateChange https://t.co/4ijOsrYEZz,638708 +RT @alexwagner: The areas of the US that will be most disproportionately affected by climate change are red states in Trump Country: https:…,940588 +@SenSanders scientists disagree in means of dimension not in means of origin of global warming and climate change as such.,288271 +RT @a35362: Scientists explain apocalyptic effect of Trump pulling out of the Paris climate change agreement…,961513 +Just watched Nat Geo's documentary about climate change! #BeforeTheFlood #FeedTheMind #BeInformed,46205 +RT @kazahann: & this will be their pretext for Iran 'US Navy emphasized that climate change poses a threat to national security.'https://t.…,27319 +RT @ScienceNews: What’s the cost of climate change for your county? https://t.co/K6dXuOdebc,634943 +"RT @BrittanyBohrer: Brb, writing a poem about climate change. #climatechange #science #poetry #fakenews #alternativefacts https://t.co/RpUs…",895714 +"2016: the year climate change came home: During the hottest year on record, Karl Mathiesen travelled to Tasmania… https://t.co/WwSrJQfvMg",875167 +RT @loop_vanuatu: Pacific countries positive about Fiji leading the global climate change conference in November. https://t.co/PIPRndhkYd,78329 +"RT @xanria_00018: You’re so hot, you must be the cause for global warming. #ALDUBLaborOfLove @jophie30 @asn585",867455 +RT @chloebalaoing: climate change is a global issue that's only getting worse. eating plant based is the least amount of effort that h…,470892 diff --git a/resources/test_with_no_labels.csv b/resources/test_with_no_labels.csv new file mode 100644 index 00000000..33390771 --- /dev/null +++ b/resources/test_with_no_labels.csv @@ -0,0 +1,12246 @@ +message,tweetid +Europe will now be looking to China to make sure that it is not alone in fighting climate change… https://t.co/O7T8rCgwDq,169760 +Combine this with the polling of staffers re climate change and womens' rights and you have a fascist state. https://t.co/ifrm7eexpj,35326 +"The scary, unimpeachable evidence that climate change is already here: https://t.co/yAedqcV9Ki #itstimetochange #climatechange @ZEROCO2_;..",224985 +"@Karoli @morgfair @OsborneInk @dailykos +Putin got to you too Jill ! +Trump doesn't believe in climate change at all +Thinks it's s hoax",476263 +"RT @FakeWillMoore: 'Female orgasms cause global warming!' +-Sarcastic Republican",872928 +RT @nycjim: Trump muzzles employees of several gov’t agencies in effort to suppress info on #climate change & the environment. https://t.co…,75639 +@bmastenbrook yes wrote that in 3rd yr Comp Sci ethics part. Was told by climate change denying Lecturer that I was wrong & marked down.,211536 +RT @climatehawk1: Indonesian farmers weather #climate change w/ conservation agriculture | @IPSNews https://t.co/1NZUCCMlYr…,569434 +RT @guardian: British scientists face a ‘huge hit’ if the US cuts climate change research https://t.co/KlKQnYDXzh,315368 +Aid For Agriculture | Sustainable agriculture and climate change adaptation for small-scale farmers https://t.co/q7IPCP59x9 via @aid4ag,591733 +"There is no climate change, Globalists! https://t.co/s9x0yNkhhS",91983 +Biggest threat to our economy is climate change https://t.co/oLzX7yZ9NF,67249 +RT @100isNow: He's CEO of a company that lied about climate change. Now he'll be Secretary of State. Meet Rex Tillerson…,143459 +RT @VICE: Venice could be swallowed by water within a century thanks to global warming: https://t.co/h9rvoxAoGA https://t.co/RPKeH8zyKo,663535 +"RT @Total_CardsMove: 'It's so warm outside because of climate change.' + +HA don't be naive. We all know it's because the Cubs are in the WS…",20476 +Niggas ask me what my inspiration was I told em global warming you feel me I'm too cozy,815297 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,274098 +RT @sccscot: We welcome recommendations published by MSPs today to improve Scotland's plan to tackle climate change #scotclimate…,30045 +"RT @yajairaxlove: Mid-November & it's hot as hell ... + +But global warming is a hoax oh.",681487 +Record-breaking climate change pushes world into 'uncharted territory' - The Guardian https://t.co/VCPiGKih5U,708966 +RT @AdamsFlaFan: #BigOilOwned House science chairman gets heat in Texas race for being a global warming skeptic https://t.co/uhFBfWJMwo,393689 +RT @thehill: Bill Nye slams CNN for having climate change skeptic on air https://t.co/5u8zGZh9hX https://t.co/DTCDdUGFOb,186705 +Michael Moore calls Trump’s actions on climate change ‘Declaration of War’ https://t.co/zR3aAQekQz #Eco #Green,233977 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,525794 +@LeoDiCaprio 's #BeforeTheFlood is such a masterpiece. Never knew so many things were associated with global warming.,863649 +@injculbard @martinstiff pretty sure I saw an article saying that we'd get more global warming after brexit. Maybe it was on a bus?,315964 +@pharris830 @EarthPlannr I do believe in climate change so what is Ackley are you referring to me being ignorant,588985 +Makes a free movie to raise awareness about climate change: https://t.co/uheSy4WMlF,669979 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,137059 +RT @joshgnosis: Ashby tries to divert questions away from Culleton back to climate change. Journos persist. Roberts walks out.,556915 +How to green the world's deserts and reverse climate change | Allan Savory https://t.co/lYwtQN6ZlQ via @YouTube,951973 +RT @94kristin: let's talk climate change,72939 +RT @mymodernmet: Photographer @thevonwong raises awareness for victims of climate change with epic shoot on a bed of lava…,205796 +"RT @SteveSGoddard: No matter how much Democrats scream and lie and protest and spread their hatred, the global warming scam will always be…",478581 +"RT @TIME: An entire Canadian river vanished due to climate change, researchers say https://t.co/gS6h3j6c9g",453375 +RT @davidsirota: WOW: “You and your friends will die of old age and I’m going to die from climate change.â€ https://t.co/tFswYjwczQ,555551 +RT @lizzydior: i might get out tomorrow and enjoy the global warming,219030 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,546209 +"RT @Khanoisseur: Same day Koch operative Pruitt takes down EPA climate change site, Trump crosses off another Koch wishlist item–exp…",416919 +RT @ajplus: A climate change skeptic says the United States is going to “shredâ€ the UN climate agreement. https://t.co/1hniHRGwNX,433824 +" Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/q98URnVtwC via @ShipsandPorts",621526 +RT @People4Bernie: .@SenSanders and @joshfoxfilm speak about climate change and the global movement to stop it https://t.co/FegVS4OgaA,616108 +Incoming GOP assemblyman believes climate change is good because it hurts 'our enemies' https://t.co/59d4PkHf5I https://t.co/Yjfil1PBno,70943 +"RT @350: Climate change isn't just about global warming, it's also about extreme winter storms like Stella: https://t.co/kM519MurNO",153248 +Dismissing the findings of 97% of climate change scientists is like dismissing the medical community's findings that smoking is bad for you.,854719 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,616444 +RT @DavidRivett1: White House warns Prince Charles against ‘lecturing’ on climate change | New York Post. Or what? War with England? https:…,118418 +"RT @Carbongate: Physicist - CO2 does not cause climate change, it RESPONDS to it - Video https://t.co/lySZb7gClh",846132 +"RT @manny_ottawa: Climate Alarmists stop believing in fraud of Global Warming. +Fat Joe & Steve Aoki called 'climate change EXPERTS' +(…",443106 +"RT @thedailybeast: President Trump's https://t.co/dRGLCKgTXT disappears civil rights, climate change, LGBT rights… ",758958 +"RT @liontornado: millions of British aid 'wasted' on overseas climate change projects https://t.co/YvqyqyYyiP foreign aid, renewable energ…",376412 +RT @kurteichenwald: GOP can deny climate change. They should stop worryingabout coal & start pushing solar so coal miners can get work. htt…,667731 +A third of the world now faces deadly heatwaves as result of climate change .. https://t.co/9jdGH9XkOj #climatechange,222107 +RT @ClimateCentral: A new wave of state bills could allow public schools to teach lies about climate change https://t.co/7CJ6jAsUQR via…,349545 +"RT @morgan_gary: Malcolm Roberts, with 77 votes, takes aim at Australia's @CSIROnews over climate change https://t.co/DeJAFPIGGb",284026 +"Remember they wanted lists of who worked on gender issues, on climate change +Wanted names named +Here's why https://t.co/y7MkRecRO8",564727 +@jacobahernz scientists who study climate change. Not scientists in general like you had said,522979 +RT @vbs269: It's currently 70 degrees and could snow tomorrow and Sunday but global warming isn't real I promise,460970 +RT @annie_blackmore: Not only a colossal windbag but a climate change denier. I hope residents of Jaywick and Mersea are listening to Owen…,371750 +RT @nytimesworld: Much of the fertile land left in Africa is deep in its rain forests; farming there could accelerate climate change. https…,251299 +RT @CBSThisMorning: 'We now have a president in America who does not believe in global warming.' -- @richardbranson https://t.co/EQU4oz2H5q,485211 +"RT @RFStew: Doug Edmeades (Prof. Rowarth's partner in EPA crime) is an 'out' climate change denier. Surprise, surprise. https://t.co/bIwLld…",502976 +@crapo4senate So what are you doing about climate change?,623282 +Scott Pruitt has spent his career denying the science of climate change. He is a dangerous choice to run the EPA https://t.co/fYMsCIi3Cu,217605 +Corals survived caribbean climate change https://t.co/8ucN2vkn84,225330 +"RT @JacobAWohl: Liberals think that 'The science is settled on global warming', yet they deny the science of chromosomes and gender https:/…",58854 +Scientists seek holy grail of climate change: removing CO2 from the atmosphere - CBS News https://t.co/c8DMW3XC6S https://t.co/Un9yCrYjqQ,723671 +@ChelseaClinton I bet you it's the same number that don't believe in climate change. It's very scary they only believe him!,366409 +RT @leahyparks: Thanks for the insightful review & your passion for nature and solving our climate change problems. See photos at:…,704565 +RT @BrothersBarIC: I guess there are some perks to global warming. Open beer gardens in February. https://t.co/ZAAwZYRgYB,655925 +"RT @deray: Because of climate change, the US is relocating the entire town of Isle de Jean Charles, Louisiana. https://t.co/iW1pxEJcKW",717618 +Teens suing U.S. over climate change ask for Exxon's 'Wayne Tracker' emails https://t.co/WMDsGiptcY via @Reuters,922449 +"RT @kylegriffin1: Chinese premier to Trump: 'Fighting climate change is a global consensus, it's not invented by China.' https://t.co/tWsut…",729885 +"RT @JoshFrydenberg: Australian Government today ratified the Paris Agreement, reaffirming commitment to global action on climate change…",599133 +"RT @Shonka_Truck: 65 degrees in November? This isn't awesome, you morons. Earth is absolutely battered mate. Sorry, climate change turns me…",89885 +RT @nynjpaweather: Sharp changes due to cold fronts and low pressure systems isn't a direct relationship to climate changes. https://t.co/e…,249039 +RT @SpiritualSmoker: it's absolutely disgusting how big of a problem climate change it yet nobody seems to give a fuck,440750 +"Solving climate change is a complex topic, but in a single crude brus... #DavidJCMacKay #quotes https://t.co/5rFVuYbU9U",18663 +"RT @BraddJaffy: EPA chief Scott Pruitt says carbon dioxide is not a primary contributor to global warming https://t.co/jr2DSH842b +https://t…",314549 +RT @Slate: Bret Stephens’ first New York Times column is classic climate change denialism: https://t.co/uvLlKLAoAM https://t.co/rjPkTVMF9c,643414 +A river in Canada just turned to piracy because of global warming - Popular Science https://t.co/c4iFCNbo0B,61835 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",659073 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",178597 +Fatih Birol #NYTEnergy '. 2/3 if the climate change will have to come from the energy sector @GE_France @GE_Europe https://t.co/cvLVhHyN1r,152298 +"RT @Rockprincess818: Screw the left. repeal OCare, ignore their global warming religion, limit immigration, slash entitlements. These pe…",581943 +"CHECK OUT THESE WEATHER STORIES https://t.co/LwVzcPO30e Do Not believe the Global warming climate change stories sold by UN, Vatican & Obama",781913 +"RT @rcbregman: The many, many problems that a universal basic income can help solve, from climate change to stress to inequality +https://t…",336886 +RT @ECOHZ: Norwegian oil production and keeping global warming ‘well below 2°C’ https://t.co/DDXQ3WgsKU by @SEIresearch…,624852 +RT @censoj: The Calabar Super Highway creates challenges for climate change especially the tropical forest in the context of the transport…,655116 +RT @WWFScotland: RT if you agree we need to change climate change! #MakeClimateMatter https://t.co/9Y5A28VvZv,5591 +"RT @rhysam: Look forward to reading Malcolm Roberts' report into climate change, though I hear some of the words in yellow crayon are hard…",731620 +RT @SBSNews: US won't budge on climate change despite Indigenous groups and Arctic nations' pleas https://t.co/i7eJRCkD6B,872882 +Scott Pruitt climate change freakout: Calm down and carry on. https://t.co/IcK3khiiti,320393 +RT @JenLucPiquant: The US is relocating an entire town because of climate change. And this is just the beginning https://t.co/PuOVEVM9bR,353463 +US 'forces G20 to drop any mention of climate change' in joint statement https://t.co/WMpxqIT5rn https://t.co/QdVoaXETKn,816508 +"RT @GartrellLinda: RT to all still uninformed about climate change hoax +Top Scientist Resigns Admitting Global Warming Is A Big Scam https:…",636325 +RT @ajplus: Diplomats at the UN global warming summit are very concerned about Trump's stance on climate change. https://t.co/wZ6VbM60K8,53058 +RT @kenklippenstein: Latest reminder that solving climate change would be incomparably less expensive than living with it https://t.co/NZJP…,725589 +I just want to save the planet 😔 climate change is YOUR problem too people!!,693559 +RT @pablorodas: ClimateCentral: Cities from Sydney to Oslo are setting more ambitious targets to cut climate change than their nat… https:/…,66255 +"Soooo was there a search criterion here other than 'scientists who are unconcerned about climate change'? + +https://t.co/NS8K1HAEew",218797 +"RT @justpaulstuff: @charliekirk11 I suppose it was climate change that hit Galveston in 1900 and left up to 12,000 dead. These people…",307092 +@TheLurioReport we had a way to get our guys into orbit... ares v would have flown already. priority has been on global warming sats,188557 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",137392 +RT @Global_Call_: A huge thank you to the thousands of people all over the world who stood for #LandRightsNow to fight climate change. http…,597086 +Nor have you looked at the scientific research on climate change. https://t.co/yVACxuKjE9,96006 +I actually like Hilary because she endorses alternative energy.. Donald says climate change is a hoax by the Chinese..,330509 +RT @TB_Times: Trump administration disbands federal advisory committee on climate change https://t.co/BfXXiu1YUN,78639 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",536231 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,304814 +RT @SustDev: We need a healthy ocean to fight climate change! Register your commitments to #SaveOurOcean https://t.co/bnyOFek3IL https://t…,553696 +@FaceTheNation It is a hoax...hasn't been any global warming in 17 years...fact,455898 +Here's what President Trump's executive order on climate change means for the world https://t.co/mnM8BvsgPW by #CNN… https://t.co/HHl1j1AsAj,745466 +"RT @Alex_Verbeek: �� + +Jane Goodall calls Trump’s climate change agenda ‘immensely depressing’ + +https://t.co/OtlnzQAyhQ +#climate…",846719 +RT @YourTumblrFeed: stop global warming i don’t look good in shorts,722710 +"German economy minister blocks agreement on climate change plan + +By Markus Wacket | November 9 2016 (Reuters) Germa… https://t.co/0TCfaIJoVa",989172 +RT @JuddLegum: 5. As a party the GOP is untethered to reality. There is no 'debate' about whether climate change is real. But most Republic…,492079 +RT @affair_state: Crowding out low-carbon alternatives that are critical to avoid dangerous climate change. #ClimateChange,315869 +"@redwombat101 it's a freak occurrence affecting people who never get asthma, becoming common in Victoria due to climate change effects",32675 +"RT @richardabetts: As far as I can tell, nobody other than the journalist is claiming this to be due to global warming! https://t.co/eECCuv…",959684 +RT @ICN_UK: Holy See calls for 'intergenerational solidarity' to deal with climate change - Independent Catholic News https://t.co/Hcnx7ujc…,641938 +RT @BitsieTulloch: Happy 💀🎃🕸! Want to see something truly scary? @NatGeo & @LeoDiCaprio made a great documentary about global warming: http…,933443 +"To the left wing lunatics promoting global warming, go look outside, dummies #SolarEclipse2017",458401 +"@inferillum @johnpodesta @ChadHGriffin sister, and his views on the pipelines, climate change issues is endgame for me. I can't do it.",554994 +"RT @Green_Footballs: Trump has asked for lists of names of climate change scientists, women’s rights advocates, & now anti-terror officials…",461467 +An Antarctic volcano caused rapid climate change at the end of the last ice age https://t.co/fD2luakE3c,902353 +"RT @UlrichJvV: THIS! 'To find solutions to climate change, we have to look at the bigger picture.' https://t.co/QWWBKfpog6…",178794 +Fire the bums...that will give them a little climate change...no more tax payer funded incomes for #FakeNews source… https://t.co/Fi9x6J4isn,387356 +RT @Crazycook99: Predicting climate change 100 years ago. @AltYelloNatPark @ActualEPAFacts @RogueNASA #ActOnClimate #climatechange https://…,380276 +"RT @michael_w_busch: Reminder, everyone: Extreme heat events are becoming much more frequent due to the climate change we've caused. We…",824355 +Agree people claiming CO2 is positive for plants & global warming is good are absurd. Limited effect in some cases… https://t.co/0XwxGifuZT,685606 +RT @faIIoutbay: do you believe in global warming? rt after voting,85488 +If you haven't watched @LeoDiCaprio climate change documentary 'Before the Flood' you have to! He knows what he's fighting for! ðŸŒðŸŒ🌎🌳🌲,50608 +No shortcuts! Fight climate change for real. Go solar 💚🌎✅ #cleanenergy #renewables #protectmotherearth https://t.co/QNOhkW8ZhZ,447977 +Marrakech test for momentum to fight climate change https://t.co/AM1vMenxnm,943930 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,183083 +Centrica is a world leader for action on climate change https://t.co/gKyCvSKHhM | https://t.co/xgCuk25En6,359626 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,810128 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,380913 +RT @cnni: 'One issue your great-great-great grandchildren will talk about in reference to the Trump years is climate change' https://t.co/7…,516209 +Once you start to look into the guts of climate change you find th... #PeterGarrett #quotation https://t.co/7uYhxUepRe,993538 +"If the website goes dark, years of work we have done on climate change will disappear' says anonymous EPA staffer https://t.co/B7U0XHd4VF",594772 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,22428 +This sounds exactly like his 'China made up global warming' tweet. https://t.co/SShcjH8VjQ,991876 +"Nature, not human-induced climate change, could be cause of up to half of Arctic sea ice loss ???https://t.co/5bqYhKhxcY",504172 +"RT @NimkoAli: Its 2017 and we are about to give DUP power. DUP who are: +- anti-abortion +- anti-LGBT rights +- climate change deniers",283272 +I'm wearing a flight jacket in February in NYC. Life's good. Or global warming 🤷🏻‍♀️,914599 +Rising conservative voices call for climate change action https://t.co/95QwmxBtIP,752129 +"After a really well-written article on Huffington Post, I'm now 100% convinced mankind causes global warming.",701957 +Realizing I can't even make small talk about the weather because then I'll just go off on global warming,858489 +#climatechange The Drum How Twitter and Carbon Brief are helping climate change scientists… https://t.co/RxkuliUOXT… https://t.co/Y9rHTQpSip,221704 +"RT @astro_luca: Just a reminder: global warming is not a political argument but a fact, to which we must react with global policies https:/…",409406 +RT @RLangTip: How to import 100 years of Eurpoean climate change data into R: https://t.co/xqrMLpvqmf #rstats,468372 +Al Gore offers to work with Trump on climate change. Good luck with that. - The Washington Post https://t.co/zIbd0bSx4P,818509 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,204729 +RT @brianschatz: How about every time someone participates in a Bernie vs Hillary argument you talk about climate change?,394896 +"Doctor: if you don't change your ways you'll die young. +Me, thinking of the horrors of climate change awaiting us: that's the idea",397593 +"RT @avansaun: Docs say climate change makes Americans sicker, while #GOP takes away #healthcare and ignores climate https://t.co/ssMsud8ln…",465474 +"RT @radioheadfloyd: Polar vortex shifting due to climate change, extending winter, study finds - The Washington Post https://t.co/iKjoQOumCN",450344 +@DressingCute and then I remembered global warming... never mind I'm packing flip flops,502719 +"RT @Greenpeace: In the era of climate change, Egypt's farmers are learning how to adapt to their drying land https://t.co/bzF8CKe8kz https:…",816499 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,291002 +"RT @ret_ward: In the age of Trump, a climate change libel suit heads to trial https://t.co/5ZfbZF8jN3",301225 +RT @OldWrestlingPic: More proof climate change does exist as hell has frozen over. Great to see @TheJimCornette will do this. A cant mis…,402773 +RT @Seasaver: #InternationalForestDay Kelp forests are disappearing due to climate change. #SOSKelps #IntForestDay ��Kyle McBurnie https://t…,81233 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,642569 +"If we subsidized the switch to clean energy as much as we subsidize big oil, we could EASILY slow or halt climate change. Why aren't we?",900041 +RT @MJRLdeGraaff: Global warming is fake! RT World leaders duped by manipulated global warming data https://t.co/dEsGezkkJK via @MailOnline,67900 +RT @theintercept: Covering disasters like #Harvey while ignoring climate change fails in the most basic duty of journalism. https://t.co/7m…,237131 +RT @KyleKulinski: A state lawmaker in Maine has introduced a bill that would affirm climate change denial as free speech in the state. http…,311030 +RT @scienmag: A new study provides a solid evidence for global warming https://t.co/aGrzioONra https://t.co/rJ5cdjSEoN,975455 +RT @BougieLa: A head of veteran affairs that's not a vet.An anti climate change person to head the EPA.An anti public school person to look…,69232 +"RT @nytimesphoto: How do you visualize climate change? For 8 stories in 5 countries, a NYT photographer captured aerial views.… ",156024 +RT @EmperorDarroux: Scientists copy climate change data in fear of a Trump crackdown https://t.co/A64VqMu4r7,268543 +"RT @JacobAWohl: So far, so good // #MAGA +* Dismantling climate change initiatives. +* Extreme Vetting +*Enforcing regulatory reform +* Protect…",586693 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,709157 +"RT @CBSThisMorning: How climate change is changing the landscape of @YosemiteNPS, ahead on @CBSThisMorning: Saturday. @PBSNature https://t.…",582003 +RT @NishaCarelse: I have a soft spot for animals and nature that's why i firmly believe in climate change^^#ClimateAction🐼🐻🐝🐠🐚🌷🍀🌎,689136 +RT @richardabetts: 'Man-made climate change is real with 'no room for doubt' say experts' https://t.co/Toz0r4QtAd - Mail on Sunday @MailOnl…,953619 +"RT @PeterWSinclair: @KatyTurNBC please compare coverage of 'email' nonsense with climate change, Russian gaming of election. Get back to me…",971710 +"RT @africaprogress: By threatening basic human needs, climate change will be a catalyst for instability, migration and conflict. https://t.…",809619 +RT @BruceBartlett: The problem with NY Times and climate change isn't what you think https://t.co/lV8mRiY9UI https://t.co/G5AzeLtX1U,595597 +RT @mashable: Trump administration begins altering EPA climate change websites https://t.co/bybwPqRf8s,274499 +"RT @EcoInternet3: In generational shift, college Republicans poised to reform party on #climate change: Reuters https://t.co/YPnBGKZug5 #en…",771063 +"Christiana Figueres, former head of the UN climate change body, on climate action that is already showing. https://t.co/TMhjHXglfV",597739 +"Its possible he may be right about climate change, but then again its possible he would have been 242 ripped withou… https://t.co/5GopBWdZpR",110053 +@fernhall22 so scary to think that global warming is happening quickly & our current president doesn't even acknowledge this prob #uwleng110,723442 +RT @Dory: if global warming doesn't exist then why is club penguin shutting down,881554 +Is carbon dioxide a major contributor to global warming? https://t.co/TUzaCZgIP1,704923 +RT @PopSci: How climate change is threatening American agriculture https://t.co/eNm6EByzN9 https://t.co/maAnBrgewA,822018 +RT @guardian: Reindeer shrink as climate change in Arctic puts their food on ice https://t.co/42B1NxCSh9,505322 +"RT @ErikSolheim: Poor countries suffer most from climate change. +Sadly, no surprise there. +New map shows impact on debt default.…",120776 +RT @OllieBarbieri: Country with the 2nd highest greenhouse gas emissions on the planet just elected a climate change denier as president. #…,404757 +RT @latimes: You can now figure out how much you're contributing to climate change https://t.co/UVvBJk9VBL https://t.co/3IAx9ISczr,811053 +The kids suing the government over climate change are our best hope now: https://t.co/bTBoh0hJSJ via @slate,317696 +#EarthToMarrakech: COP22's digital call-to-action on climate change https://t.co/R6HnPut3uq #SoloConectate,734766 +"RT @ProSyn: Like it or not, humanity will remain globally connected, facing common problems like climate change and terrorism https://t.co/…",841196 +RT @srpeatling: . @SenatorHume: 'Perhaps Senator Rice can enlighten us as to which piece of anatomy really does cause climate change.',400682 +"RT @cstclair1: Climate researchers cancel expedition after climate change makes conditions too dangerous +https://t.co/9v0KYYa9o1 https://t.…",649511 +"This is really bad news about the effects of unchecked global warming. Good reading, well researched. https://t.co/16zcrx1w8u",740566 +Friends voting Trump: Do you also not believe in global warming or do you just find other issues to be more important? Genuinely curious,798359 +"RT @haveigotnews: White House claims President Trump’s views on climate change are 'evolving', although they're currently at single-celled…",861578 +Palace to study PH move on climate change deal https://t.co/7toTuoiUNk placating ramos after his blast of duterte,5417 +"No more coffee cuz of global warming!? How am I suppose to drink my whiskey in the morning, plain like some kinda alcoholic?",609894 +RT @thehill: Sanders tears into EPA head for saying CO2 isn't a 'primary contributor' to climate change https://t.co/jlcZmbdU9z https://t.c…,174874 +@realdonaldtrump Sheila Gunn Reid's reports from the UN climate change convention in Morocco https://t.co/QFvq8CCsTk,227482 +RT @SiniErajaa: Most wood energy schemes are a 'disaster' for climate change tells @BBCScienceNews on new @ChathamHouse report https://t.co…,316886 +"A State Dept. climate change page has changed, providing another clue about Trump's approach to climate change… https://t.co/xGCOzQFz3I",112798 +RT @DavidCornDC: This is the brilliant mind people were counting on to persuade Trump not to pull out of the Paris climate change ac…,44507 +RT @barelypolitix: Sweet to go from a president who said climate change is biggest threat to world peace to Trump who recognizes & acts upo…,444423 +"USDA will reprioritize $43 million for safety & restoration efforts in CA, but says limited resources & climate change limit efforts. 2/2",878768 +"It is happening now. Millions of humans are forced to flee armed conflicts, climate change, inequalities, and... https://t.co/p92QkQ3sXm",951095 +"RT @USARedOrchestra: Trump said climate change is a hoax, then warned of its dire effects in app to build sea wall at Irish golf course. +ht…",970445 +RT @KyleHazlewood: By far the largest issue our generation faces is climate change & we just elected someone who thinks it was conjured up…,208227 +RT @JonCozart: But if he doesn't combat global warming there won't be any more snowflakes to make fun of,545402 +"RT @TrickOrTreackle: Denying evidence of climate change is like finding odd spots in your intimate regions, and denying that genital herpes…",498559 +RT @EnvDefenseFund: Spring came early this year – it’s no surprise that climate change is the culprit. https://t.co/Reu3yJRKKp,454769 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,490905 +RT @JustForFun7405: Don't believe global warming is a real thing? Take a look at this https://t.co/Ju0JY2jsKR,343981 +How do we get @realDonaldTrump to believe in climate change?? #BeforetheFlood,891649 +"RT @Reuters: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/XM7qUmahdX https://t.co/NA2yg8JkP9",794296 +12 economic facts on energy and climate change via The Hamilton Project UniversityofChicago Brookings... https://t.co/mVE4fjKBVc,669149 +Trump admits climate change is real in application for sea wall to protect his golf course. https://t.co/hqyeUCNTyz,104997 +RT @comicwade: donald trump refused to believe scientists so they sent in leonardo dicaprio to educate him on climate change and environmen…,54711 +RT @comradewong: Trump trying to speak on climate change = classic Trump word salad. Take a look at this exchange with NYT. https://t.co/yl…,756770 +RT @cnni: The mental health implications of climate change https://t.co/hLkxBxj4YS https://t.co/HcPOm814yW,632633 +@sweetestsara They all get to die of old age when we'll die from climate change,882503 +"India asks developed countries to provide finance, tech support to developing nations to tackle climate change thr… https://t.co/wXkN39q01L",604089 +RT @JunkScience: Gov. Moonbeam burdens poor with higher taxes to solve the imaginary problem of global warming. https://t.co/3uXLbx3KoF,37591 +RT @kwilli1046: Monster snowstorm in Colorado forces postponement of climate change & global warming rally https://t.co/TlQUazU9kj https://…,304290 +.@jaketapper @brianstelter @BretBaier have any of you ever done a story on geoengineering and how it relates to climate change?,167356 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,398680 +"Trump talks climate change with Leo DiCaprio #RedNationRising +https://t.co/pHHGtEXzyC",268980 +"@alroker AL. I might be related to wright brothers, and i think I just solved global warming. I sent emails to everyone!",485450 +RT @AndyBrown1_: Harvey should be the turning point in fighting climate change https://t.co/OrLJc5P3A8,246743 +When are we gonna stop just talking about climate change and actually do something about it,83632 +"RT @NadiaRashd: 'Planetary Health' calls for addressing nexus of human health, environmental sustainability & climate change…",804653 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,614272 +"Food security +and climate change. https://t.co/fIQJspwCbe",699619 +CDC’s canceled climate change conference is back on — thanks to Al Gore https://t.co/WcRwtju9W0,128361 +RT @davidsirota: Florida faces one of the largest hurricanes in history -- and its state government is run by climate change deniers https:…,617614 +"RT @viktor_spas: El Niño on a warming planet may have sparked the Zika epidemic, scientists report - Washington Post… ",756863 +RT @climatehawk1: Sudan farmers work 2 save soils as #climate change brings desert closer | @HannahMcNeish @Guardian…,550624 +"RT @PuffnPuffin: @OtagoGrad @UN long ago blatantly stated the truth about their purpose and that of climate change. + +#GlobalWarming…",971913 +GOP senator on climate change: 'Mankind has actually flourished in warmer temperatures' https://t.co/JrqbTltIZ4 # via @HuffPostPol,597102 +"RT @NYTScience: In the Netherlands, climate change is not a hypothetical or a drag on the economy. It’s an opportunity. https://t.co/1za3lE…",468901 +"[FIRST ON TWITTER].@martinandanar: 4. Results of the United Nations climate change conferences held in Marrakech, Morocco | @dzIQ990",512603 +How climate change will stress the grid and what ISOs are doing about it https://t.co/1Y8PnE3JYZ,869 +"@rnadtown thanks 😢 im not dumping him over global warming, but ya know.",135515 +"RT @noaagov: Political leaders in Sweden take steps to actually address climate change, not dismiss it as a hoax created by China.",471002 +RT @CBCBakerGeorgeT: @EazyMF_E ðŸ˜ Reagan believed in climate change; Lincoln fought for civil rights; Wash. was actually in an armed revolut…,76054 +RT @weermanreinier: Wereldwijd veel meer windmolens = minder global warming = minder zeespiegelstijging = minder windmolens op zee ;-)…,835455 +RT @beforeitsnews: Stopping global warming is the only way to save coral reefs https://t.co/NEBN94ylgs,593722 +"#XRIM #MONEY business + +How do you save Lady Liberty from climate change? https://t.co/VafIjqTu9I https://t.co/XHbPLZ7aYc + +— Climate Chang…",209903 +RT @C_Coolidge: 11/30/2015: IBT: COP21: Full speech by Prince Charles to delegates at climate change talks in Paris https://t.co/MsWiRhv62I,311687 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/WHdOwIvo9X,38624 +Trump argues that reality of climate change depends on how much it might cost business. https://t.co/qpSGCe7EvE https://t.co/gDT29VYE6M,140169 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",50739 +Writing about global climate change I'm going AWFF,134179 +"Farmers may see climate change as a seasonal issue, not long-term. Need awareness to trigger behavioral change @UNDPasiapac @humanaffairsUK",368885 +RT @lofalexandria: #Environment #Conservation #Science https://t.co/UOViK8WWjW US needs to lead the way in combating climate change | Four…,955073 +"RT @laurenduca: @PhilipRucker Harvey is what we can expect from the future of climate change, and American infrastructure is grossl…",642519 +"@EricBlake12 @KHayhoe One example was New York's gov. declaring that Sandy was a response to climate change, with no clear evidence.",849811 +Information is Beautiful: Extreme global warming solutions currently on the table https://t.co/Es5ONwa20H,377434 +"Hello, today I'm going to talk about global warming. I will talk about the definition of global warming, current situation,",61946 +I'm Jordan 14 years of age.I care about climate change. I've been learning about it at my school and it's a really big problem.@LeoDiCaprio,128149 +"RT @cnni: Depression, anxiety, PTSD: The mental impact of climate change https://t.co/omkeRmFZLQ https://t.co/PAlwHsHQhh",545779 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,145812 +"Want to help with conservation, climate change etc? �� #GoVegan + https://t.co/GxRDynjbtO",839220 +RT @Ha_Tanya: 'Nicholas Stern: cost of global warming ‘is worse than I feared’' https://t.co/wbSpI94NsN https://t.co/E7p5rA9CRG,23630 +RT @jalloyd4: The descent into #TrumpHell begins - chooses top #climate change skeptic to lead #Environmental Protection Agency https://t.c…,631635 +"Be careful, Lyin’ Ted Cruz just used a man, I have so powerful that politics is a great wall – we need global warming! I’ve",659284 +@chrispydog Green/Left divorced arguments over global warming from evidence & science to push wind/solar solution against nuclear. Foolish.,636800 +RT @BRAND_urban: 'The real challenge is not climate change but mind change' De wake-up call van Thomas Rau van @rau_architects bij…,246233 +"> Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/3acbETtAES via @ShipsandPorts",224961 +RT @zellieimani: This is who was elected President. A man who believes global warming is a hoax perpetuated by the Chinese. https://t.co/Xy…,227170 +"RT @NatCounterPunch: As the earth gets hotter, the mass media coverage of climate change gets colder. https://t.co/xkhxbO98qC",24500 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",444613 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,173797 +"RT @Fusion: Imagine, if you will, a world where the media covered climate change the way it covers Hillary's emails:…",183700 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,305251 +"RT @QueenAmaaal: global warming really doing crazy things , how is the DMV having 70 degree weather in early February ....",487336 +China to Trump: We didn't make up climate change - Los Angeles Times https://t.co/ws0vJBAyaX,521403 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,741971 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,171732 +RT @earthguardianz: Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/ybpZQPkOLF,354162 +We need to educate local communities about climate change & local strategies to tackle it- Mr Mungwe. @environmentza @Youth_SAIIA @CANIntl,572875 +"@nytpolitics Wow, it speaks?!! Sad that poster child of 'white privilege' is so pathetic. Diabetes caused by 'climate change'....#yikes",337961 +"RT @neilvic: Peatland restoration plan to cut climate change gas emissions: +https://t.co/5wNTEADiN7 #peat #Scotland #climate https://t.co/w…",39327 +RT @joshuasimmons: I don't know how to convince someone climate change poses an existential threat to humanity without news stories or stat…,666488 +But climate change is a total hoax! https://t.co/RkfyBTkAKZ,686787 +future generations will study how inbred morons in the south and Midwest elected a man who denied global warming in 2016,248289 +RT @jawja100: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/otakslZ7Wa,644357 +RT @EELegal: The Rockefeller family have a secret “climate change” plan they are trying to force on the country https://t.co/1xIYA6EEgu,106812 +RT @theecoheroes: Nearly all coral reefs will be ruined by climate change. #environment #climatechange https://t.co/YWBJRByCGV https://t.co…,492300 +RT @ajplus: President Trump plans to cut funding for programs fighting climate change. https://t.co/EkOfXl3Wns,929522 +@JesusSancen gonna tell adrean this proves global warming don't exist,827492 +@kgpetroni @HellaHelton @tmcLAUGHINatyou oh yeah global warming is destroying us dead ass,92888 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,748860 +#Election2016 #SNOBS #Rigged #StrongerTogether #Debate climate change is directly related to global terrorism https://t.co/6SoXS32CqO,544547 +"@bgreene I'm a believer in climate change, Brian, but you work against changing minds comparing short term forecast… https://t.co/TRktTokz24",970736 +"RT @ChrisJZullo: How can Anthony Scaramucci represent administration when he believes in climate change, marriage equality and is pro-choic…",805808 +Bet my bottom dollar that the 'climate change' beloved of establishment 'scientists' has the politically-coded impl… https://t.co/zb8UBaeaAh,320551 +"On climate change and the economy, we're trapped in an idiotic netherworld | Greg Jericho https://t.co/LG4ldNgwLR +We must drop stupidity",210944 +EPA chief Scott Pruitt doubts carbon dioxide the main culprit in global warming https://t.co/DIN3LLvPs8,109631 +RT @David_Ritter: Last night @NaomiAKlein called out the IPA for their destructive nonsense on global warming right there on #qanda https:…,251292 +RT @LionelMedia: It's okay. Jets and cars don't cause global warming. Relax. https://t.co/7gArgQCtCX,170364 +Importance of climate change emergency prep work https://t.co/SbRMvroWi7,948426 +RT @JoshuaMound: Good news: We might all die from infections before global warming gets us. https://t.co/3105a0nvZd,780776 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,693604 +"RT @F1isP1: Toxic air is bigger threat to plants than climate change + +https://t.co/cnWrtI5TKw @CleanAirLondon",799998 +@karlglazebrook @MJIBrown I'd love to see Dumb Nation's Royal Commission on climate change. Judges are trained to evaluate evidence.,373943 +Soils help to combat and adapt to climate change by playing a key role in the carbon cycle https://t.co/KlqoMlrRJ1 via @FAOKnowledge,593149 +"RT @Klimaatactie: system change - not climate change! +the scientist promoting radical climate action, and a Marshall plan for climate…",264289 +"Describes the global warming supporters, actually>>@ClimateOpp",479344 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,820909 +"@djrothkopf Anybody who denies climate change, an existential threat to our society, is not qualified to lead at all at any social level.",492817 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,831733 +https://t.co/KoFxLDRxzy great Sat night documentary to watch. Had no idea the impact of beef consumption on climate change.#BeforetheFlood,405413 +Google:Here is the worst defense of climate change skepticism that you will ever see - Washington Post https://t.co/q8Pam8N1dU,685176 +"@katlivezey @By_Any_Means1 @CalicoFrank Prayers are nice, but combatting climate change is what reality matters.",982870 +VERY important thread about climate change 👇👇 https://t.co/7vo8cs8QNx,92655 +"It's already happening: Hundreds of animals, plants locally extinct due to climate change https://t.co/2wDulkVYCG",929710 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,365298 +CNN News Services: Pivots on climate change https://t.co/ae5xnDwFlS,597644 +"@WSJ @greg_ip They need to move, relocate, the coastal waters are going to continue to rise with global warming and… https://t.co/TmemB9vMlH",908494 +The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/fJ1iUYY7dn,532450 +You need to understand climate change is fact not fiction,431470 +RT @samsteinhp: FWIW. we have probably lost the battle against climate change tonight,261786 +RT @MazzucatoM: The challenge is to think of modern ‘missions’ e.g. around climate change and ’care’. A new ‘direction’ for innovat…,126953 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/PpP0Pu876A #Politics #News",157454 +"Top story: On climate change, Scott Pruitt causes an uproar — and contradicts t… https://t.co/HHpinYfsRl, see more https://t.co/9G5vNeGFfd",911863 +foodtank: The futureoffoodorg & BarillaCFN bring together diverse voices to discuss climate change and our food sy… https://t.co/KSnF7M6uLd?,968491 +"@ladylubbock2 hey Monty, saw your tweet, yep, global warming is freezing us to death.Cycle of Earths climate.Smiles.",341684 +"RT @anchor: Vault built to protect seeds from world-ending scenarios gets flooded after climate change melts ice. ❄️ + +Hear more…",868000 +RT @Reuters: Most Americans want 'aggressive' action on climate change: Reuters/Ipsos poll https://t.co/qSwNJjXOCq,937870 +"iMariaJohnsen: _shirleyst I suggest to create a section about climate change. They're removing information about it, so it's a hot topic to…",196243 +Humans stay shooting themselves in the foot. Maybe global warming is inevitable. It’s the end of the this global weather era too. LOL,749947 +RT @kinghyungwon: why would you leave an entire country in the hands of a man who thinks global warming is a hoax created by china https://…,10201 +"RT @washingtonpost: Without action on climate change, say goodbye to polar bears https://t.co/2skrIj2eTF",861465 +"RT @Schneiderman: With EPA chief @ScottPruittOK deny㏌g basic scientific consensus around CO2 caused climate change, I'm ready to prote…",418775 +@hawkyle88 I remember reading a climate change impact card with wildfires as one scenario. I always thought it was… https://t.co/2Op9f4DA21,561942 +RT @EmperorDarroux: G20 summit shows Trump took U.S. from first to worst on climate change in under a year https://t.co/Ok1INhpRYK,61831 +PM Nawaz orders disbursement of Rs 553m across Pakistan to fight climate change https://t.co/QAQD2srEXL https://t.co/Sq5YLRZZvS,224428 +RT @KurtSchlichter: I am a climate change denier. How long should I spend in jail for my heresy? #caring,470738 +"Blaming everything on global warming +https://t.co/0sRrP7YEYG",694377 +"RT @b9AcE: Somewhere in the anti-science 'debate' on climate change, we seem to have forgotten e.g. acid-rain. Poisonous algae boom, statue…",557591 +"RT @kelkulus: Irony: Florida, a state in danger of being washed away due to rising sea levels, just elected a guy who denies climate change…",504856 +RT @lisang: Macron invites American climate change scientists to come do their research in France. https://t.co/Icj12yfvKr,988980 +President has not been honest in acknowledging limitations of his commitment to the Paris climate change agreement. https://t.co/1xFcdPxDU8,811937 +RT @TheGlobalGoals: TWELVE of our #GlobalGoals are directly linked to climate change. The #ParisAgreement is essential for their succes…,78955 +"As Thatcher understood, Conservatives are not the true climate change deniers | John Gummer https://t.co/5B2a1WtUoW The Guardian World New…",166783 +"Um, monthly temperature averages are always brought to you by 'climate change'. https://t.co/kPvQhdIf6B",2520 +"RT @triodosuk: Now is the time for Governments, businesses & individuals to start taking climate change seriously and react by law…",268418 +RT @AngleseaAC: Humans on the verge of causing Earth’s fastest climate change in 50m years (Poking an angry bear�� #auspol #springst) https:…,911873 +"RT @MisterSchaffner: ��Fuck global warming, my neck is so frio, I'm currently lookin' for +95 Leo��",380946 +"RT @SteveSGoddard: If global warming was a real problem, climate scientists wouldn't have to cheat, lie and tamper with data.",841067 +"DiCaprio's climate change doc wants Alberta to feel very, very bad. https://t.co/dDMOs1OQAI via @huffpostalberta",760341 +@realDonaldTrump When will you acknowledge the possibility that climate change is a real thing and it's negatively… https://t.co/FoAoj9VCJI,872864 +RT @AIANational: Architects are helping cities proactively address the possible dangers from catastrophic climate change impact:…,833511 +"RT @nytimesworld: As negotiations over the world's biggest trade deal are set to begin, Canada wants climate change added https://t.co/gXqN…",795400 +From @voxdotcom - Blue states and cities are pulling an end run around Trump on climate change.… https://t.co/P7ZfMsnuf7,947288 +Thank God global warming isnt real. https://t.co/SeWiEgfczq,97754 +Niggas ask me what my inspiration is I tell em global warming,848402 +Prince Charles co-authors Ladybird climate change book https://t.co/fRLGtSY7Rh https://t.co/BCqLDz5toe,77036 +"This device could read the story of climate change denier, try focusing on solutions.",280663 +RT @BellaFlokarti: Shortsighted Budget 2017 ignores health impacts of climate change https://t.co/kzityLXea2 @IndependentAus,654324 +"RT @msilangil91: Trump named an EPA head who is SUING the EPA on climate change. + +How is meeting w/ Al Gore and Leonardo DiCaprio gonna hel…",105628 +"RT @AUThackeray: While on one hand Centre speaks of Paris Agreement and our commitment to fighting climate change, locally we damage Aarey…",227665 +Scottish Parliament committees question ambition of draft climate change plans | Holyrood Magazine (@holyrooddaily) https://t.co/ny6kr4M2Ni,169839 +"You mean global warming really IS fake? + +https://t.co/rupyvFGiea",334216 +@geeoharee The reply to that tweet joking that it's due to climate change and UV radiation ��,502105 +RT @pablorodas: #climate #p2 RT Energy Department closes office working on climate change abroad. https://t.co/IBU54ifHlz #tcot #2A https:/…,174279 +"RT @EnvDefenseFund: What we do, and don’t, know about the Southeast wildfires and climate change. https://t.co/rZizqBn9NX",193681 +I see canada is not ready for global warming @JustinTrudeau all I see is fire and we are using old planes that can't keep up sad !!,457324 +@ianbremmer @SophiaBush And according to @realDonaldTrump climate change is just a hoax! What a fucking moron!!!!,562231 +RT @WakeUp__America: Retweet if you know climate change is caused by humans & that we need to work towards transforming our energy system a…,254480 +"RT @nickgourevitch: Recent Quinnipiac Poll: +73% of public concerned about climate change +Trump response: +Ban the phrase 'climate change' +ht…",432635 +"@jules_su @realDonaldTrump Jules you're a couple hundred yrs late to worry about climate change, man-up & accept th… https://t.co/d63gkOeK4R",916814 +RT @eugenegu: Hurricane #Irma coming on the heels of Harvey shows that climate change is not a political issue. It's a humanitarian one.,217862 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,454694 +Cities best armed to fight climate change: UN climate chief - Reuters https://t.co/nKMsaPi3eq,512554 +The US has the most people that believe in angels in the world. Yet global warming is too ridiculous of a concept for our new leaders,249736 +RT @yournewswire: Trump forced UN to stop making it compulsory for nations to contribute funding to global climate change programs. https:/…,979904 +RT @christian_aid: Paris Agreement shows 'on climate change we actually are witnessing an era of global cooperation and consensus': https:/…,841942 +Doctors warn climate change threatens public health https://t.co/9dLIczp229 by #sciam via @c0nvey https://t.co/jOLacOku0x,141852 +RT @kristilloyd123: Rahm Emanuel revives deleted EPA climate change webpage https://t.co/7wpo8X3HF3,279014 +RT @GeorgeSerafeim: The 3% of scientific papers that deny climate change? A review found them flawed #climatechange #Sustainability https:…,511552 +Canada’s permafrost is collapsing thanks to climate change https://t.co/LQcB1MK4w8 via @vicenews,502057 +"RT @kurteichenwald: In full page ad in NYT in 2009, @realDonaldTrump called for urgent action on climate change. Which does he believe? htt…",822243 +RT @YarmolukDan: Hopes of mild climate change dashed by new research https://t.co/7rZHcm0jxM #climatechange #environment https://t.co/g3qC3…,586976 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,870627 +RT @trishcahill: “Saying I didn’t know or I was just following orders doesn’t cut it. We’re talking about runaway climate change' Be…,809260 +Doomsday narratives about climate change don't work. But here's what does | Victoria Herrmann https://t.co/IIuz7XRgH9,258979 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,342572 +One of the most troubling ideas about climate change just found new evidence in its favor https://t.co/SM2VIPc1Un,833715 +"Pope, Orthodox leader make climate change appeal to 'heal wounded creation' https://t.co/5XyJ3GCsbk",63205 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,327 +Russian President Vladimir Putin says climate change good for economy https://t.co/Axhp4OxPBm,286773 +RT @HarvardChanSPH: The psychological effects of climate change include 'pre-traumatic stress disorder' says Lise van Susteren https://t.co…,831328 +This obstreperousness from the panjandrums of the scientific establishment elides the query: if climate change is… https://t.co/sLZxeiBW9W,265516 +"RT @NPRinskeep: Reuters/Ipsos: 72% of Americans want 'aggressive action' on climate change, but 'few see it as a priority.'",988076 +RT @Colvinius: The President-Elect of the United States of America on climate change. https://t.co/KaBwT1GY64,92963 +RT @laylamoran: Seriously concerning. Hope we can raise climate change again on the political agenda asap https://t.co/KwuuBG1cza,813089 +RT @thehill: US is only nation to object to G20 climate change statement https://t.co/ZMEa4RtDyC https://t.co/Ch4qs2CGr7,372840 +Judge in environmental activist's trial says climate change is matter of debate https://t.co/zhQngJm3Ov https://t.co/cyqGnBDRyF,460869 +"RT @margokingston1: US withdrawal from climate change agreement should a trigger world-wide boycott of US goods + +https://t.co/yxXNz4pMDz",700900 +RT @JohnGab69864771: @lovingmykids65 Gore left WH. worth 500K now with climate change SCAM 150 million & buying beach front property after…,54421 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,83811 +"RT @qzindia: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change…",932229 +"Science Guy's climate change consequences: +-ice age averted +-Britain got a new wine industry +-White House leaks + + https://t.co/AC4prnYEnb",14731 +RT @MinajestyExotic: if global warming isn't real why did club penguin shut down??,416245 +RT @BernieSanders: Hillary understands climate change is real and creating devastating problems. Trump believes we should expand fossil fue…,91717 +"@ConservationCO @pmaysmith May I ask, 'Can you supply just one paper that proves climate change is real?'",37782 +"RT @colbertlateshow: Donald Trump called global warming “very expensive...bulls**t,â€ which is also the motto for Trump University! #LSSC h…",168950 +RT @kateauty: Ocean heatwave destroys Tasmania's unique underwater jungle | Climate Home - climate change news https://t.co/yPp3rtIZTu via…,791767 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",612474 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,863569 +RT @jaketapper: .@SenJohnMcCain is ‘uncomfortable’ with Pruitt stance on climate change and with enviros rejecting nuclear power. https://t…,833620 +RT @AtelierDanko: #cop7fctc Banning ecigs at a tobacco control conference makes as much sense as banning wind power at a climate change con…,831050 +Vatican urges Trump to reconsider climate change position https://t.co/MKIyRJzXBo by #Reuters via @c0nvey,327186 +RT @kylegriffin1: Energy Secretary Rick Perry just denied that humans are the main cause of climate change https://t.co/Shpm9nzj0g,70954 +These people are hysterical. At this point there are two sides of the climate change debate. Scientists vs. lobbyis… https://t.co/cMUk3vTucE,744906 +"Oh, they'll piss & moan about funding VA & the vets, embassies, education, climate change studies,etc. But can fund… https://t.co/uRS6PmkWU3",410805 +RT @RMetS: Tonight at 17:15 at Durham uni: Lecture on climate change & greenland ice sheet https://t.co/r9xdKPefh2 @GeogDurham https://t.co…,321290 +"@nubeshu, #ouijagame I am bored! I would like to talk about global warming.",560166 +"RT @LOLGOP: Let's see them prove climate change now! + +*iceberg sinks* https://t.co/LWTRLQyqiD",199999 +@luisbaram How bad will climate change have to get before you realise your mistake I wonder? That will be a terrible day for you I think.,520958 +RT @StevenMufson: Trump's energy sec just denied that man-made carbon dioxide is the main driver behind climate change https://t.co/ksLy3qj…,486093 +@bobinglis @republicEn said. Best hope #climate change is man made! So we can fix it with #sustainable #renewables https://t.co/64pNi0jWM1,433768 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,170942 +Two climate sceptics to head EPA & ENERGY in Trump's cabinet. What will this mean in the fight against climate change? #AJNewsGrid,97769 +@globeandmail Fake News global warming lies,574580 +"You are so hot, that scientists, now, blame you for global warming #KateUptonMoveOver #AwesomeBeauty https://t.co/lxR50IRrCG",427983 +River piracy' is the latest weird thing to come out of climate change https://t.co/qPtOjHH2js https://t.co/AH5HXsFnnh,536786 +They don't believe in climate change for a start. https://t.co/CuZb7hxXfH,64572 +RT @likeagirlinc: “Repeat after me: Carbon pollution is causing climate change” by @NexusMediaNews https://t.co/GPr0XQVzSj,932658 +"RT @climatehawk1: For Colombia, the rain bombs of #climate change fell in the dark of night | @robertscribbler https://t.co/VraBDBIezv http…",875904 +"RT @capitalweather: In several decades, water may well be at this level every day (and much higher in storms) due to climate change:…",388184 +RT @vinnycrack: shes thinking about global warming tell your husband https://t.co/LWWFA5aoiC,448406 +"RT @MikeBloomberg: Women play a critical role in leading progress on public health, climate change, economic development, and more.… ",280094 +@JohnKerry @climate_ice @GarnPress @readdoctor trump cannot be allowed to block action on climate change Don't let… https://t.co/gZBDPBVGEr,196585 +"Everglades restoration report shows success, but climate change remains a challenge | Eurekalert https://t.co/FpEWffXGKf",297123 +"@Cris_Paunescu whatever. I don't come on Twitter to argue with climate change deniers 🙄. Monitoring the Environment is my job, so bye. 👋ðŸ»",583405 +"Defy 'Stalinist' global warming rules, says Trump's economic adviser + https://t.co/OtqRO2FRmK",749358 +"RT @JosephKay76: Business-as-usual climate change is heading for 4°C or more warming by 2100, which will create a world of growing uninhabi…",8540 +"RT @seestephsmile: I wish instead of global warming we had global cooling bc I hate the heat + +I know this tweet might be dumb, but idc hate…",92130 +About global warming: https://t.co/zpX7j7oVVW,682459 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,493774 +RT @Newsweek: Arctic climate change study canceled due to—wait for it—climate change https://t.co/jJkj9TRYU7 https://t.co/m8rQK4fmxP,81514 +New York AG: Sec. of State Tillerson used pseudonym 'Wayne Tracker' to discuss climate change while CEO of Exxon… https://t.co/W0c0XAmDYx,937131 +N.J. Republican rebukes Trump on climate change: JONATHAN D. SALANT / https://t.co/Huu4BeSODj - Rep. Frank LoBiondo… https://t.co/LhAUrOQrAP,683822 +RT @Liberiangyal: Lmfao global warming is gonna kill us but these mimosas and day parties in February ain't gonna attend themselves.,181932 +"RT @Craigipedia: @aravosis We'll never tackle climate change, nuclear weapons will proliferate, and science will stagnate... BUT BROS ARE M…",185061 +"RT @kurteichenwald: In full page ad in NYT in 2009, @realDonaldTrump called for urgent action on climate change. Which does he believe? htt…",718905 +@realDonaldTrump @NASA So you support this science which is just as real as climate change. You are some special hypocrite. #ImpeachTrump,467768 +RT @JohnFugelsang: & Donald Trump wants you know this proves NASA's part of that whole Chinese climate change hoax. https://t.co/Mc7346asP1,50360 +World leaders duped by manipulated global warming data https://t.co/or7OaBZ78o via @MailOnline,37282 +RT @DeSmogBlog: The environment is going to take massive hits at a time when the evidence of climate change is right before our eyes https:…,324725 +@LibsNoFun global warming will cause more snowstorms. do you even science bro? heat mixes with... oh just forget it,587613 +RT @ClimateNexus: The female mayors taking on #climate change https://t.co/dg9INmRtda via @ELLESouthAfrica #Women4Climate https://t.co/3CIy…,759085 +"@un_diverted @LaborFAIL @SenatorMRoberts 2000 head of CSIRO said all 5 computer models had failed on global warming, not even a 1c rise 200y",995304 +Industry doc leaked in 1991 revealed aim to “reposition global warming as theory (not fact)” https://t.co/uOVzEKtwti https://t.co/bitRcYSg8K,62430 +RT @business: Inside one Republican's attempt to shift his party on climate change https://t.co/UuMQS6Pny2 https://t.co/OA1gYaKtSt,959472 +RT @MattMcGorry: Important article on need 2 not make #NoDAPL JUST about climate change thus erasing the struggle for Native rights…,134816 +"RT @lilmamaluna: corporations deny existence of climate change, greenhouse gas emissions, environmental racism etc in an effort 2 preserve…",443799 +Trump seems to be changing his mind on climate change https://t.co/ESANxHauoN https://t.co/Vv0o96d6N9,84144 +RT @billoreilly: Putin once again vacationing topless! He's in Siberia snorkeling. So many tropical reefs there. Must be global warming. H…,626595 +8 yrs (or more) of climate change denial will be disastrous to our planet. We will #resist. We will say… https://t.co/Eby3wWeZLT,382192 +RT @ClimateChange36: Study: Believe you can stop climate change and you will - https://t.co/4YaiixVfpc https://t.co/kcGseXR3uJ,249680 +Tillerson used an email alias to discuss climate change while he was Exxon’s chief executive: Wayne Tracker https://t.co/V09M9rn7at,209100 +"RT @brianstorms: This is a great, thought-provoking interview w/ Kim Stanley Robinson on his New York 2140 novel + climate change https://t…",505060 +"RT @blvrrysivan: global warming is finally over, wars are too, I have clear skin and I'm crying https://t.co/zHeLFOhfZN",510212 +@DailyPedantry I don't know which part of what I'm saying or linking to is making you think we don't understand the causes of climate change,454150 +#climatechange Science Magazine Trump's defense chief cites climate change as national… https://t.co/zcVotUy2j1 via… https://t.co/1ve1uhcUyG,900706 +RT @BillDixonish: There is a human child on this airplane meowing in the seat next to me and I no longer care about global warming.,355447 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,415557 +RT @NatureOutlook: How climate change is pushing animal (and human diseases) to new places. https://t.co/0Qvm7H78BA https://t.co/JJJxMfWtUR,431394 +"RT @SafetyPinDaily: The head of #Trump's environment agency just denied humans are to blame for climate change | By @montaukian +https://t…",796461 +"@NYDailyNews That will be super fun amidst a global population boom to 9 billion, a global food shortage, AND climate change. Hooray.",551013 +"Mayors will lead on climate change for political gain, says ex-NYC mayor | @Reuters https://t.co/nrmRWFoVdG https://t.co/YxT4qv9ReA",71926 +"@JimmyOKeefe @SirTimRice Lolllll climate change my foot. Termites emit more than all human activity. +https://t.co/F8bcIxuJCm",260753 +RT @paigeemurrow: Tomorrow's Nov. 1st and it's suppose to be in the 70s but global warming isn't a thing y'all. No need to worry. It's fine…,883406 +RT @iLuvaCuba: Turtle comeback in Cuba at risk from climate change https://t.co/mroIMcQj3x #cuba,973790 +RT @girlziplocked: The rich will do nothing to stop climate change. It falls to us to be heroes. Stop making vague requests to power and st…,673020 +"RT @BirdLife_News: Learn about the Iiwi (pronounced ee-EE-vee), a Hawaiian endemic threatened by climate change and avian malaria… ",573493 +@StephEvz43 my daughters' middle school science teacher is climate change denier. Cited Exxon experts in class.,850799 +Fuck global warming my neck is so frio,596499 +How climate change is already effecting us & projected to get worse �� #ClimateChangeIsReal #climatechange… https://t.co/A6cpvI8kDP,430720 +RT @matthewstoller: This is basically climate change denial applied to housing and political economy. He's learned not to learn. https://t.…,970612 +"RT @AltUSDA_ARS: 1/2 century+ later, we continue to struggle with climate change denial. Deception of tobacco industry proportions! https:/…",645141 +RT @GuardianSustBiz: Aus bus complicit in The Big Lie. Not poss to save Reef without tackling global warming @David_Ritter @GreenpeaceAP ht…,122672 +Burning rain forests has one of the largest impacts to climate change,572212 +Lake Tanganyika hit by climate change and over-fishing https://t.co/oj26xlHMaM,590281 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",185082 +RT @TelegraphNews: Donald Trump's environmental protection chief Scott Pruitt 'not convinced' carbon dioxide causes global warming…,643999 +"RT @19bcarle: If you believe climate change is fake, do your research. If you still then don't believe it is a real thing, please don't con…",276142 +White House calls climate change funding 'a waste of your money' – video https://t.co/9uQks9z4p6,522428 +RT @ShawnFatfield: I refuse to believe that people don't believe in climate change...Which I guess would make me a 'Climate Change Denier D…,242869 +RT @LisaBloom: Rex Tillerson might be Trump's worst cabinet pick. Say no to an oil baron blocking int'l climate change efforts. https://t.c…,859835 +RT @Forbes: Trump's election victory threatens efforts to fight climate change https://t.co/XFHqnWxXWX https://t.co/OE8tpnEKJ1,179238 +RT @F_F_Ryedale: Interesting article on climate change and a post carbon society - https://t.co/oB5dIG6Yly,830861 +"RT @JustinTrudeau: My thanks to Premier McLeod for the meeting today, focused on climate change & building an economy that works for t… ",659715 +"RT @jvagle: Bannon, Senior Counselor to the President on climate change: A Hoax that costs us $4 billion per day. https://t.co/5HXuZyO24g",742214 +"RT @CECHR_UoD: Huffington Post, BuzzFeed & Vice are blazing a new trail on climate change coverage +https://t.co/YLcZZUHr3v https://t.co/oBc…",44768 +RT @nowthisnews: There's no such thing as the climate change 'hiatus' https://t.co/n0YljW8Pwo,156753 +"You know which country narrowly benefits from global warming, even as it and the world suffers overall: Russia… https://t.co/jETqLdqcuF",689726 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",659825 +"Since I'm throwing truthbombs out there, you could've changed the world by fighting climate change but you're blowing it @realDonaldTrump",805236 +RT @ECIU_UK: .@ProfBrianCox hits out at BBC for inviting climate change denier on Radio 4 https://t.co/s7ZvW4tMQy by @horton_official,484743 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,843791 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,401342 +RT @Bob__Hudson: #DUP: I'm watching disgraced leader of a handful of bigoted misogynous climate change deniers who will have UK PM in their…,268165 +RT @DEMsAreBigots: Leftist Militants peddling bullshit to support climate change. The fakenews from DEMs keeps piling up. Boy this is…,450971 +RT @CNNPolitics: Robert F. Kennedy Jr. issues a warning about President Trump's climate change policies https://t.co/XTuMdF5cCp https://t.c…,969588 +RT @tom_burke_47: Significant parts of Australia are already seeing climate change drive up insurance premiums…,493909 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,775367 +"RT @AngelXMen_2017: World leaders should ignore #DontheCon on climate change, says Michael Bloomberg #False45 #ClimateChangeDenier +https:/…",102955 +"Why is it so dark out?' +Laura 'global warming duh'",356595 +"RT @Newsweek: If Donald Trump gets into the White House, 'global warming' could magically disappear. https://t.co/u705y0wlQU",860992 +RT @TheStaggers: Green leaders fear President Donald Trump will threaten progress on climate change https://t.co/1OfsYoJsfJ https://t.co/Rz…,478186 +RT @nick__nobody: This is the important news - Australia is failing on global warming with science haters in government #auspol https://t.…,235851 +"RT @AstroKatie: In case you've been thinking, 'everyone will have to accept that climate change is real when it gets REALLY obvious… ",859554 +"@WSJ 'perspective' ... he's facing criminal charges for deceiving everyone about climate change. +Tillerson ... Go 'perspective' yourself. ��",383555 +industrial smog is climate change.,568803 +@SoundinTheAlarm I said fake spiritual or 'woke' ppl... Meat is in fact bad energy and is the #1 cause of global warming you can't 'love',522415 +"RT @TheKrisWilson: If 'global warming' is real, then why is there an ICE AGE 5?!",493050 +RT @MitchBehna: We don't deny climate change. Its been around for 4 billion years. Leftists think it has only been last 100 years https://t…,568528 +RT @guardiannews: Tony Abbott says 'moral panic' about climate change is 'over the top' https://t.co/P4CDBjoRI4,371027 +RT @stuartvyse: The phrase is 'climate change DENIER.' Now is the time to speak plainly. @thedailybeast https://t.co/SxzzzuzkkX,554560 +"RT @therightarticle: DUP condemned for climate change denial of Trump-style proportions +https://t.co/CaGzVt0HoW",969599 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,70097 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,898167 +Vichit2017Vichit2017.SecretaryRoss on budget cuts for climate change research: “My attitude is the science should … … Vichit2017,483103 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,773089 +"RT @UN: Thursday in NYC: @UN_PGA event on climate change & the #globalgoals https://t.co/BKVCrCg9bC + +Watch live:…",436540 +RT @AdamBandt: Do we really want to be Deputy Sheriff to a racist climate change-denier? Time to ask serious Qs about how slavishly we'll f…,214657 +RT @nowthisnews: Bernie Sanders wants to talk about climate change and income inequality – not 2020 aspirations https://t.co/rASODRTr3T,824653 +RT @jamisonfoser: There’s a simple explanation for this: Donald Trump knows climate change is real but does not give a shit about you. http…,132616 +"RT @YarmolukDan: We only have a 5 percent chance of avoiding ‘dangerous’ global warming, a study finds https://t.co/z87XUUrHW3",962166 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,357327 +Google just notched a big victory in the fight against climate change https://t.co/nUbb8xdKbl via cnbctech,183595 +RT @Slate: You can now watch Leonardo DiCaprio’s climate change doc online for free: https://t.co/xltvx35kZH https://t.co/kPxu1qWjlw,338190 +"We encourage you to come to a climate change activity on Nov. 25th from 3:00PM-5:00PM at Eton Centris, Activity Walk https://t.co/idRCep0iDN",821753 +RT @Reuters: Tillerson used email under pseudonym 'Wayne Tracker' at Exxon to talk climate change: New York attorney general.…,782634 +RT @ReutersLegal: West Coast states to fight climate change even if #DonaldTrump does not https://t.co/ZkPPROhom8 #JerryBrown https://t.co/…,355771 +RT @MyInfidelAnna: If you said bombing Libya was a climate change initiative liberals would defend it. Everyday they show why Trump won 😂😂…,102889 +"US: Donald Trump to undo Obama plan to curb global warming, says EPA chief https://t.co/Z9zBrkwC8H",335544 +Congress declares climate change a national security threat https://t.co/n3e2MOlFdL,417438 +Yrs ago James Lovelock said sea level rise is best climate change indicator as it integrates yr-to-yr variability.… https://t.co/YR3J8C1eFS,99418 +RT @MikeBloomberg: Don't let anyone tell you the US can't reach our Paris climate change goal. We can - and I believe we will. https://t.co…,774033 +Not to mention the public health gains to be made via some climate change solutions - especially a plant based diet… https://t.co/Mu2fnXeUXz,151834 +"RT @Planetary_Sec: �� + +NATO urges global fight against climate change as Trump mulls Paris accord + +https://t.co/2wsa5T8HGi #climate…",573075 +RT @Dengerow: Japan ranks among worst performers in tackling climate change ‹ Japan Today: https://t.co/XUXyjRR0PU?,675187 +"RT @NatGeo: Proposed cuts to the EPA's funding target regional and climate change-oriented initiatives +https://t.co/AhDMwcDk2V",488287 +"Wrong on health care, wrong on climate change https://t.co/4hRBdUv0I0 ��#Opines on #Healthcare",317596 +"RT @commuter_haiku: Watching a special +about climate change. Oh, wait. +This is a window.",848773 +"RT @brendan905: global warming... +is bullshit +all I need... +are my rockabilly tapes +I need my rockabilly tapes +2 be happy +I'm just in that…",177318 +"If any government that pretended to be serious about climate change action really were, fracking would be illegal.… https://t.co/3awUxU6MKh",743728 +"RT @HeatherMorrisTV: @realDonaldTrump plz invest in multiple @TeslaMotors plants. Please us Americans 4 climate change, and produce jobs at…",166017 +The only ones that are affected by climate change are those that sit on the front porch all day and do nothing. https://t.co/dw7tUPVy7A,668192 +"RT @indy100: More likely a lesbian caused Hurricane Harvey than climate change, says right-wing commentator https://t.co/fKiBXP3jny",242646 +".@JSHeappey Congrats on being elected. Please don't let the DUP call the shots on abortion, gay rights or climate change. #DUPdeal",572824 +RT @TheMisterFavor: #NationalGeographic’s climate change documentary with #LeonardoDiCaprio is now on #YouTube! https://t.co/yEA6kinX2A…,516374 +"RT @thefader: After Trump's inauguration, pages about climate change and civil rights were removed from the White House website.… ",569974 +RT @RogueNASA: Trump's pivot on climate change takes shape as federal websites go blank https://t.co/A2z41cG1VJ via @business,368987 +Leonardo Dicaprio FINALLY got his Oscar and used his acceptance speech to talk about climate change… https://t.co/YUcTKzwatI,35989 +RT @ClimateChange24: Just one candidate in Louisiana's Senate runoff embraces climate change facts - Ars Technica https://t.co/U1P5uxevYI,439267 +"RT @fersurre: The president of the United States is trying to force scientists out of talking about climate change, this is wild",425036 +RT @Amy_Siskind: The people Trump blames for making up climate change 👇👇👇 https://t.co/uAr2xcxHbh,978741 +RT @DavidPapp: Trump boosts coal as China takes the lead on climate change https://t.co/t7lCZn2WxB,161511 +"@marclacey @nytimes What a load of crap. By your own admission, climate change is REAL. You are JOURNALISTS. You… https://t.co/wD0gp18MQc",158819 +"RT @Heritage: Lost jobs, higher energy prices: The true cost of Obama's climate change crusade. https://t.co/D5hPHbzrij",225262 +He is professing his love for the dangers of global warming,398562 +Not sure about the global warming. But this Malala is the biggest liberal Hoax ever. What a joke!,940439 +Can we fight climate change with trees and grass? https://t.co/VKjFl4JNe5 https://t.co/vKFDk9b5n1,657384 +RT @Marcia4Science: The National Academy confirms that the 40% rise in CO2 in the last 40 yrs is the main cause of climate change. See http…,348631 +"When I came to Congress, I said I wanted to be the best voice on climate change that I could be. #ActOnClimate https://t.co/JP80l6sUjU",950221 +"RT @TitusNation: 98% scientists proved climate change exists. Some say 2% proves its not real. Okay, If I'm 98% inside your girlfriend did…",390207 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,633050 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,45603 +RT @AP: The Latest: President Trump to announce the US is withdrawing from the Paris climate change accord. https://t.co/f5RvFQzARj,892219 +RT @EMEC_Orkney: Climate change deniers be gone! Lisa MacKenzie explores the facts on global warming: https://t.co/DTxYTflR15…,763551 +@RealDTrump2k16 He Donald. I heard in the fake news that there is a hurricane in Texas? You told us USA has no global warming. Is this fake?,219247 +"RT @ABC: Al Gore's climate change documentary, 'An Inconvenient Truth,' is getting a sequel. https://t.co/h7h4W0Fj1z https://t.co/wiCp0dv0eQ",78219 +RT @foxandfriends: #FOXNews' Chris Wallace calls out former VP Al Gore on global warming claims | @FoxNewsSunday https://t.co/PLHlZc8CBo,106376 +"RT @ZackBornstein: Everyone who voted Trump will die of old age, diabetes, or fireworks, while the rest of us will die from climate change…",664990 +"RT @GhostPanther: Bye bye bank regulations. +Bye bye dealing with climate change. +Bye bye health care. +Bye bye diplomacy. +#electionnight",61204 +"RT @PeteOgden: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/bO9SkZynBc via @Reuters",444521 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",162744 +"RT @QuantumFlux1964: If any global warming scientists could tell me the exact date that I need to add anti-gel agents to my fuel, I'd appre…",10394 +RT @DysonCollege: #PaceU Senior Fellow John Cronin's article for @HuffingtonPost discusses pres-elect Trump stance on climate change:…,107336 +@samjawed65 don't forget the speech :- climate change is not real .. it is just effect of old age . https://t.co/BqEuwoobmp,400960 +RT @NYtitanic1999: @GuyVerhofstadt Boris Johnson thinks no one should tell Donald Trump he's wrong about climate change https://t.co/4Zfs2u…,157258 +RT @altNOAA: 'Denying climate change is dangerous' ~ @BarackObama 45th US President #ActOnClimate #Climate,762553 +"@skamz23 @conely6511 Here's the thing: even if climate change were a hoax (it isn't), cleaning up our air and pollu… https://t.co/a8wAV4VEmD",398197 +RT @BillMoyersHQ: 21 kids are suing Trump over climate change. https://t.co/wqA5WsagM2,513701 +RT @ajoneida: @CNNPolitics Trump pulls USA out of Paris climate deal but pledges to stay engaged on the issue of climate change.…,450710 +@neillmal1 @CNN Do u apply that to abortions? Global warming/ climate change is soooo exaggerated,192494 +RT @CNN: Al Gore presses on with climate change action in the Trump era https://t.co/r4GzRPyvSH https://t.co/QtESIgBEgd,376697 +Speier: Pelosi's credentials on climate change are sterling—got cap and trade thru House (died in Senate) #PelosiSpeierTownhall,466375 +"RT @NPR: In West Pokot County, Kenya, herders are faced with the realities of climate change - and it's brutal. https://t.co/MpLvxZznUO",600809 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,337306 +RT @stilkov: Here's what *you personally* can really do about climate change: Elect people who think it's real,597597 +"RT @AhirShah: I know global politics and climate change are terrifying, but on the plus side at least antibiotic resistance will kill us all",282282 +RT @simondonner: Erasing web pages won't erase climate change.,619747 +Ay girl are you global warming? Cause you're hot af & you're ruining my life,848426 +RT @cfrontlines: #COP22 Indigenous knowledge and its contribution to the climate change knowledge base are attracting increasing attention…,468720 +RT @FREEBIGTEMER: They asked me my inspiration I said global warming https://t.co/fl2F0NMa3O,954154 +Corals die as global warming collides with local weather in the South China Sea https://t.co/8u3JFv3ZpK,544640 +RT @GRI_LSE: Trump administration gouging out their eyes & cutting off their ears to evidence on climate change says @ret_ward https://t.co…,192358 +RT @gingirl: Here is a great graphic that shows the impact of climate change on human health. https://t.co/JUkLXAU39t,768797 +"RT @Scientists4EU: 1) Do 'global challenges' include climate change & fascism? +2) The 'Special relationship' is sycophantism +3) Don't…",817583 +"RT @hulu: .@LeoDiCaprio explores the effects of climate change in @NatGeoChannel's #BeforeTheFlood, now streaming on Hulu.…",864589 +RT @GOVERNING: Report: 33 states are combating climate change and simultaneously growing their economies https://t.co/VYbc87WAqr https://t.…,104220 +RT @RogueNASA: 21 kids and a climate scientist are suing the US government to force it to contend with the threat of climate change https:/…,725297 +"One of our Board of Advisors, @JiminAntarctica, works to save species in Antarctica from climate change. Read more: +https://t.co/QSH8GUmOr6",973859 +RT @CalumetEditions: RT @AMZ0NE A SciFi author explains why we won't solve global warming. ▶https://t.co/LUAEq7ckpt https://t.co/RVb7a0rM…,942269 +RT @handymayhem: how with a straight face can you say that humans can't affect the weather but believe in human induced climate change?,145192 +RT @mikecoulson48: ‘Shell knew’: oil giant's 1991 film warned of climate change danger | Environment | The Guardian https://t.co/dAjXgcEQWY,965827 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,861437 +"How to talk about climate change at a party: Peak Oil: Her. Ugo, you keep joking all the… https://t.co/ZBsmvjhvl1",296887 +"RT @OsmanAkkoca: UN&FAO, MustPressOnCountriesAgriculturalDepartmentsNot2UseChemicalFertilisers2Stop #climate change https://t.co/zpb7azcAfA…",817495 +RT @WorldOfStu: 2/ Just like with global warming and a million other topics: 'we must do something!' is not enough.,273994 +RT @KS1729: the American revolution will be postponed due to global warming... https://t.co/W7mfdMEwUg,799474 +Fighting climate change isn’t a ‘waste of money’ — it’s a good investment https://t.co/devsMabfxF https://t.co/PwtzjIh29M,177872 +"RT @insideclimate: After 40 flights are grounded in heat wave, a window into climate change effects on air travel https://t.co/eSlUmL6WYf",532392 +RT @VeganiaA: @guardian Imagine if we all understood how starvation & climate change are the crisis veganism can solve—while at t…,770417 +Climate change is real. UNDP is working with the Gvt to mitigate the effects of climate change and improve people's… https://t.co/6z88wEcY4W,706812 +Ayo @realDonaldTrump @POTUS global warming is like actually a real thing b,193396 +RT @sabbanms: Quitting UN climate change body could be Trump's quickest exit from Paris deal | الخروج الامريكي من مؤامرة المناخ https://t.c…,863034 +"RT @SteveSGoddard: The global warming is devastating California again today +@JerryBrownGov https://t.co/YeVaBIZhK9",967152 +RT @GeorgeTakei: Yet another disturbing consequence of global warming. https://t.co/DjimOWo0xc,948038 +RT @NRDC: A new poll shows record percentage of Americans are concerned about global warming and say it's caused by human act…,608126 +Analysis: Why Trump wants to kill a popular climate change program - SFGate https://t.co/lweHu2xPbM,412897 +US presidential election creates global warming anxiety https://t.co/32WQoobKvL,970466 +Koalas don't like water but they're being 'driven to drink' by climate change https://t.co/6uj3Wkt9sn,604868 +RT @briannexwest: don't say 'happy earth day' and then eat meat with every meal. animal agriculture is the leading cause of climate change!!,94532 +@FoxNews Its been THAT long ago? DANG time flies! Bet climate change has sum thing to do with it too!,820173 +"RT @latimes: At Exxon, Rex Tillerson reportedly used the alias 'Wayne Tracker' for emails about climate change…",833762 +You can’t ignore climate change and think you have an immigration policy.' https://t.co/Hl3XdGQjLK,604371 +RT @nokia: It's #WorldScienceDay! 49% of our followers say defeating climate change is key for ensuring sustainability. #YourSay,961064 +RT @lof_marie: So how communicate climate change and other environmental issues? Great talk by @estoknes at #balticseafuture https://t.co/…,419528 +"RT @VegNews: We've been waiting a long time, @algore! Thanks for finally inviting #vegan to the climate change discussion! >>…",79982 +"RT @cakeandvikings: The White House website pgs on climate change, LGBT rights, & civil rights already no longer exist just to remind you w…",564369 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,489017 +RT @Hurshal: #climatechange Daily Mail Times subscribers are fleeing in wake of climate change column New……,887262 +"not sure UR buying (( #GOVT #PUSH )) on global warming / climate change / whatever is next to call it +https://t.co/TuOTM9Jv64 @EricTrump",402712 +Inside the renegade Republican movement for tackling climate change https://t.co/CyGs9Pj36Q,963864 +@michaelbd I fear that this is de facto what 'adaptation' to climate change will be,854765 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,331759 +RT @sccscot: 2 (and a bit) weeks left to take action! Add your voice and call on @scotgov to be ambitious on climate change:…,26332 +You're irrelevant. You don't get to push some fantasy myth about 'climate change' down our tax payers wallet. https://t.co/0wEhZ5YnS9,238943 +RT @Starbuck: Children win right to sue US government on actions causing #climate change https://t.co/dxO4c9rOcv https://t.co/bLSK0YTyh4,431614 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,329434 +RT @indigoats: The people voting for trump think global warming is fake but satanic witchcraft is 100% real and I feel hashtag blessed,680680 +RT @ChrisWarcraft: When do we start talking about climate change deniers as long term mass murderers?,39578 +Over 100 scientists from EU to assess challenges posed by climate change at @climateurope #Valencia 5th-7th April… https://t.co/fZcqbMZS0C,670432 +RT @kassiefornash: How do y'all think climate change isn't real??? I'm mind blown at the stupidity,371166 +#ICYMI A new study about the ocean’s heat content in Science Advances supports evidence of global warming:… https://t.co/fMI4RmIhy5,686203 +4 years of straight up inaction on climate change on our part?,118985 +RT @Newsweek: A timeline of every ridiculous thing Trump has said about climate change https://t.co/jvYFt1rEnD https://t.co/uwwFpeFe55,263823 +"Carbon levy could limit impact of climate change, study suggests https://t.co/T3kkEXdHlF",275604 +@CNN What climate change? What comic is that in?,390449 +Trump to sign sweeping rollback of Obama-era climate change rules https://t.co/q2POVcr8GY #Tech https://t.co/yXM5KA99dm,553573 +RT @WorldfNature: How Harvey has shown us the risks of climate change - Houston Chronicle https://t.co/ZCuzxersc9 https://t.co/gNupFkX3B2,159171 +Global March for Science protests call for action on climate change https://t.co/Vi74tytwA7 https://t.co/7NdYAI73bN,172630 +Ready for flooding: Boston analyzes how to tackle climate change https://t.co/79wlRbGddl https://t.co/VV46R6aBHT,867879 +@realjimmattis thank you for putting people over politics by talking about climate change. I hope you will continue to speak the truth,555667 +RT @thehill: Sanders: Trump needs to be confronted about realities of climate change https://t.co/qW8KeneSLK https://t.co/piKHKlQ1NJ,107607 +"RT @adamjohnsonNYC: There were 7 questions about Russia in the debates & zero about climate change, drugs, poverty, LGBTQ, or education…",671813 +"TanSat: China launches climate change monitoring satellite +https://t.co/gHFzfPYvWA https://t.co/XUbThxjavl",29467 +RT @washingtonpost: U.S. allies plan to give Trump an earful on climate change at G-7 summit https://t.co/Lkwv78x8gW,424298 +"RT @vannsmole: This entire climate change nonsense has become a religion +There4 making it U can't criticize or disagree + +Just like…",247885 +"The talks on climate change during of the #G7Taormina summit in Taormina, Italy were unsatisfactory, said German ch… https://t.co/MZEnHtAma2",66440 +Call it taking care of the land. Call it good business sense. Just don't call it climate change. https://t.co/YPt924nruw,794065 +"RT @daniecal: Ya know, yt ppl idk if y'all are gonna really make it with this whole global warming & sun exposure thing getting w…",383354 +"@tt9m As they grapple with unempt, no pensions, crap healthcare, war, climate change, they'll be appalled she didn'… https://t.co/sN39Al7U1l",73974 +"Disheartening, Trump seeks fast exit from climate deal. He still believes global warming is a hoax. Wow!!!!!",597362 +RT @cultofnix: Imagine the art we shall make from starved corpses of relatives right as we go extinct from climate change and shit…,873587 +"RT @OccuWorld: Going green in China, where climate change isn’t considered a hoax https://t.co/S2aROuO9uV",755011 +Addressing global climate change demands an immediate and ambitious action by governments and industries. That is... https://t.co/DvvhN06ZQH,736998 +RT @energyenviro: Energy Day comes as major companies lead the fight against climate change - https://t.co/AnGcVFfeiL #MajorCompanies #Clim…,117248 +RT @JoyceCarolOates: Still wondering why if N Y Times feels need to be 'fair & balanced' w/ climate change denial why not Holocaust denial?…,692018 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,813376 +RT @washingtonpost: CDC abruptly cancels long-planned conference on climate change and health https://t.co/RpjZ1H63n4,834684 +JJN report reveals devastating impact of climate change on livelihoods https://t.co/28E5BsXPwb,546314 +@phlogga @MickKime Because it's obviously a climate change denier conference. This will be some propaganda org fund… https://t.co/WQQTRtq2bF,876985 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,207998 +RT @armandodkos: Well Bolton certainly reduces my climate change concern - we're all gonna glow anyway.,110340 +"RT @narendramodi: Be it bringing more tourists to J&K, improving connectivity or mitigating climate change, Chenani-Nashri Tunnel offers ma…",715656 +RT @verge: Google just notched a big victory in the fight against climate change https://t.co/oDJ3yytW4N https://t.co/bFNFVrX8lH,88611 +RT @MattBors: Florida. Half the state's going to disappear in ten years due to global warming. They're going for the guy who says it's a Ch…,716533 +"RT @False_Nobody: -Denying climate change is anti-science, deniers should be thrown in prison. + +-WHAT DO YOU MEAN YOU THINK RACE ISN'T A SO…",269830 +RT @TR_Foundation: How is #Pakistan cricketer-turned-politician #ImranKhan fighting climate change? A 'billion trees' at a time.…,661339 +@TEN_GOP MT: CNN's Brian Stelter destroyed by Weather Channel founder John Coleman over global warming. Deserves en… https://t.co/eJeIgOMTJO,96822 +"RT @Bentler: https://t.co/84ZOOqKuCU +Gallup poll shows more Americans than ever are concerned about climate change +#climate #poll https://t…",101833 +washingtonpost: The Energy 202: Macron tried to soften Trump's stance on climate change. Others have failed. https://t.co/NqWZXgGxJl,548873 +"RT @COP22: 'The effects of climate change are going to intensify. Time is against us' Ban Ki Moon, Secretary General @UN https://t.co/VsUt5…",432375 +RT @NatGeoChannel: Tonight @POTUS will be joined by @LeoDiCaprio for a conversation on combating climate change:…,963943 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",105738 +RT @katha_nina: A child rights approach to climate change is long overdue https://t.co/2w14rozfuD by @duycks @ciel_tweets,814952 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,933283 +RT @AFP: Study of ancient penguin poo reveals Antarctic colony's survival is related to volcanic activity not climate change…,476266 +"RT @danmericaCNN: Bernie Sanders on a call with Clinton supporters: 'Literally, in terms of climate change, the future of the planet is at…",713154 +These Republicans are challenging Trump on climate change https://t.co/0syDbdwCPD #NYPost #NewYorkPost,729178 +"RT @LOLGOP: Done whining on Twitter yet, Mr. President? Because a storm super-charged by climate change you want to make worse is about to…",739461 +"@alayarochelle @lilflower__ no, she's saying that people who aren't vegan have no right to complain about global warming, which is true",46459 +RT @Independent: Science loses out to uninformed opinion on climate change – yet again https://t.co/v5zANyjRHS,564711 +@SenWarren @realDonaldTrump Such a poor decision. Science has proven climate change. The entire world agrees there'… https://t.co/RJY7WxGbzW,9295 +#LombardOdier to launch climate change bond fund. Read more: https://t.co/Gql4YvK0FK,89381 +RT @theecoheroes: Stephen Hawking has a message for Trump: Don't ignore climate change #environment #climatechange…,997108 +Get your WH sharables now before the site is revamped to say big oil is our friend and climate change is hoax. https://t.co/ARQRnS2SDA,434160 +Are we ready to take the necessary steps to reduce climate change through revolutionary energy evolution? #COP22,632113 +RT @NiaAmari__: When everyone's glad it's 80 degree weather in October but you can't stop thinking about global warming https://t.co/g7oaRt…,349480 +"@Diplomat655 @WiserThanIWasB4 @LuEleison @elusivemoby Actually made it for the climate change video they made. +Frie… https://t.co/ECfITk1FPo",981685 +RT @NewYorker: Avoiding talk of climate change has become an apparent point of pride in the Trump Administration:…,891296 +RT @SteveSGoddard: Why do people believe in global warming? Because they have had propaganda shoved down their throats for 30 years. Nothin…,795819 +"Depression, anxiety, PTSD: The mental impact of climate change - CNN @KatyTurNBC @JoyAnnReid @TimmonsRoberts https://t.co/P4fNMW0Mf7",22856 +"RT @codinghorror: I guess the good news is that with global warming accelerating on Trump's watch, Florida will be less of a factor in futu…",176472 +"RT @ScienceMarchDC: Breaking: EPA Chief says carbon dioxide not a primary contributor to global warming, denies scientific consensus. https…",760306 +Support for climate change bill is haunting a California Republican leader - The Mercury News https://t.co/YPEYvqG2Jq,364909 +RT @Stuff_by_Craig: Great article on research and genetic study to future-proof plant species from climate change:…,593804 +RT @NotJoshEarnest: POTUS was briefed on the climate change attacks that took place around the world yesterday,307467 +RT @mitchellvii: Did the climate change before man? Then how do you know it's our fault now? Post hoc fallacy. Google it.,610642 +"RT @fiscal_penalty: Despite the global warming, Alaska has had very little, if any, warming since 1977 (except Barrow), as shown below: htt…",129662 +"RT @ReutersPolitics: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/JNI0o39DIU https://t.co/paRvIdkV3A",569359 +...evidence that global warming is less pronounced than predicted.' https://t.co/aM0B66bMt5,561862 +RT @dailykos: Rex Tillerson should get no vote until we see what he's hiding on climate change https://t.co/hbzQjgfiPT,423167 +"@THE_James_Champ @kromatuss guys, snow isn't real. Government fakes it to promote global warming. Snow scary, warm good.",840583 +RT @KurtSchlichter: Can a climate change-loving liberal explain why a massive program like the Paris Accords should be imposed on us w/o a…,683275 +RT @iansomerhalder: @LeoDiCaprio Im so grateful for the time you took to tell the important story of climate change in #BeforetheFlood Than…,190548 +"And above all, 3) TALK TO YOUR POLITICIANS. Do not let this anti-global climate change conspiracy continue to infect our gov't.",958471 +RT @povpaul: It's literally 75° outside and it's november 1st global warming can https://t.co/Lk6B7zUZtp,740052 +"@SteveKopack @People4Bernie He also claims Obama bugged him, climate change is an elaborate hoax, & no one is more Christian than he...so...",631040 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,976028 +RT @EnviroVic: 'Astounding': Shifting storms under #climate change to worsen coastal perils (Yet fed govt totally defunded #NCCARF) https:/…,990527 +@CBSNews there's plenty of evidence to be skeptical over climate change.,58802 +RT @ForeignAffairs: The coming revolution in energy production could make fighting climate change more difficult. https://t.co/brBpifWzJ6,406698 +RT @SenKamalaHarris: Appointing an EPA chief who is a climate change denier is an attack on science. #ScienceMarch,166458 +"From Friday, more fiery back and forth between Exxon & NY's AG Schneiderman in climate change info probe: https://t.co/cW1tsPUBwo",758638 +RT @MacleansMag: Things will get tricky for the Liberal government if the Trump White House rolls back efforts on climate change. https://t…,864544 +Do you doubt that human caused climate change is real? Do you doubt there will be an eclipse this month? Same method produced both facts,937863 +RT @ConservationOrg: Forests are crucial for fighting climate change. Protect an acre now & @SCJohnson will match it…,839640 +"@AsraNomani If you are pro-choice, pro-gay marriage, & an accepter of the reality of anthropogenic climate change, how could U vote 4 Trump?",43118 +"RT @IvanVos1: Britney combined global warming and Lady Gaga into one tweet, WHEN WILL YOUR FAVE?",554437 +"RT @chriscom77: The DUP who oppose abortion for rape victims,deny climate change and insist fossils were placed by Satan as a test…",24114 +"RT @qzindia: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change…",594987 +RT @prrsimons: Hats off to @FionaPattenMLC taking a modern stance on climate change voting yes to strengthen Vic's Climate laws #ActOnClima…,2994 +RT @ProtestPics: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/Jb6OQITAvS,983985 +"@JeffMadsenobv @JayFarber @ToddBrunson the biggest threat to our country is the southern border, not climate change. THATS why Trump won",738824 +RT @SenSanders: The Dakota Access Pipeline would be a huge blow to our fight against climate change. #NoDAPL https://t.co/47m6yUu4m5,578675 +"the harms of climate change, which are unfolding slowly and may be partly undone, the detonation of a nuclear weapon will be irreversible.",246789 +"RT @RichardMunang: Laws to tackle climate change exceed 1,200 worldwide: study https://t.co/6LhSEg0ux0 via @Reuters",459925 +NY AG says Tillerson used alias in emails on climate change https://t.co/wO99b4V1Gs,723464 +@DaveEBrooks12 That's why they changed it to climate change in order to cover their lying asses,939557 +"In my opinion,climate change is nothing more than a way 2 remove our money from our pockets 4 their greeny projects… https://t.co/uhlZaSzFmb",962770 +"RT @jonfavs: A lot of people are sharing this terrifying piece on climate change by @dwallacewells, which you should read: https://t.co/094…",432283 +"this was an ironic 11:11 tweet. climate change is real, it's basically a challenge from Amon-Ra to see if we can not annihilate ourselves",295172 +Trump to purge climate change from federal government https://t.co/Yk61OBsxgV,354011 +RT @matt_costakis: Sex is intimate and sacred. Your body is a temple and shouldn't be shared with anyone who doesn't believe climate change…,917171 +RT @neighbour_s: If you care about climate change don't miss tonight's gripping doco on its impact on global security…,368282 +RT @FT: Saudi Arabia will stick to climate change pledges https://t.co/Cq2sVO7X1f,799357 +"RT @Newsweek: House Republicans buck Trump, call for climate change solutions https://t.co/z4RVyuronv https://t.co/ObL4Fxq0xG",218943 +"RT @nytimes: Scott Pruitt, the head of the EPA, said that carbon dioxide was not a primary contributor to global warming… ",354686 +RT @9GAGTweets: Solution to global warming https://t.co/zhELRBsDYC,180377 +#ImStillNotOver Trump's view on climate change. #climatechange @ISF_United @ISFCrews @iansomerhalder #TrumpPence16 @MELANIATRUMP @CNN,979574 +RT @kylegriffin1: Scott Pruitt says he's challenging scientists to hold a TV debate over whether climate change is a threat. https://t.co/n…,457365 +RT @terroirguy: Freeze injury and climate change are real threats. Vineyards being impacted in Europe with frost risk and damage. https://t…,855074 +"@CurtisDvorak Denying climate change, opposing LGBTQ rights, banning Muslims, defunding Planned Parenthood, corruption... It goes on.",527673 +@JamesSantelli The best part is the listing for the global warming article!!! Trump is such an idiot!,785117 +"...#Harvey s what climate change looks like in a world ...doesn’t want to take climate change seriously.' +https://t.co/h3cfN9JwBP",973760 +RT @scholarlydancer: They call this type of winter wonderland global warming.,928581 +RT @PlanetGreen: How climate change is stripping the Caribbean of its prized coral reefs https://t.co/DbL4KNokWC https://t.co/U5UQ69YSh3,56229 +RT @hungrypa: @Gunz68 เกิดจาก global warming ซึ่งส่วนใหญ่มาจากฝีมือมนุษย์ค่ะ ทำให้ระบบนิเวศทั่วโลกเปลี่ยนแปลงไปค่ะ,489025 +RT @theblaze: Alarmists say global warming to blame for ‘record’ tick population — but there’s one massive problem…,43190 +RT @MotherJones: The polar vortex is back—is global warming playing a role? https://t.co/uGv4I3YBkZ https://t.co/Exukpenkh9,563462 +RT @ACCIONA_EN: The time is now to stop climate change. We teamed up with National Geographic to fight climate change #YEARSproject…,972585 +RT @kurteichenwald: Russia hack deniers & climate change deniers have a lot in common. Either theyre corrupt or they refuse 2 accept univer…,593576 +"@RSBNetwork Lets hope you deal with it, when food cost rises,gas,global warming,hate,violence,children being separated,families hungry! ðŸ™",327139 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,615819 +RT @thehill: Schwarzenegger launches project to help lawmakers challenge Trump on climate change https://t.co/9xkz5ngJrr https://t.co/FT3CA…,538945 +RT @CNTraveler: 10 places to visit before they disappear due to climate change https://t.co/wK4A7T7VUk https://t.co/IuZ9XNx0eI,967095 +"ET channeling on chemtrails, climate change, whistleblowers and alternative solutions https://t.co/oFLqv41HlY",993681 +Antarctic Ice Sheet has impact on climate change,568295 +@realDonaldTrump Hey Trump are you still going to deny climate change when the rising sea level engulfs your Southern White House,969003 +@TomasFriedhoff @SymoneDSanders @PoppyHarlowCNN @brianstelter We will never get climate change with Trump.,644408 +President Trump signed an executive order combating Obama's efforts in regards to climate change. #J2150AI,956047 +"Trump since the election: +Humans are causing global warming +Amnesty for Dreamers +Pro-TPP ambassador to China + +#MAGA #TrumpTransition",525657 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",56665 +"RT @RT_America: Carbon dioxide not ‘primary contributor’ to global warming, #EPA chief says https://t.co/vH5OFqsIe6 https://t.co/8CZhPMrxO7",617655 +"@AnnCoulter you were right, climate change isnt real, it's the gays you should be afraid of https://t.co/PVAZKiNlke",838447 +RT @BobGorovoi: @chriskkenny Where is evidence that any 'action on climate change' will have any effect on climate change?,931195 +RT @politico: Badlands National Park climate change tweets deleted https://t.co/tF6ipwNmrR https://t.co/f8WHVuwjNV,577981 +"RT @Bentler: https://t.co/Y9BH6AuRG1 +Emma Thompson says she wants people to ‘shout loudly’ about climate change +#climate…",870874 +"RT @BatsBallsBoots: @Scottie1797 Just want to know, why holacaust deniers can face jail, but climate change and evolution deniers are free…",480174 +RT @ClimateCentral: You can watch Leonardo DiCaprio's climate change documentary for free on YouTube https://t.co/EU3GenI1RK via…,695290 +RT @Oregonian: Tillerson reportedly used email alias to discuss climate change at Exxon https://t.co/j3tnvsOYmF https://t.co/wusA16xmnU,645362 +Trump has climate change denial | Missoulian in Missoula https://t.co/rQXS77T0RF,475332 +RT @EricHolthaus: Keep in mind there are just three years left until the world locks in dangerous climate change & possible collapse:…,78586 +"@guardian: #Rio's famous beaches take battering as scientists issue climate change warning https://t.co/HxwsuF4bSs' +#Brazil @ABC @r",792010 +64 and sunny to 32 and snowy. climate change is rad ��,600177 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,579760 +"RT @JSCCounterPunch: The Queen of Fracking will 'combat climate change?' It's one thing to campaign for HRC, Bernie, another to lie on h…",733217 +RT @guardianeco: One Nation senator joins new world order of climate change denial https://t.co/fvivQbpS9Z,130633 +@aim2bgreat @IBTimesUK more global warming :-o,246139 +----> Researchers say we have three years to act on climate change before it’s too late https://t.co/TiiWlfYYv3,83570 +RT @DrCReinhart: Still think global warming isn't real?lOnce again we are set to have the hottest year on record https://t.co/IAhQwvaxN1 vi…,233932 +"RT @chrisdmytriw1: Everyone who thinks climate change is a hoax does not get an air conditioner. +#ClimateChangeSummerTips",65704 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,720328 +Moroccan vault preserves seeds if climate change or doomsday sparks crisis https://t.co/GK7ZUOasaZ,182815 +RT @c40cities: We're proud of Mayor @FrankJensenKBH's leadership on climate change as Copenhagen prepares for the future through a…,992508 +@MintMilana Maybe you should go back to Uzbekistan? I'm sure that they believe in climate change! LOL!,582996 +"RT @cdelbrocco: OMG! +Donald Trump wants to shut off an orbiting space camera that monitors climate change https://t.co/DGyVfjQ1ue",712952 +Bill Nye Destroys climate change-denying Trump adviser William Happer https://t.co/EQ1rWyQNnP,217793 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,960416 +Here's your #EarthWeek Stat: A tree can absorb up to 48 lb. of carbon dioxide a year. Plant a tree. Reduce global warming.,387077 +RT @SteveSGoddard: New Mexico is being hit hard by the global warming again today https://t.co/3ePRn0it2W,62147 +"TEEB would be even cooler if directly applied to countries. Personally, Somalia would benefit from a climate change intervention/policy.",158157 +"RT @S_Kanzaki_: Me: Thank you. +Subaru: (clapping) +Aikomi: +Aikomi: …The presentation was supposed to be on global warming, not why you hate…",16196 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,211659 +Just wasted an hour of my life arguing about climate change to someone who doesn't think it's real #resist #iwillbeanalcoholicwhenthisisover,368185 +Paris Agreement on climate change: US withdraws as Trump calls it 'unfair'' via FOX NEWS https://t.co/E1xTN6gNOm https://t.co/Occz6cepdm,681044 +RT @laurahelmuth: “Lamar Smith is the major impediment to anything being done on climate change in Congress' @Reinlwapo on TX race https://…,368951 +RT @Blowjobshire: someone who denies climate change simply cannot be the next president of the USA that would be a literal disaster for eve…,200078 +RT @mcnees: Rumored Secretary of State candidate Dana Rohrabacher thinks global warming and TOOTH DECAY are conspiracies to exp…,947641 +"@TheSafestSpace That headline, isn't that exacly what global warming deniers usually say?",591630 +@rjparry @trumpbigregrets oDbama believes in climate change n gave a phukk about our pollinators,60500 +RT @EcoInternet3: The link between hurricanes and #climate change: Yale Climate Connections https://t.co/1DTQE4iLIT #environment More: http…,257401 +RT @ClaraJeffery: 1/ California fighting Trump on climate change: https://t.co/By94iohBZG,478713 +@MAHAMOSA @NissanElectric But these dumb republicans think just because it snowed in a city and global warming is fake,735450 +"RT @Rendon63rd: With #AB617 and our action on climate change, Calif. is once again showing you can succeed by being visionary & pra…",633125 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",610055 +EPA head Scott Pruitt denies that carbon dioxide causes global warming' https://t.co/bzM4LU0YMe #EPA #Pruitt #globalwarming #carbondioxide,632978 +Pakistan ratifies Paris Agreement to fight global warming https://t.co/SHsiVcunEf,365076 +"Willfully ignoring 99% agreement on climate change is not 'winning', it's malpractice. Cynical, short-sighted abdic… https://t.co/pZhVpcrPR0",875539 +Fuck you guys global warming is serious as hell.,758419 +RT @nudesfornathan: lmao global warming is real,709088 +A massive #climate #change study is canceled ... because of climate change @CNN https://t.co/2GgAt1C592,768261 +Tech and cash is not enough when it comes to health and climate change https://t.co/cJFeF6kSVc,209509 +no child left behind quotes https://t.co/oiL3G7jbBg #global warming speech introduction,127305 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,121053 +RT @Londonyuki: Kind of like...evolution? Or climate change? Or does science end with gender issues? https://t.co/Didy4LRxH7,19558 +"RT @weknowwhatsbest: New California Senator Kamala Harris questioned the CIA nominee on climate change. +Spying on climate change? Yep, a D…",801712 +"@TwitchyTeam The people who believe in man made climate change have to be the dumbest, most ignorant people on the planet!!!",837454 +Right-sizing' indeed. Their use of language no different from the way Republicans deny climate change is caused by… https://t.co/4BIJ6JIw7A,541857 +BBC News - G7 talks: Trump isolated over Paris climate change deal https://t.co/KukgcSfGWr,11629 +"In Trump era, cities must amp up battle vs climate change – official – Daily Mail https://t.co/JNbcmwqEIl Slayte - https://t.co/NWcuTXxFDb",10359 +RT @Cath_Braun: 'Once the people are convinced [of climate change] the politicians will fall in line very quickly' https://t.co/QQHDoWlxq2…,66175 +RT @blakehounshell: So the Energy Department’s climate office has banned the use of the phrase “climate change” https://t.co/QKmpkfjgNQ,23284 +RT @nancymarie4159: @peddoc63 Uh oh. Another crazed Muslim who just can't deal with climate change! I'm out of sympathy for Europe. The…,211731 +"RT @samsteinhp: rick perry no longer wants to eliminate the DoE + +scott pruitt is now more open to the concept of global warming https://t.c…",32828 +"RT @COP22: HE Danny Rollen Faure, #Seychelles: “The Republic of Seychelles views climate change as an existential threatâ€ https://t.co/F2Sh…",300306 +"Human activity continues to engender climate change .@nytopinion, threatening credibility and leading to inevitable… https://t.co/XaoffEZMuj",798465 +RT @dodo: This is one sad effect of climate change: it's killing reindeer. https://t.co/VxWrHWoVP5,429350 +"RT @TessatTys: Demand Trump adm add LGBT rights, climate change & civil rights back 2list of issues on https://t.co/jugZv6ToMA site https:/…",96211 +Abraham Hicks - What about climate change and global warming?: https://t.co/ny7NGVaNhv via @YouTube,287991 +"RT @make5calls: Birther, bigot, and climate change denier — How is this guy an appointee?!? + +OPPOSE NOMINATION OF SAM CLOVIS +☎️:…",580986 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,782530 +"@Gene_Master Why is th RAW DATA kept private, anyone should be able to verify the accuracy of climate change stats. Jansen please answer?",446353 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,404665 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,971456 +@yoitstristian global climate change is real,503290 +#AdoftheDay: Al Gore's stirring new climate change ad calls on world leaders. https://t.co/DOiHCQTdl6 https://t.co/eM6NoxUK9b,675704 +RT @glynmoody: #G20: Leaders' statement reflects Trump position on climate change - - https://t.co/ghqe6z8VY1 US goes down in history for s…,225076 +I kinda want this country to be around so yeah climate change is a top priority for me,593471 +"Is climate change real?' + +No.",481167 +"RT @fredguterl: If Trump does something about global warming, it will have 'tangible benefits' for US businesses @aisneed @sciam https://t.…",161297 +RT @SavageNation: World leaders duped by manipulated global warming data... https://t.co/Kd0KOlJ1G1,270003 +RT @a35362: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming…,411180 +RT @climatehawk1: 8 in 10 people now see #climate change as “catastrophic risk' | @lauriegoering @alertnet https://t.co/UUwaUOf3oP…,271499 +RT @nytopinion: The most important action the U.S. has taken to address climate change is under threat https://t.co/U3WGYLb6Wf https://t.co…,672109 +RT @PolitiFact: Is it true that Ron Johnson doesn't believe people contribute to climate change? Mostly. https://t.co/dfsqhlmm5v,602150 +Latest @beisgovuk public attitude tacker survey results on 'causes of climate change'... https://t.co/4sJAErfR4V,575468 +RT @BBCGaryR: A tax to park your car at work. 1 idea being considered by ministers in a plan to help meet Scotland's climate change targets…,181408 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/PDyuJEZNay,161726 +"He's filled his transition team with fossil fuel industry stalwarts & lobbyists, while continueing to deny climate change is real. Scary.",977902 +@calmdownnate yay global warming ._.,788232 +"Looking fwd to speak today at @ColumbiaSJI on #landrights lawyering in the age of climate change & #Trump + +https://t.co/j0TwvDbpn5",725006 +“Will global warming help drive record election turnout?â€ by @climateprogress https://t.co/PEcabzBhxe,722658 +The American public understands that climate change is real and caused by humans. It's time to #ActOnClimate.… https://t.co/6edezxbw8z,600224 +"Fox News Tucker Carlson implodes as Bill Nye The Science Guy schooled him on climate change (VIDEO) https://t.co/AnUxh0Tce9 + #UniteBlue",793349 +"RT @SharonJ44257163: Donald Trump calls climate change a hoax, but worries it could hurt his golf course https://t.co/Zip6b01JWA",451620 +RT @KatyTurNBC: Trump budget cuts all $$ for climate change research and international climate change programs. All of it. https://t.co/W1…,424135 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",88627 +RT @jpbrammer: obvious ploy to make me root for global warming smh not today Satan https://t.co/5r8QWSYxvv,806009 +"@AP it's climate change, and if this isnt change I don't know what is... read a book before flaunting your ignorance to the world",192064 +"RT @WorldResources: Reflections on Leonardo DiCaprio’s new #climate change film, #BeforeTheFlood https://t.co/YRrLgtZRbc https://t.co/A0tWU…",685562 +"RT @RVAwonk: Hiring a climate change denier is pretty appalling, @nytimes. But saying nothing as your employees single out custo…",284646 +RT @rainnwilson: A perfect resource 4 u to use 2 talk 2 yr climate change denier relatives:: https://t.co/tsBtqs6dDC,715307 +Republican green groups seek to temper Trump on climate change https://t.co/M7VqUfGiZ6,883501 +"@penelopekill @chelseahandler @karamfoundation Keep voting in morons who ignore climate change and basic reality, a… https://t.co/AbtNYyV2zD",842439 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,33587 +#HAPPYEARTHDAY2017 ������������Take care of her! And reminding you of our @POTUS take on climate change and that he's not… https://t.co/91j3q7dpdj,730304 +In other news: Sturgeon flies to USA with entourage on climate change global warming environment summit… https://t.co/Vor1P77Nf9,87268 +While you're freezing to death this afternoon I'll be at Six Flags being grateful for global warming.,494947 +Africa is not a major pollutant...climate change is caused by industrialized nation they should bear more in terms… https://t.co/wo672AaSkX,557924 +@maureen_fiedler There is no climate change Biggest sham in the world,351002 +"See how climate change will affect the UAE in numbers. The risks will affect the country’s economy, business and... https://t.co/rEgLTSMmT1",361958 +"RT @CBSNews: The U.S. pulled out of the Paris climate agreement, but Al Gore says that has only made climate change activism gro…",624214 +"RT @AltHomelandSec: @realDonaldTrump @Rosie @nytimes @SenJohnMcCain ...American diplomats, the EPA, global warming, @washingtonpost,…",513910 +"RT @NewSecurityBeat: Consensus climate change increases migration & a threat multiplier for conflict, but many questions on nuance remai… ",506543 +BIG HISTORY REALITY: the global godfreak media adulates the overpopulation=economic growth racketeers as champions of climate change/waste,778056 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,357156 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",370081 +RT @johnnyShady_: The Remy Ma and Nicki Minaj beef was created to distract you from climate change and the fact that temps in Antartica rea…,880261 +Absolutely loving this amazing initiative from @TataMotors that will help reduce global warming #FreedomDrivers https://t.co/2zVNsufnR6,509403 +RT @climatehawk1: Global ocean circulation appears to be collapsing due to warming planet https://t.co/PEp9Vt8g3x #climate…,580774 +#Resist ... Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/82TTAoi318,837095 +"After the oil industry. Companies like H&M, Forever21, & Zara are contributing to global warming at an alarming rate, releasing seasonal 5/",560337 +"RT @mrLeCure: Just watched Before the Flood, a doc by @LeoDiCaprio on climate change. I'm not a scientist, but it made a lot of sense to me.",132783 +"RT @ProfStrachan: Suicides of nearly 60,000 Indian farmers linked to climate change, study claims https://t.co/yhUjhOYRS8 @1o5CleanEnergy @…",304998 +10 Fragen zur üchtlingskrise: Hier gibt es den Aufstieg in human-caused climate change denial in human-caused climate change,819879 +"Don't worry about climate change! Trump will solve that too, he'll build a wall to keep the climate out! #sorted #qanda",849455 +100 most popular slogans on climate change https://t.co/Cg3EMPYESA #climatechange2,346200 +"RT @C_Stroop: 1. Reporting this as Trump 'moderating' on climate change is really irresponsible. What, just because he no longer… ",625746 +"RT @Greenpeace: The US Energy Department climate office bans use of phrase ‘climate change’. No, it’s not an April Fool’s joke…",677462 +"RT @AstroKatie: If you were going to be a single-issue voter, not making global warming even worse would be a good issue to choose. https:/…",107732 +RT @KayaJones: So science only is possible when talking about space �� & climate change but not with X or Y chromosomes? Hmmmm interesting ��…,277516 +"If we want to address climate change & U.S. competitiveness, we need to work with the rest of the world, not turn them away!",119700 +what are we going to do about climate change,219147 +A call to arms on climate change by Brenda the Civil Disobedience Penguin - a New 2017 Cartoon by @firstdogonmoon https://t.co/dfj5dL6XD8,773453 +"@ForbesTech if global warming gets to that point, what will happen to the rest of earth ?",813113 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,121431 +Government action isn’t enough for #climate change. The private sector can cut billions of tons...: The Conversation https://t.co/5lNPGa4imp,258442 +"RT @nytimes: With Donald Trump in charge, climate change references were purged from the White House website https://t.co/GjRJV17Mkk",15784 +"Earth possibly more sensitive to global warming than previously thought. Via @Independent +#KeepItInTheGround +https://t.co/hTPS71cxt9",491379 +"Anti Vax +Pro life +Believes climate change is a hoax +Doesn't accept evolution as scientific +Has a 10y.o. as commande… https://t.co/ewAREZ9LiK",767093 +RT @RealAlexJones: Climate Report to UN: Trump is correct to be skeptical of 'climate change' claims... https://t.co/DpY1BEhNrd #GlobalWarm…,508244 +How a new money system could help stop climate change - The Guardian https://t.co/if6zK7MS2d https://t.co/z4Dhq0J0pm #Bluehand #NewBlueha…,711697 +"RT @leahmcelrath: For the EPA (Environmental Protection Agency), Trump named climate change denier Martin Ebell + +https://t.co/O7C48YSNLk",78517 +RT @elisewho: Hey remember that time that Donald Trump backed urgent action on climate change? It wasn't that long ago https://t.co/ciohQ43…,592053 +RT @paperrcutt: Y'all chanting about climate change but throw your garbage everywhere at the same event,723025 +RT @Hotpage_News: MORONIC JILL STEIN SAYS Istanbul attack NOT Islam's fault...BUT everything to do with climate change https://t.co/rS7zzj…,310230 +Kim Stanley Robinson’s New York 2140 is a glorious thought experiment on climate change https://t.co/Y8NlwTzkkW https://t.co/cXR8oKgcB2,751878 +"RT @MikeySlezak: Australia faces potentially disastrous consequences of climate change, inquiry told - by me and @BenDohertyCorro https://…",617843 +RT @emptywheel: Area law man who doesn't believe in climate change (or much else science) worried CPD report isn't scientifically b…,265859 +Alaskan village votes to relocate over global warming - https://t.co/Myh9pePjWh https://t.co/670aK1OnSD,410288 +"A word from James Hansen, NASA climatologist, on climate change https://t.co/UkVCRHhkeZ",708448 +"RT @neighbour_s: Top military experts warn that climate change is a 'catalyst for conflict', now on #4Corners https://t.co/QzbUu4ybn4",254072 +Kate: bigger NGOs are finally seeing how gender equality is integral to fighting climate change @WOWtweetUK #wowldn,791956 +Scott Pruitt turns EPA away from climate change agenda - https://t.co/tXGGw2LwDV - @washtimes,515974 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,972791 +@KurtSchlichter climate change 'activists' are stupid.,330960 +@AltNatParkSer this is interesting. Trying to RT the @NASA pics of climate change and it won't let me. https://t.co/YZGbQXuvi4,126876 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,316154 +Cartoon: If the media covered climate change the way it covers Hillary's email https://t.co/8hHs7PSSUH,179087 +RT @realtonydetroit: The same people left defending Darwins THEORY are liberal DEMS that also believe the fairy tale of global warming. Hmm…,586916 +I welcome global warming about now.,70846 +Yale survey: Seven in ten registered voters (69%) say U.S. should stay in Paris climate change agreement... https://t.co/aMb3lNFo5g,752225 +"RT @LeoDiCaprio: Want to stop climate change, @UWM? See #BeforeTheFlood at your University #BeforeYouVote. +https://t.co/ubMubJMbkv",404604 +@CBSNews Not much. Besides CBS is being untrue to global warming concerns when they suggest that less cars = bad thing. Hypocritical,836527 +"RT @afreedma: If you ever doubt that you can make a difference on climate change, just read this obit of Tony de Brum. https://t.co/WzKGgMn…",678059 +"RT @jswatz: So on the day that Donald Trump nominates climate change denier Scott Pruitt to run EPA, he also meets with… ",333311 +"RT @brianklaas: The guy with the nuclear codes thinks Obama personally wiretapped him, vaccines cause autism, climate change is a hoax & bi…",74980 +RT @newscientist: The epic size of #HurricaineIrma is fuelled by global warming https://t.co/ixxrSUPOCX https://t.co/fLEvGo3qPM,477908 +@RitaTrichur If Canada Goose wants to remain profitable they should be helping to fight global warming. https://t.co/iuBWovBOgK,506657 +"Before we spend more than five minutes together socially I need to know your stance on evolution, and climate change.",980875 +@NASA if found in magnetz thera are a total of 4 magnetz in the ozone layerz to make global warming that are uzebale,805679 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,193548 +Obamas fiddled global warming data: *Shamelessly Manipulated* - https://t.co/xxfCa8CWeg #ClimateScam #GreenScam #TeaParty #tcot #PJNet,818493 +"RT @vdare: 'I'm going to die of climate change' + +Millennial leftists literally believe this. https://t.co/psNHWDJ3aP",625918 +"RT @IosefaPolamalu: *Starts snowing in Sandy* +'Ever since Trump was elected global warming has already gone away, wow!' -Bob Salveter +#Di…",215713 +"RT @jqbalter: @TodayAgain1 @sarahkendzior 'global warming = hoax', 'drill baby drill' ... sorry, but Trump/GOP will end human civilization.",126166 +"@6News But Trumpkins tell us that climate change 'Is a Chinese hoax' You mean to tell me,they're idiots without a clue? I'm shocked. 😕",709380 +Want to fight climate change? Have fewer children https://t.co/ZLSGdCKBaq,570628 +"RT @NYTScience: 'If climate change makes eastern North America drier, then autumn colors will be spectacular' https://t.co/w4n3R19OOm",898663 +RT @WIRED: .@AlGore answers all your burning climate change questions. https://t.co/RL7hIJnJyR,103967 +RT @TwitterMoments: Scientists cited climate change and nuclear threats in their decision to move the #DoomsdayClock closer to midnight. ht…,934788 +RT @NickMcKim: Malcolm Roberts is hosting a climate change deniers' meeting at Parliament tonight and I've found a copy of the age…,327499 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",953095 +"RT @350: Our oceans are under too much stress. By 2030, half the world’s oceans could be reeling from climate change:…",592527 +"@Pseudo_Lain @SkyWilliams No see one side advocates climate change fixes, equal rights for all, acceptance love and… https://t.co/QZPWSH00aF",488806 +"RT @kurtisrai: when it's a warm sunny day, but you realize that climate change is slowly killing the planet because it's actually… ",531595 +"Longer heat waves, heavier smog go hand in hand with climate change - Ars Technica https://t.co/GL4rGlswDD",899135 +RT @TwitterMoments: New York's @AGSchneiderman says Tillerson used alias Wayne Tracker to discuss climate change while at @exxonmobil. http…,661210 +"RT @RantyAmyCurtis: Good news is we don't have to swallow your BS on climate change anymore, right? https://t.co/UWbvnDnSvU",311285 +"@piersmorgan Oh, but climate change isn't real.",956537 +Stopping global warming is only way to save Great Barrier Reef https://t.co/cM4aEHDZEZ,536614 +USDA tells staff to stop using the term 'climate change' .. https://t.co/wYejB1TnLr #climatechange,518252 +"RT @UN: .@AntonioGuterres calls on leaders of govt, business & civil society to back ambitious action on climate change…",101697 +six flags ticker symbol https://t.co/Q0oAtiAr3E #global warming simple essay,136250 +RT @SEIclimate: This map shows what Americans think about #climate change. 70% believe US shouldn't withdraw from #ParisAgreement…,571656 +Harry is trying to come up with a chorus about the dangers of global warming eventually,614530 +nytimes: Why so many of President Trump's advisers are urging him to break a key promise on climate change … https://t.co/2BoflibjNg,506382 +RT @ClimateReality: We can debate how to tackle climate change – but the science is settled #ClimateMarch #ActOnClimate https://t.co/jIu5n7…,990558 +RT @cgiarclimate: How farmers in #Uganda are tackling #climate change w/ help of @cgiarclimate_EA https://t.co/UIq3iUnwyE https://t.co/srEv…,414640 +RT @SenatorHassan: I’m deeply concerned with Scott Pruitt’s unwillingness to fight climate change & I’ll vote no on his nomination…,757228 +"RT @iansomerhalder: VOTE VOTE VOTE!!!! +;) VOTING for a candidate that believes climate change is a hoax is the MOST dangerous person to…",741160 +RT @abcnews: #EarthHour's 10th anniversary the biggest yet as famous landmarks go dark for climate change action…,80801 +"@Johngcole I'm on board with climate change, but this is a dumb analogy.",14077 +RT @paytonmucha_xx: Our president doesn't believe in climate change. Nothing will even matter if we don't change the way we treat Mother Ea…,44115 +RT @DataLogicTruth: claimed Ted Cruz's father helped kill JFK; claimed climate change is a hoax created by the Chinese; defended Japanese i…,782491 +Ship made a voyage that would not have happened without global warming https://t.co/iEXaIoNZpc https://t.co/evqeEDF3cV,141116 +RT @ashqueens: it's January 22nd and we still haven't had a snow day & y'all don't believe in climate change,758470 +RT @GRI_LSE: China may be set to take on leadership role in global efforts to tackle climate change https://t.co/i2fDEJcJxE,111565 +RT @Glen4ONT: These two young Ontarians won first place in the #Climathon (climate change hackathon) #Toronto. Way to go…,108937 +"RT @puffin98: Trump and the guy who invented the global warming hoax meet in Mar-a-Lago. Awkward, huh. https://t.co/drQaKOWrYe via @MotherJ…",333960 +Thinking won’t stop climate change https://t.co/X2UMmx3VZ1,495632 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",855633 +RT @KekReddington: @EricTrump @realDonaldTrump there is no global warming says the founder of the weather channel https://t.co/gZhiyeRUE4,387274 +RT @caitrionambalfe: 150 years of global warming in a minute-long symphony https://t.co/ARKfGtVWhM,944823 +@maraayaaa Basi ikaw bala nag cause global warming. Hahaha,676644 +"RT @KFILE: Re: Pruitt, our December look at his interviews on local OK radio he said similar things about climate change.… ",674904 +"RT @nytimes: With Donald Trump in charge, climate change references were purged from the White House website https://t.co/izz8TWVlIq",706197 +RT @thehill: EPA removes climate change page from website hours ahead of #climatemarch https://t.co/1WC520Oieo https://t.co/nv8WkcD0a3,751823 +Donald Trump is about to undo Obama's legacy on climate change https://t.co/EBRkCrSj4o via @HuffPostPol,534701 +Kids now have the right to sue the government over climate change https://t.co/Bf8JPXnSlK via @tridenal,776680 +@Corrynmb @LeahR77 So global cooling became global warming became climate change and will become extreme weather an… https://t.co/nlcZmHD1nr,856934 +Yet some say there is no global warming https://t.co/QB8VtO1Cs2,838992 +RT @elliegoulding: Talking with you all last night about climate change just reminds me how woke my fans are 😂 guess it's up to other peopl…,73072 +Farts cause global warming,592976 +RT @Pedro__Garcia16: Our new president thinks global warming is a hoax created by the Chinese & his second in command thinks you can shock…,120301 +@TheDailyShow Taking JUST climate change I think most decent people would rather see D.C. burn than Prez Trump and right wing congress/court,477557 +"RT @FakeJDGreear: I don't want to say this global warming thing is true, but I just saw a polar bear waxing his chest.",331101 +"RT @Jawssimm: .@JeremyLefroy Please don't let the #DUPdeal turn back the clock on abortion, gay rights or climate change.",587789 +"In race to curb climate change, cities outpace governments +https://t.co/hlLxyN6l9H +#top #news https://t.co/wFWwvRDO3f",106773 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,714124 +RT @SuomiFinland100: Finland and Arctic Council take aim at climate change https://t.co/jE8m2eoAkz #finland100 #arctic via @thisisFINLAND,772086 +"RT @TheReel_in: Watch, absorb and act upon Leonardo DiCaprio’s dire warnings on climate change in ‘Before the Flood’ https://t.co/hb3kiVzWbg",656418 +"If you guys haven't watched Before the Flood please watch it, educate yourself on climate change and learn how much danger our world is in",372287 +Newly discovered peatlands must be protected to prevent climate change - https://t.co/Q8fKQhVw57… https://t.co/D2TtRjArEJ,481477 +"EPA head Scott Pruitt denies that carbon dioxide causes global warming + +https://t.co/hGZ0g1HcCo + +These people run the fucking government.",938734 +"Rural, regional communities feeling the effects of climate change https://t.co/CqcgeMuafZ",922926 +@AUSpur that's what we say to make fun of those who say global warming is BS when we have a big snow storm bro,339447 +"Tackling climate change is the “biggest economic opportunity” in the history of the US, the Hollywood star and... https://t.co/OalUMkk1Tc",325978 +"RT @ABridgwater: I need Middle East climate change technology spokespeople today/tomorrow please, gmail me or Tweet + +#journorequest…",42066 +RT @EcoInternet3: Angela Merkel says it was 'right' to confront Donald #Trump over #climate change: Independent https://t.co/6hhVS7724u #en…,382638 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,16052 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,450371 +"RT @vnuek: Now having a pet causes climate change, according to science alarmists... is pet shaming next? https://t.co/kqcFIvhvu4",450653 +RT @camanpour: He used to research climate change. Then came Trump. Now he collects royalties from oil & gas companies for the govt https:/…,299753 +RT @AmazonWatch: Open letter to #EquatorPrinciples banks: stop financing climate change; stop financing the Dakota Pipeline.…,643564 +"why are people talking about #blizzard2017 and that climate change doesn't exist??? 'oh no, the science is a hoax! It's all witchcraft :0'",975417 +RT @HuffingtonPost: Trump team requests list of government employees who worked on climate change https://t.co/NkXSLDypSq https://t.co/kwZ5…,890333 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,759258 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/XLdwMo2T6X https://t.co/iEKepqgTck,82004 +"RT @inashamdan1: Teacher: What problems do you find in todays society +My class: Sweden's contribution to climate change, rasism agai… ",187640 +RT @nowthisnews: Plant life is beginning to thrive in Antarctica thanks to climate change https://t.co/kwMBF15dZy,790339 +RT @PDChina: Horrible effects of #globalwarming: Time for us to look at the damaging effects of global warming. https://t.co/zhoboLTFKw,760264 +"RT @splinter_news: How fossil fuel money made climate change denial the word of God +https://t.co/DU9o9LbOrZ https://t.co/Av0ev0GY0i",34404 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/WMoMgK6DXS https://t.co/JneCacsRwF,387284 +@greta One group of dogs gets propagandized all day about global warming & being male & the other group gets doggie lollipops & unicorns?,111495 +RT @MemeoIogy_: if global warming isn't real why did club penguin shut down,263613 +RT @WeNeededHillary: EPA head falsely claims carbon emissions aren’t the cause of global warming https://t.co/3V7C9BsL6I https://t.co/QgnQf…,811478 +"@Eiology lol facts. +But also 'global warming isn't just a bunch of hot air'https://t.co/Ydt9Bp2miY + +Unless you're in Sudan of course. 😂",615025 +@MagWes @etzpcm @KirstiJylhae 1st glance -climate change is either believed or denied..all the sceptics I know believe in AGW/climate change,709431 +Oregon to join climate change coalition after Trump pulls out of Paris agreement https://t.co/DeM0Vltx5B,815398 +RT @Hopeniverse: รีวิวรส global warming ค่ะ โดนหน้าตาน่ารัà¸หลอà¸ให้ซื้อมา เหมือนเคี้ยวโอริโอ้à¹ล้วà¹ปรงฟันไปด้วยในเวลาเดียวà¸ัน https://t.co/Xq…,429819 +RT @AnnCoulter: Much like the ever-lengthening timeline for the world to end because of global warming. https://t.co/RzdpPddOjx,55201 +"Good for the Dept of Energy + +U.S. Energy Department balks at Trump request for names on climate change https://t.co/q7ddV8XWEg via @Reuters",918786 +RT @ChelseaClinton: Research on glaciers is providing further evidence of climate change: https://t.co/vvEb2yLN6V,505250 +"@PressSec You're right, the earth is a dangerous place. Especially climate change being our biggest threat. But y'all don't recognize that",811168 +"@CNN This is insane. Climate change and global warming are real, every child knows this!",616510 +Understanding alternative reasons for denying climate change could help bridge divide: An… https://t.co/kTy4GDXWiq,810332 +RT @britneyspears: Does anyone think global warming is a good thing? I love Lady Gaga. I think she's a really interesting artist.,778191 +"Well, guess who's not done losing his shit on climate change deniers and getting laughed at",644140 +RT @leahmcelrath: Ebell's job will be to dismantle the Obama Admin's climate change related infrastructure and spread climate change…,614087 +"Man-made climate change denier at the center of the solar system asks @DanRather- + +'What's the frequency, Kenneth?' https://t.co/fwBfscDdo0",350693 +"@Victoria_hch @ExeposeFeatures I agree.The main problem is,many know man made climate change is real but itis about the willpower to change.",224411 +RT @CNN: Emails reveal USDA employees were advised to avoid the term 'climate change' and instead use 'weather extremes'…,187760 +& several hundred arrests of company execs. US leaders are still debating if climate change is real & reviving an ineffective war on drugs,673695 +"Longer heat waves, heavier smog go hand in hand with climate change https://t.co/jcqZvw7JNx https://t.co/8K6xZ9pjON",624957 +RT @democracynow: .@dan_kammen on U.S. obligations to cut carbon emissions and consequences of Trump's climate change denial https://t.co/Z…,682615 +Arctic reindeer in the North Pole are SHRINKING and becoming lighter and it's all because of climate change #UkNews https://t.co/IssmcyopLt,674916 +Six irrefutable pieces of evidence that prove climate change is real https://t.co/meTT70HDri https://t.co/Bpsl5BVFz5,404402 +RT @politico: #BREAKING: Trump to pull out of Paris climate change agreement https://t.co/bx11PDNOFn https://t.co/bLr7Jo8Kri,53072 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,48112 +@theintercept It's why nobody trusts or watches corporate media they never talk about climate change never talk abo… https://t.co/IBF3VQukSJ,785837 +"In UNSC discussion on @UNSomalia, @Bolivia_ONU cites concentrations of wealth, climate change, that fuel famines, gross inequalities.",184816 +RT @DDurnford: A president who thinks climate change is a hoax and a VP who doesn't believe in evolution. Great day for science.,230210 +@withnaeun @dindanim @poccaguri Sekolah apanya? Skripsitnya a? Hahahah gak mandi itu malah menghemat air mengurangi global warming loh haha,915999 +RT @brittaneywarren: .@jjkirton says @g7 leaders @ Italy should specify an agent in the climate change commitments they make at Taormina to…,376465 +"RT @Newsweek: Trump's policies on climate change are strongly opposed by Americans, a new poll indicates https://t.co/R8TlePic77 https://t.…",194186 +RT @ajplus: Leo takes on climate change skeptics: “You might as well not believe in gravity.â€ https://t.co/v8EdagKObD,106745 +"Achieving a global adaptation goal for climate change, by @SaleemulHuq +https://t.co/qRaxS3LaDU +@cnazmul78 @ICCCAD @Gobeshona",992715 +Porio: Anthropogenic activities cause climate change. I always ask my students: are you cooling the Earth or healing the Earth?,274295 +75+ US mayors refuse to enforce Trump climate change order. So important to elect leaders committed to environment.… https://t.co/VPSjuWdmx5,841614 +RT @CityJournal: Withdrawal from the Paris Agreement could lead to real action on climate change through nuclear power.…,855159 +"RT @UN_Women: Tonight: 8:30-9:30PM, join #EarthHour & turn off all lights to bring attention to climate change. Learn more: https://t.co/ek…",369248 +"RT @ErikSolheim: Over 59,000 farmer suicides linked to climate change in India, study finds. +Shocking, appalling numbers! +https://t.co/YYrk…",400854 +RT @TheGlobalGoals: TWELVE of our #GlobalGoals are directly linked to climate change. The #ParisAgreement is essential for their succes…,232119 +RT @HuffingtonPost: UN: Paris deal won't be 'enough' to avoid worst effects of climate change https://t.co/2OzsX1RyKK https://t.co/Ube2xB0…,770087 +RT @easysolarpanel: The worst thing we can do for our #economy is sit back and do nothing about climate change. https://t.co/w8P5ocW4Bb #cl…,61801 +US researchers claim ‘Beef ban’ can mitigate climate change. https://t.co/DnUtEIDf6C via @postcard_news,582837 +RT @AnonyPress: 2016 was the year that the United States elected a man who believes that global warming is a Chinese conspiracy,696188 +Look at the climate change data on NASAs website! @realDonaldTrump 2,710747 +RT @giorgio_gori: Via dal sito della Casa Bianca il rapporto sul global warming. Al suo posto il piano di rilancio dei combustibili fossili…,943396 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,943553 +«The Mediterranean will become a desert unless global warming is limited to 1.5C»,957958 +RT @mcnees: 'President-Elect nominates Siberian zombie anthrax virus from a global warming-thawed reindeer corpse to head Centers for Disea…,170910 +@robcham fanart of climate change! fanart of the dangers of humanizing propagandists! fanart of the vitality of human connections!,680524 +"RT @Rick_Frank: We're too late to stop global warming with renewables. We need to do something much more drastic, s... | @scoopit https://t…",565587 +RT @chriscmooney: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/EvaDVnbK8X,749902 +They'll tell you they're doing it to save you from global warming. They're lying https://t.co/PRFpiM7pyj #OpChemtrails,748072 +RT @markhoppus: Soup is here thanks for all the great tweets have a great weekend. Also climate change is real and leaving the Paris Accord…,937512 +"Smog over Shanghai, but tell me more about how the U.S. is contributing to global warming.. https://t.co/0CsS4PHErl",130999 +"RT @WWF: When it comes to the fight against climate change, there’s reason to be hopeful. #PeoplesClimate https://t.co/GaREcRvTMe",342929 +@frackfreeunited @CrossFrack @kevinhollinrake voted 8 times against measures prevent climate change Thinks… https://t.co/WfyNRvByb9,406526 +RT @DavidPapp: I wrote THE BEST presidential briefing on global warming for Donald Trump https://t.co/hpCDOF1XDT,281624 +EnvDefenseFund: These 3 charts show how climate change is the world’s biggest risk. https://t.co/WPuouJ53s0,111021 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,898463 +"RT @sierraclub: As the #ParisAgreement comes into force, remember that Trump would be the ONLY world leader to deny #climate change…",920547 +Donald Trump expected to slash Nasa's climate change budget in favour of sending humans back to the moon - and beyond,300268 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,6377 +RT @solomongrundy6: Trump says ‘nobody really knows’ if climate change is real https://t.co/UTombh6ejK @ChuckNellis @Sfalumberjack21 @Hope0…,150851 +"RT @BostonGlobe: Sen. Markey calls Pruitt, tapped to lead EPA, a “science-denying, oil-soaked, climate change-causing polluter” ally… ",836682 +@NBCNews Probably has nothing to do with climate change. Ha!,975094 +RT @bigdaddy69780: @Johndm1952 @GlennMcmillan14 funny how global warming is so real but lower mainland bc hasn't seen harsh weather like th…,303263 +Russian President Vladimir Putin says climate change good for economy https://t.co/DYsiSpHL6E,469044 +My mom just told me she'd kick me if I didn't believe in global warming and my dad is sitting on the couch bottle feed,826563 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,879918 +RT @nytimes: Donald Trump has called climate change a hoax. A Chinese official says it is anything but. https://t.co/N7y35LTyN2,803773 +"RT @superdeluxe: Oh the weather outside is frightful +Due to climate change denial",535044 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,129239 +"CNN: Future climate change events could lead to premature deaths, experts said during an Atlanta climate meeting https://t.co/jXrQKrz1vU",123544 +"RT @climo2017: We have plan to REVERSE global warming. + +Learn about it here: + +https://t.co/3USdpImZP7 + +#climatechange #revolution…",955118 +"RT @CBCSunday: Trump's position on climate change could be his biggest threat to global security, warns @ProfPRogers: https://t.co/Ma7J1OFw…",763466 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,302824 +RT @RiffsAndBeards: Do the White Walkers in GoT represent the threat of climate change?,970253 +RT @DrPsyBuffy: 23. We can’t say “elect reps who understand and accept climate change” but instead we need to say we want to,536636 +Support renewable energy sources & save out nation & planet from the destructive effects of climate change. #GPUSA https://t.co/Lq3dquj0B7,225644 +RT @Reuters: Trump to sign order sweeping away Obama climate change pledges. Via @ReutersTV https://t.co/zCgYEUkEN7 https://t.co/m6Ko6xkBLY,901410 +"RT @pollreport: Is climate change a hoax? +details: https://t.co/CuNMYc00Hw https://t.co/hhYz55T1BJ",976357 +RT @mercedesfduran: The Trump administration just disbanded a federal advisory committee on climate change https://t.co/ZF12cFq7aN,276425 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/ZDEvXdhUtF,698782 +"RT @BitaAmani1: 'in causing climate change, the federal government has violated the youngest generation’s constitutional rights to… ",476182 +"♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/c8sCBHmknu",560795 +"We can't understand the reality of man-caused climate change without understanding all of the various factors: physics, chemistry, geography",734099 +"These climate change deniers must be condemned and stopped. Some things are worth more than profit, like the EARTH. https://t.co/FN4svmrGcq",874279 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",528799 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,844516 +"RT @davidsirota: Great work, humans -- and special congratulations go out to the climate change deniers https://t.co/9gvNMPV8it",42001 +RT @crunkboy713: how do people in Florida vote for someone who doesn't believe in climate change🤔 there whole shits about to be flooded in…,729333 +"RT @UKIPNFKN: Macron wants American researchers to move to France to fight climate change via @UNFCCC +#Trump #ClimateChange +https://t.co/sx…",910929 +"A Modest Proposal... + +To fight climate change, start with Leonardo DiCaprio's private jet lifestyle https://t.co/j0bbVWvIqK via @usatoday",436637 +Conservatives can be convinced to fight climate change with a specific kind of language https://t.co/eSfU9ri2LJ via… https://t.co/cqB3XsyO9K,539943 +RT @EllenGoddard1: Indian farmers fight against climate change using trees as a weapon https://t.co/nMZjw3BsV6,158515 +"RT @SciForbes: The first climate model turns 50, and predicted global warming almost perfectly: https://t.co/5OxrL2Cnr8 https://t.co/QijWyd…",913083 +Looking for fiction about climate change? Pulp fiction is full of it — with a twist. - Washington Post https://t.co/L0xLEqcngV,196246 +RT @Newsweek: Global climate change battles are increasingly being won in court https://t.co/cfWRoydRrb https://t.co/BBXmMbPZXk,312900 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,247152 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,621919 +RT @drvox: 'So much more dying is coming.' @dwallacewells is superb on our failure to grasp the true danger of climate change. https://t.co…,72893 +I wish global warming meant that I would be warm right now. There are so many reasons to hate global warming.,989727 +RT @fivefifths: We can expect a rise in many insect vector-borne infectious diseases because of climate change https://t.co/sonNFMmRUj,828411 +RT @taylorcIark: if global warming doesn't exist why is club penguin getting shut down,231642 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,294532 +19 House Republicans call on their party to do something about climate change | Dana Nuccitelli https://t.co/8DscIDcM4Q,322655 +RT @voxdotcom: The next president will make decisions on climate change that echo for centuries. We haven’t discussed it. https://t.co/BVNW…,238643 +"RT @collins11_m: @WayneDupreeShow I listened to this entire thing & in conclusion, climate change believing liberals R just as bad a…",226893 +"RT @JJfanblade: I'm with Trump on this,global warming is a lie, it is a device designed by governments to raise taxes and to enrich…",22945 +@canokar I truly apologize for contempt of your 'religion of global warming' since I posted tweet I received what is akin to fatwa hate.,667052 +@reason climate change is serious....,330901 +RT @BillMoyersHQ: All you need to know about climate change in 12 minutes. https://t.co/dlLfoUW85O,893735 +RT @thehill: EPA chief: Carbon dioxide is not a 'primary contributor' to climate change https://t.co/TjC6hqokK3 https://t.co/rkWMjzj4ws,844155 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,598545 +"Trump changes his tune on climate change, jailing Clinton https://t.co/cYy9c0qtrH",792602 +"RT @AmyELCAadvo: 'When @ELCA faces challenge of climate change we don't despair, we act' #ELCAadvocacy https://t.co/gbxp4fDkoL",81394 +RT @_CJWade: The craziest part about Florida voting for Trump is the whole state is going to be underwater once he defunds climate change r…,79720 +RT @PiyushGoyalOffc: It is a matter of great happiness that all 193 countries agreed on every aspect of the climate change in the Paris Agr…,450891 +"RT @plmcky: If you feel pleasantly siloed from the Trump disaster, keep in mind US will no longer be fighting climate change. https://t.co/…",689110 +"RT @RickSmithShow: Other countries SHOULD move on w/o us, if we're going to be hostile to environment & climate change, to be pro-war. +@sar…",603282 +>100 students will be challenged to look at pollution through the perspectives of sustainability and climate change https://t.co/dOs30hPvqM,151774 +RT @nadabakos: Here is why u have to care about global warming: snakes will grow to be much larger with hotter temperatures - we will be ea…,427833 +Factcheck: World’s biggest oil firms announce miniscule climate change fund https://t.co/Zzbu7uh2ry via @energydesk,514030 +"Best thing Chelsea Clinton can do is fight like hell for equal pay, reproductive rights, climate change and the oth… https://t.co/gedfwJ6wOP",450842 +"Good stream of reasons. In the interests of climate change - shouldn't we stop @KellyannePolls coming on, since sh… https://t.co/fhYQ6FPXxm",663940 +"As it goes with droughts and global warming - first it doesn't rain, then the fires start. https://t.co/CjXi6i4duP",289537 +RT @IsaacHayes3: It's 69° on December 19th but there's no such thing as global warming. 🙄,93580 +RT @CrEllenWhite: Masses of Australians are fatigued by climate change discussion? Masses of Australians want to save the planet! #qanda,999485 +Science Express train to create climate change awareness,16012 +"RT @jaketapper: In executive order, Trump to dramatically change US approach to climate change https://t.co/0smG0SqGLm",602434 +people touch the tippy top the the ice berg and think they can start global warming,128526 +#MostRead U.N. delegates worry Trump will withdraw from climate change plan. https://t.co/3KT63Ip2Ag,567878 +RT @JordanFredders: Rob Green could stop global warming.,311040 +RT @ClimateCentral: Children suing U.S. over climate change add Trump to suit https://t.co/8qWTIWstd4 via @insideclimate https://t.co/NnYTn…,397558 +"RT @guardiannews: 5ï¸⃣ Away from Article 50, the Paris climate change agreement comes into force https://t.co/wFbndAvfJn",659249 +RT @DonnaWR8: #POTUS gives @Pontifex set of #MLKs Books to be kept in Vatican.Pope gives @POTUS a letter on climate change? #MAGA https://t…,732039 +RT @POLITICOMag: Harvey is what climate change looks like in a world that decides it doesn’t want to take climate change seriously. https:/…,257083 +An Inconvenient Sequel review – Al Gore's new climate change film lacks heat: The former vice president’s latest… https://t.co/igIJfhwJrN,653366 +The only 'rights' to which the effects of climate change are applicable are the rights of every human being not to be sick from pollution.,764741 +RT @OfficialJoelF: President Trump will reportedly sign executive order tomorrow that will roll back on Obama's climate change policies htt…,240417 +RT @JuddLegum: 1. How long do we have to pretend the Stephens' incorrect FACTS on climate change are an opinion?…,941193 +RT @stephenmcdaid: @robinince NZ has gone crazy tonight. We have a tsunami warning here in Christchurch. Havent heard the climate change th…,249928 +CDC abruptly cancels long-planned conference on climate change and health https://t.co/XFyut2pRG8,355194 +RT @AlternateUSFW: 'Everywhere I look there are opportunities to address climate change and everywhere I look we are not doing it.' @BillNy…,466127 +"RT @DavidCornDC: Hey Florida, nice little Everglades you've got there. Thanks for voting for a climate change denier. See you in hurricane…",986184 +RT @BillMoyersHQ: Some of the kids suing Trump over climate change have already experienced its effects firsthand @youthvgov https://t.co/w…,194736 +RT @sarahjolney1: Heathrow expansion would be huge step back in fight against climate change. Let's send a shockwave through Downing St aga…,193995 +"#AlGore talks about his award-winning 2006 film and his new documentary, which looks at the climate change fight... https://t.co/ilxNPcUcue",630191 +"RT @KatyTurNBC: Trump says he will cancel Billions of dollars to the UN for global warming. 'By the way, no one knows what happens to that…",467505 +RT @USAneedsTRUMP: 😂 you mention the govt climate change scam & all the liberals get triggered 😂the same ppl believing Obama the last 8 yea…,385475 +@charleshernick @AmericanCRs A former Independent whose debut interview declares 'Reagan is out' and a moderate for climate change?,537515 +RT @ABC: EPA chief Scott Pruitt's language on climate change contradicts the agency's website. https://t.co/f0eJ2Fo5aT https://t.co/LJb5MxH…,689188 +Ship made a voyage that would not have happened without global warming https://t.co/hNw1yhhOtB https://t.co/AYWUSE7GH9,629787 +#weather Trump to unravel Obama’s anti-global warming projects – Houston Herald https://t.co/oe2FCqZXBP #forecast,125791 +"@RT_America We can't stop global warming! +https://t.co/Y2v4ZoMSkR",873126 +for those voting for hillary because you think she's against climate change https://t.co/Js33HcyCT5,634159 +RT @ThoBaSwe: Repeat: Evolution is not a theory. Man-made climate change is not a theory. Endocrine disruption is not a theory. S…,5824 +RT @LayaBuurd: i'm alive. my family healthy. my friends prospering. my boyfriend fine. my dogs love me & global warming hasn't kil…,626130 +RT @_richardblack: Prince Charles pens climate change @ladybirdbooks highlighting increasing UK flood risk https://t.co/DCxw9GRxiI https://…,710596 +"#NoDAPL: Either @Potus doesn't actually believe in climate change, or he's willing to shelve it for big business. Think about it #Berners",739055 +"If you voted for trump does that mean you actually deny climate change, do you people realize what you fucking supported?",584269 +RT @washingtonpost: The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/DbutGjT5Vn,930286 +China on Tuesday rejected a plan by Donald Trump to back out of a global climate change pact.,803604 +Watch: Chris Wallace confronts Al Gore over his faulty climate change claims that never came true https://t.co/qlsxU2RAvB,902313 +"RT @UNESCO: Megacities are forming an alliance, with UNESCO, to manage water under climate change #COP22…",365571 +"RT @Monicks: To Breitbart from https://t.co/A7qqogdvP4 'Earth is not cooling, climate change is real & please stop using our vid… ",418391 +"RT @HaikuVikingGal: 'G20 summit ends with Trump at odds over climate change' + +Always the outsider. History will not be kind to Trump https…",260874 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",53754 +Judge rules school children can pursue climate change lawsuit against Washington State https://t.co/g9kN4OYPCf,406691 +@LouiseMensch Lock her up. Climate change is a hoax. Crooked Hillary. You are a climate change. Hillary is a hoax. MAGA DonAld libtard DISAS,958946 +"RT @BJPsudhanRSS: Retweeted #GiveUpAMeal for Gou (@goushakti): + +#EarthDay +Beef provides major contribution to global warming... https://t.c…",135258 +RT @michikokakutani: 'NASA's climate change research will likely be scrapped by Trump.' via @newsweek https://t.co/AS4wZpTi4l,349414 +Say what? Unfortunately that is partly the problem with the branding 'global warming'. It's CLIMATE CHANGE people!… https://t.co/LCPzOHNWl5,988959 +"RT @nwbtcw: The problem right now isn't climate change deniers, it's those in power who profit from the industries destroying our planet #c…",954431 +RT @YaleE360: 'Our children won’t have time to debate the existence of climate change; they’ll be busy dealing with its effects'…,985836 +RT @thehill: Trump officials to meet on future of the Paris climate change accord https://t.co/LlwnDp5Fb8 https://t.co/Yhsww94M1w,698510 +RT @sbstryker: Paris Hilton has a better record on the environment and climate change than Donald Trump. https://t.co/OvI0EB9A2w,509363 +"RT @_iwakeli_i: When you hear 'climate change,' think polar bears but also think human displacement, migration and relocation. IT'S ALREADY…",625498 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",896827 +"RT @divyaspandana: We all make mistakes. Eg, this gentleman here on climate change who happens to be our PM. Not sure if this is a mis…",393734 +RT @Greenpeace: Tired of dealing with climate change denying trolls? Here's some help https://t.co/dpp3JqxwEu https://t.co/FXlnUX8UHT,326465 +RT @nobby15: How climate change is affecting the wine we drink https://t.co/w2QRvbwXm1 via @ABCNews,856169 +RT @DavidLeopold: And they're getting ready to purge the Energy Dept of those that do not deny climate change https://t.co/rZ3CpBdZHA…,404748 +"Scott Pruitt wants some kind of strange climate change showdown +https://t.co/d3E7dIci1H https://t.co/vu6656Ul2j",330862 +People that voted for trump probably think global warming isn't real 😂 #notmypresident,455496 +"@marcorubio how can you not believe climate change it's our fault? Petroleum and energy production, pollution. Are u serious?",571982 +RT @BillMoyersHQ: These CEOs are trying to stop shareholders from knowing how climate change affects their wallets https://t.co/BjdNMDQmje,298506 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,98423 +RT @AJEnglish: What does Africa need to tackle climate change? https://t.co/xGR8lazxSN https://t.co/gClZki3gfV,660483 +RT @washingtonpost: Corrected satellite data show 30 percent increase in global warming https://t.co/fkLw2CkSZG,219919 +RT @EnvDefenseFund: Both parties agree: Scott Pruitt needs to be held accountable for his misleading comments on climate change. https://t…,967026 +"RT @Haggisman57: When 225 Canadians jet to Morocco to ‘fight climate change’, they emit clouds of hypocrisy https://t.co/wfD91dyl0m #cdnpol…",640859 +RT @AOMGAUSTRALIA: Conclusion; theyre saving us from global warming,574291 +RT @AP: Follow AP reporters as they sail through the Arctic's fabled Northwest Passage to document climate change's impact.…,673739 +RT @Slate: Trump will be the only world leader to deny climate change: https://t.co/0uCR0DV2jb https://t.co/a1BiBH3wE8,490703 +Exxon Mobil urges Donald Trump to keep US signed up to Paris Agreement on climate change https://t.co/Gpq5duUwl4… https://t.co/4SRctzjg2H,811513 +"RT @Drolte: @billmaher RealTime's panel keeps dancing around the economy, technology, climate change, and greed. Please interview @Zeitgei…",357267 +"RT @surfinchef61: I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood +https://t.co/J9Bkz2OlOv",366205 +"RT @ProgGrrl: a nightmare scenario for environmental preservation, climate change, wildlife protection, energy policy https://t.co/WTEVCJiM…",47116 +RT @markmccaughrean: @AstroKatie And US inaction on climate change could contribute to us reaching the tipping point: it's hard to overstat…,41555 +RT @babitatyagi0: Gurmeet Ram Rahim Singh has started a campaign to eradicate bad effects of global warming. What is it ?,666135 +RT @seattletimes: How Capt. James Cook’s intricate 1778 records reveal global warming today in Arctic: https://t.co/HX8bJHNaPJ https://t.co…,997640 +"In executive order, Trump to dramatically change US approach to climate change https://t.co/dvncPJxmph TY @POTUS @RealDonaldTrump GBUIJN+",381416 +RT @ShehabShamir: a good piece from @SaleemulHuq on the loopholes in the current climate change regime & changes suggested! #COP22 https://…,168327 +RT @thehill: CO2 levels in atmosphere hit new high as EPA head denies its role in climate change https://t.co/dGMFsVq7Vm https://t.co/KU6Fk…,492253 +"RT @WillOremus: As a rule, Big Oil understands climate change far better than most of the GOP. Including Trump. https://t.co/cRCH0Yzooc",422735 +"#Leaders change. The #political climate changes. Everything changes, BUT God & He's still in control. 'I the Lord do not change' (Mal.3:6).",667117 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,202823 +RT @BIZPACReview: Bill Nye’s scary rebuke of CNN for allowing opposing climate change view sums up the Left in a nutshell…,10908 +RT @nytimes: A majority of people agree that climate change is harming Americans. But they don't believe it will harm them.…,366599 +Paris Agreement in force today. NZ among the first to ratify. Big day in the climate change battle. #ParisAgreement https://t.co/3s1FWJqetr,394665 +RT @BeyondCoal: Granddaughter of coal breaker becomes local leader against climate change https://t.co/FYgL1s94nz @samanthadpage @thinkprog…,734589 +How climate change makes hurricanes and floods worse https://t.co/xDLo8pdSsu,210821 +"RT @ImperfectGirl07: ðŸ‘ðŸ¼ðŸ‘ðŸ¼ðŸ‘ðŸ¼ +Did you know? +A tree can absorb up to 48 lbs of carbon dioxide a year. +Plant a tree - reduce global warming. ht…",191243 +Artist shows what climate change will do to our national parks with a new poster series. https://t.co/LIshLjmCQH… https://t.co/kU78OQzDG9,435686 +"RT @NewSecurityBeat: New report from @adelphi_berlin analyzes links between climate change, fragility and non-state armed groups…",7931 +Five ways to take action on climate change | Global Development Professionals Network | The Guardian https://t.co/e2KlTh3TuV,331666 +#Halloween's ok but if you really wanna get scared watch @NatGeo's new​ climate change doc with @LeoDiCaprio… https://t.co/RGb4ixueW7,998608 +"RT @YaleE360: As climate change rapidly melts away sea ice, countries are prepping for new shipping routes through the Arctic.… ",598170 +RT @cieriapoland: this halloween gets a lot scarier when you consider that bc of global warming it's 80 degrees in October & we are destroy…,981822 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",349039 +Most wood energy schemes are a 'disaster' for climate change https://t.co/tZagmmHBB0,131708 +@RRMeyer2 @EnergiewendeGER Now it's 'catastrophic' climate change? ��,440962 +Congress' top climate change denier continues his attack on states probing Exxon https://t.co/1xP3xxCGJG https://t.co/1CVUTnw6IU,719287 +"RT @business: Trump wants to downplay global warming, but Louisiana won’t let him https://t.co/IrWRqiBlhi https://t.co/wPhDmosW8s",866736 +"RT @GreenEdToday: The good news is we know what to do, we have everything we need now to respond to the challenge of global warming.…",793383 +"RT @paulengelhard: If 99% of scientists tell you that climate change is real, and Trump says it isn't, then the only intolerant ideology in…",486705 +Disrupt your business model to take action on climate change https://t.co/2oTlFbryZg via @ecobusinesscom,206701 +RT @mcspocky: Jane Goodall calls Trump's climate change agenda 'immensely depressing' https://t.co/UseSirPbkK https://t.co/GhCeEv31WR,812095 +"RT @laurenepowell: We have the tools, minds, & motivation to address climate change now. Honored to address the global community leadi…",813429 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",300273 +"RT @ClimateReality: The @WhiteHouse calls climate change research a “waste.” Actually, it’s required by law https://t.co/1trh7QkOQH https:/…",246003 +RT @theoceanproject: Coral reefs: living and dying in an era of climate change https://t.co/060X2hCWM2 https://t.co/DrOvLBjFp6,357693 +Rex Tillerson 'used email alias' at Exxon to talk climate change - BBC News https://t.co/oZpP7OqxhY,127689 +"RT @MichaelGerrard: Public opinion shifting on climate change: more and more people believe it's happening, humans cause it, and they'r…",554542 +Weather warning: Intrepid's co-Founder on how you can stop climate change ruining travel .. https://t.co/dCDq20YcOL #climatechange,713892 +"In challenge to Trump, 17 Republicans in Congress join fight against global warming https://t.co/ARW9bwNOTq",855661 +"https://t.co/5TvARPUmgh +Meet 9 badass women fighting climate change in cities +#climate #women #women4climate https://t.co/1Y2AFE7p48",413022 +"RT @democracynow: 'The planet is drowning in denial' of climate change, writes Amy Goodman: https://t.co/V8O8dLtD8m",204680 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,865502 +"RT @TheReel_in: Watch, absorb and act upon Leonardo DiCaprio’s dire warnings on climate change in ‘Before the Flood’ https://t.co/hb3kiVzWbg",70808 +Finance remains the biggest barrier for cities in tackling climate change: https://t.co/a3w1KlFIo8 #investincities,542694 +"RT @toby_w_hunt: Michael Gove attempted to have climate change removed from the geography curriculum, now he is Environment Secretary. Tori…",521642 +"RT @RT_com: ‘River piracy’ taking place at breakneck speed, climate change to blame - geoscientists +https://t.co/2eTZCoOG86 https://t.co/1…",90760 +Mike Nelson: Winter's arrival is perfect time for talk about climate change - The Denver Channel https://t.co/O92N7U2XjB,599952 +"RT @314action: EPA wants to debate climate change on TV - challenging scientists to prove global warming is a threat. Bring it on? +https://…",116224 +RT @NBCNightlyNews: Think global warming is bad now? It is going to get much worse researchers predicted Monday. https://t.co/Vo0tKTQX8E,781730 +"Shrinking mountain glaciers are ‘categorical evidence’ of climate change, scientists say - https://t.co/B9KO3Z415T https://t.co/j5fNlU2v5R",222272 +"@SSextPDX @golden_nuggets Sent one from NASA, Here is another - where's global warming? Arctic ice caps grow… https://t.co/XUKMQFxd3T",520111 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",470642 +RT @Descriptions: and the us only wants to deny global warming https://t.co/CSmTCn8hZU,241795 +enjoying global warming with some cool people! https://t.co/3mftjvqJ78,585620 +how can teens impact climate change https://t.co/6CxWdowwBJ,969978 +RT @ScienceNews: A new simulation puts a price tag on climate change county by county. https://t.co/DaPFWpAqRO,800466 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,665096 +Sanders: It's 'pretty dumb' not to ask about climate change after Harvey https://t.co/XqRSsTcDLs https://t.co/VkAcQX2oUC,59084 +"What climate change deniers, like Donald Trump, believe - BBC News https://t.co/wxZiES4tb8",813349 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",312981 +RT @SierraClub: Trump 'will definitely pull out of Paris climate change deal' https://t.co/vMIo8GWP0T https://t.co/r948903BhI,965523 +RT @dstgovza: #SFSA2016 technology can assist in accessing information on climate change,921337 +RT @dansmith2020: Arctic climate change makes study of Arctic climate change too dangerous! @SIPRIorg @adelphi_berlin @JanVivekananda https…,791417 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,472174 +RT @RogueNASA: Trump is signaling that he's acting on his vows to dismantle Obama's 'stupid' climate change policies. #Resist https://t.co…,514550 +"RT @ErikahJeannette: I don't understand how some politicians don't believe in climate change. There's evidence, scientific evidence. Come o…",418510 +"RT @STcom: After Obama, #Trump may face children suing over global warming +#climatechange +https://t.co/dvJio2ozos https://t.co/1J8ZqehnAa",344814 +RT @NYTScience: The #Gatlinburg wildfires are a reminder that climate change is making wildfires a continual problem in some places https:/…,555242 +@uchihacest_ @SenSanders ican't understand how some people believe there's a secret agenda about climate change,603943 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",996818 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,518736 +"RT @kurteichenwald: It's consers who dont believe in climate change, but a huge portion of anti-vaxxers are liberals. How do they choose wh…",194144 +"donald tr*mp: *gives up in combatting climate change for US economy* + +me: https://t.co/nnkkBNG3sF",548422 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",781735 +RT @Aiannucci: The US elected Trump but the rest of the world didn't.So what do we do if US policies ( e.g. climate change) threaten the re…,90786 +@danosbelt trump said climate change does not exist. You just contradicted yourself. Clean environment means no coal/oil/fracking,3051 +"RT @AlongsideWild: You want to argue about how to fix climate change? OK-cool. But, I'm done talking about whether it exists. That informat…",402995 +RT @Jamie_Woodward_: Did two centuries of continuous volcanic eruptions at 18 ka trigger major climate change in the Southern Hemisphere…,224269 +"Spot On Article!!!! + +Why we’re all everyday climate change deniers by @AliceBell https://t.co/XSTIGMl2Jq",891634 +"RT @trend_auditor: Finally, Paris climate change agreement designed by crooks- Trump is not buying this crap https://t.co/PDGdYTR7pI",661409 +"At this point, I am done trying to convince anyone that climate change is real. It’s absurd. “See, the book fell! Gravity is real!'",776823 +"RT @AynRandPaulRyan: GE CEO vows to ignore Trump, continue to fight climate change: https://t.co/sFUpgmHAfi +#EPA +#TheResistance https://t…",773037 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,716592 +"@jpballnut I'm 80 yrs old, and I have listening to the global warming hoax since I was a teen & guess what, nothing has happened.",709740 +"RT @planitpres: 'Planning could play key role in tackling climate change', @RTPIScotland tells parliamentary committee: https://t.co/idbzbo…",230435 +RT @rabbleca: Naomi Klein: Now is exactly the time to talk about climate change. https://t.co/tY0VtMbPjB https://t.co/Ua7gAUeRSw,105775 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/PS2XZk3lZE https://t.co/M3PtcAGVzt,277235 +"@Xadeejournalist @ZarrarKhuhro #ZaraHatKay + +Awareness regarding the adverse effects of climate change and how to cope with it be a priority",323839 +Scott Pruitt Climate Change: How many global warming deniers are on Trump’s team? https://t.co/fpeLaxFbOH via @Mic,485009 +"blame chemists, harbicides promoters, for climate change; 'Detergent' Hydroxl Molecules May Affect... https://t.co/QM4MWWaQED @slashdot",991522 +"RT @someecards: National Park defies White House, tweets climate change facts until it's mysteriously hushed up.… ",421384 +RT @AngelaKorras: Any more climate change deniers? Here you go if you can actually read better catch up. https://t.co/NbCWEh2L0K #auspol #a…,407930 +"RT @SteveSGoddard: Thanks to unprecedented climate change, sea level at La Jolla, California is the same as it was in 1871… ",499185 +GE CEO Jeff Immelt seeks to fill void left by Trump in climate change efforts https://t.co/lW7E1jGpk6 via @BosBizJournal,634042 +Yesterday it was almost 70 & today it's snowing. But don't worry the head of the EPA said he doesn't believe CO2 causes global warming.,281534 +~@_grendan wrote a great piece about climate change-denying lawmakers + christians & their unholy alliance https://t.co/h5DSQrzpT3,29564 +RT @wikileaks: Do you have data at risk from the new US administration such as unpublished climate change research? Submit it here: https:/…,777475 +"S. W-C: Social crises in Arctic communities result from intergenerational trauma, now worsening with climate change trauma",73475 +Growing algae bloom in Arabian Sea tied to climate change https://t.co/aSWiogr9Ux https://t.co/ShFaymBlc6,924278 +RT @OhWonderMusic: You can also listen to our BRAND NEW SONG 'Lifetimes'. It's about climate change. Don't be no climaphobe yo. ������ https:/…,945887 +RT @Marcpalahi: Sustainable Forestry is the most cost effective supply-side measure to combat climate change globally https://t.co/f97XJR8M…,133825 +RT @ProtectNUEST: nu'est contributing to global warming by riding in vehicles AND they also don't wear seatbelts :(( #ExposeNUEST https://t…,750622 +RT @nytopinion: Nine Northeastern states are taking an important step in fighting climate change https://t.co/ErIZQdgukg,340947 +RT @sleazy_c_peazy: #YourMCM thinks global warming was made up by China,477970 +Caring for nature doesn’t always mean leaving it alone. Can we engineer climate change away? Should we? https://t.co/gXkVWow4Av,841038 +"RT @ErikSolheim: 'We are close to the tipping point where global warming becomes irreversible': Prof. Stephen Hawking. +https://t.co/dJoh2BR…",331429 +EPA chief: Carbon dioxide not 'primary contributor' to climate change https://t.co/GBm14P9DLO https://t.co/zIIEnhbKK6,861934 +RT @DannyShookNews: Mitochondrial DNA shows past climate change effects on gulls https://t.co/3vhXvQVyaw #DSNScience #ecology,117689 +Storms linked to climate change caused more than £3.5m to cricket clubs: Storms in December 2015.. #breakingnews https://t.co/YS2FG5Qp7L,231985 +.@GMB @piersmorgan Idiot #StephenHawking is either unaware that climate change is a lie or he serves the cabal promoting the lie.,452498 +Global warming causes Alaskan village to relocate. How to stop climate change before it’s too late https://t.co/hxtvIA85mC #betterworld#be…,147151 +RT @brucepknight: Polar bear numbers to plummet by a third because of global warming https://t.co/uQIV9Bz86M #ClimateChange #ClimateAction…,402278 +"RT @Harold_Steves: Horgan says we have the opportunity to end big money in politics, have proportional representation, fight climate change…",515529 +"Percentage of Republicans who believe in global warming : 48 + +Who believe in demonic possession : 68 + +#HarpersIndex (Jan. '13)",816064 +.@Winnie_Byanyima changing climate change and hunger begins with education. New .@UNESCO Whole School Approach. Ten countries meet in Dakar,320416 +"Warmer summers, unpredictable rain: Maharashtra yet to finalise climate change action plan' https://t.co/h61xEkG5Lf",674363 +I fell asleep on my climate change book. Now I have to cram. Ugh,45153 +RT @politicususa: U.S. Energy Department balks at Trump request for names on climate change via @politicususa https://t.co/sW339lboZu #p2 #…,294203 +Balfour Beatty leads on climate change standard https://t.co/dsKjHnZxAM @balfourbeatty https://t.co/LseeHs28fv,69149 +"RT @JordanUhl: left: trump's inauguration + +right: everyone who doesn't want to die from global warming and/or nuclear war https://t.co/LN0D…",892557 +"Trump voters think that institutionalized racism and global warming are conspiracies, but fully believe in #pizzagate and #spiritcooking LOL",714218 +RT @OrganicConsumer: Scientists warn that global warming may be escalating so fast it could be “game over” soon. https://t.co/d2XH2nNA7t…,374533 +"Donald proposed banning an entire religion,encouraged violence at his rallies,called global warming a hoax but yeaa how do you choose 🤔",799765 +just gunna say Obamacare makes it so my mom can keep living her life and I believe in global warming.,406896 +RT @TheDailyShow: Trevor assesses the effects of climate change. https://t.co/b88QCflFb2 https://t.co/HK35KHb2Mc,493645 +Anson: How Al Gore convinced Miguel Torres to fight climate change in wine https://t.co/n9WZsCDdVT,77622 +Everglades mangroves worth billions in fight against climate change https://t.co/ZMhyQAdvB5,351139 +"In rare move, China criticizes Trump plan to exit climate change pact - CNBC https://t.co/DRCIc40QPE",598383 +RT @SteveSGoddard: I'm thinking about starting an intervention service to rescue children from the global warming cult.…,437099 +2017 @UNFCCC Adaptation Calendar features women leading efforts to build resilience to climate change… https://t.co/mcQp7fWSrS,811260 +When the weather is 75 degrees+ in November but you're also worried about climate change. #climatechange #weather… https://t.co/JMJ7lCnCZ0,289021 +Trump to undo Obama actions against climate change - Energy independence order slammed by environmentalists but... https://t.co/Ot4GVPjxcn,411748 +"RT @maryconnor4567: Wonder if Sturgeon will donate £1million to Californian climate change, same as she did to Iceland. After all, Califor…",834122 +"RT @Salon: Donald Trump and Xi Jinping chatted and schmoozed, but avoided talking about climate change https://t.co/A5XpVseWFA",531633 +RT @HuffingtonPost: . @SenSanders tears into Trump’s 'disaster' of a climate change order ➡️ by @lee_moran https://t.co/7U8U5R0I0u https://…,138830 +RT @RedactedGraham: We are called to be concerned about climate change. https://t.co/DptR8Qvd3x,855031 +RT @GMB: #StephenHawking tells @PiersMorgan that Trump needs to tackle climate change if he wants a second term as President…,621398 +"video uses young kids to promote 'global warming' fears -Dear Mom & Dad, climate change could be very catastrophic' https://t.co/882TWXIBgY",591179 +"@PrisonPlanet what about a celebrity doing something bad. +This proves climate change is a hoax. +FAKE NEWS @Independent",665535 +"Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges https://t.co/GnSlz1DUK0 via @FoxNews",625048 +@FoxNews @POTUS - Worried about climate change while creating Isis! 🙄,395927 +@GuyKawasaki motives of those against/ non-believers climate change vs those sounding alarms,819363 +"All the risks of climate change, in a single graph - Vox https://t.co/WXs0aMuN3u via @nuzzel thanks @roarsmelhus",226513 +RT @FinnHarries: Bill Gates and investors worth $170 billion are launching a fund to fight climate change through energy innovation https:/…,230277 +The cost of climate change: Nordhaus...He calculates the social cost of carbon (SCC) at $31 per ton of CO2... https://t.co/nw2WDLNlzC,217668 +Stop worrying and learn to love global warming: Climate alarmists are still running about… https://t.co/PvR3T41fkK,646356 +"RT @Chairmnoomowmow: Before you sit for a lecture about climate change from a california liberal, take a look at the job they're doing.…",585846 +RT @JunkScience: Exxon management has adopted the global warming religion. I am going to fight it. https://t.co/dVuJkjgfeQ https://t.co/Aj4…,320140 +"RT @BBCBreaking: China will honour commitments on climate change, PM says, as US appears poised to pull out of key deal https://t.co/lEVWQ7…",7769 +RT @paigemacp: It's morally irresponsible to make Albertans poorer to pay for a tax that won't make a dent in global climate change https:/…,128883 +"@POTUS @realDonaldTrump YES, and don't let those globalist stooges hiss in your ear about climate change. Biggest… https://t.co/RCqYVPUoAI",930716 +"RT @jswatz: Fixed your headline, WP: Trump says, FALSELY, ‘nobody really knows’ if climate change is real https://t.co/FOHO9s4nXd",52091 +World's biggest fund manager in 'Darth Vader-style' warning to company directors who deny climate change https://t.co/SFoDWgujdj,865029 +@marcorubio Am sad you confirmed DeVos Sessions. Pls don't confirm Pruitt. climate change is real,678269 +RT @KenDiesel: Scientists have overwhelmingly been right about climate change the last 50 years. #FakeGlobalWarmingFacts https://t.co/d9rBT…,646896 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",151820 +"RT @AmyMek: Let's blame it on Russia today, tomorrow fake news, next up global warming! This is getting really old! YOU LOST! GROW UP!😂 #Pr…",126071 +"RT @pipayfay: Bebe @hperalejo dumadagdag ka sa global warming. Sobrang hot mo be! + +HEAVEN AtHubR20",390635 +RT @ParkerMolloy: So... @EPA's climate change website is gone https://t.co/2lbP4RkUTa https://t.co/7l5j2nOCeT,846830 +RT @ChrisJZullo: Scott Pruitt is climate change denier and fossil fuel advocate. Burning of sequestered carbon impacts the carbon cycle #Tr…,903429 +RT @Channel4News: .@LeoDiCaprio calls on citizens to vote for “people who believe in climate changeâ€; @realDonaldTrump has called it…,552575 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,51238 +RT @leducviolet: only under capitalism could climate change become a 'debate' and something to try to devise 'carbon credit swaps' for. jes…,398685 +"RT @MichaelEMann: Oh my that's a low bar you've set Elon... +RT @elonmusk Tillerson also said that “the risk of climate change does exist”",442076 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,245264 +RT @DefenseOne: Not taking action against climate change will put our troops in harm’s way in the future. https://t.co/GpzqZ0nhVw…,1847 +I don't understand how climate change is fake when it has been the goal of the US military to dominate climate sinc… https://t.co/hnl0JC9RDd,800950 +RT @itomkowiak: This #GroundhogDay we are reminded that Punxsutawney Phil is now the only climate change scientist that the Trump regime al…,236737 +"The Trump administration is already defying long-held GOP orthodoxy on climate change https://t.co/v0kfOV5b3T https://t.co/FEelKEB5PV + +— …",371083 +"How the global warming scare began. +https://t.co/PlfxljabAV",288557 +niggas asked me what my inspiration was i told em global warming,645411 +"RT @TwitchyTeam: The HORROR! Chelsea Clinton blames diabetes on climate change, gets fact-checked HARD + +https://t.co/ZwUp6r69gg",582358 +RT @THECAROLDANVERS: everything in the world is depressing... my life... climate change... politics... penguin on penguin violence... ci…,105065 +"RT @nerdjpg: Remember everyone, +The enemy of the American people isn't global warming, oppression or wealth disparities +It's the FAKE NEWS…",105707 +@stephenfgordon I don't believe @awudrick has ever accepted man made climate change as a fact.,487304 +Every time it rains in summer I blame global warming,966654 +RT @SeneddCCERA: We’ve announced the creation of a new expert panel to help scrutinise @WelshGovernment progress on climate change https://…,367823 +"I see your GMO-crazy-crowd, but I raise you climate change, & evolution deniers (especially evolution, the heart of… https://t.co/kmiIA0gnEF",649275 +Drink H20 just not from plastic bottles. 1M bottles a minute: world's plastic binge 'as dangerous as climate change' https://t.co/PPDDJ14AFB,29185 +Meet the unopposed Assembly candidate who says climate change is a good thing that hurts 'enemies on the equator'… https://t.co/xt9p5uXckl,172119 +Former NOAA scientist: Colleagues manipulated climate change data for political reasons - #tcot #MAGA #Trump https://t.co/DNwpIRKmgj,685650 +RT @ClimateCentral: This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/9KDDDAbadF htt…,173254 +RT @JMU_Politics: @nytimes So our Secretary of State who was head of Exxon Mobile says Man made climate change is real yet head of EPA is l…,287735 +"RT @YouTube: .@NatGeo teams up w/ @LeoDiCaprio to explore climate change and prevent catastrophe. + +This is #BeforeTheFlood →…",97811 +RT @thehill: Arnold Schwarzenegger teams up with Macron to fight climate change: https://t.co/IJM5rzUq49 https://t.co/fbAWqsqW60,838235 +RT @ChelseaClinton: These experts say we have 3 years to get climate change under control. And they’re the optimists-The Washington Post ht…,254835 +RT @RuPaul: BREAKING: Russian scientists have confirmed that global warming is most evident on Friday nights at 8PM. #DragRace…,318905 +CDC's canceled climate change conference is back on — thanks to Al Gore https://t.co/Wbpi2HGVDi,259043 +"RT @Voize_of_Reazon: He doesn't believe in climate change, but what his position to living in the closet??? https://t.co/w1vjWSTOdq",381017 +RT @altHouseScience: House Science's @RepJimBanks said “I believe that climate change in this country is largely leftist propaganda.' Wh…,649757 +"The more I read & compare, the more ���� is outshining ���� . Fr healthcare 2 gun control 2 climate change 2 even how we deal w racial issues",529954 +Me listening to older white volunteers talking about not believing in global warming and how wonderful Trump is ��������,663529 +@Laura_Cobanius @sehol @kahoakes @Louisxmichael 1 he's an actor not a scientist 2 all global warming models have been wrong since inception,423720 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,22777 +@GingerConstruct Wasn't she and her husband supposed to save the world by focusing on climate change with her father?,766694 +"RT @leducviolet: I oppose the death penalty, and I also believe that anyone with power who opposes universal health care or climate change…",166583 +if you have a high IQ you would know that china didnt create global warming https://t.co/ekjrNM1xke,282634 +RT @JasonSalsaBoy: friendly reminder that its still hot this time of year bc of global warming brought on by people and possibly even repti…,353764 +RT @Independent: California says it's going to start suing if Donald Trump ignores climate change https://t.co/9NkhOwoaHM https://t.co/tUxv…,461317 +RT @ThugLoveOG: ''Tis the season to realize climate change is real https://t.co/4jXlIGjqnZ,31680 +Even worse are projections on what expensive policies to combat climate change will accomplish. https://t.co/ABHSpUCCHY,998009 +"Donald #Trump’s first staff picks all deny the threat of climate change | By @ngeiling +https://t.co/crVaThJXIJ",491318 +RT @ceed_uganda: Deforestation = climate change join #GuluGoGreenMarathon17 in partnership with @MegafmGulu @FAOUganda @NFAUG…,970330 +RT @VICE: Rex Tillerson allegedly used a fake email name at Exxon to discuss climate change: https://t.co/Doay1W3rFC https://t.co/n4QG5Gq3mc,476860 +@charleshildebr9 It's the BURNING of fossil fuels that causes climate change. Not using it for other manufacturing.,415960 +@RT_com thanks to global warming. one harsh winter and these racist geezers will fall like mosquitoes.,937064 +"RT @matthaggis666: Today on #abcforkids we have IPA's Georgina Downer explaining why climate change isn't real, and how voluntary voting is…",935085 +@realDonaldTrump What about climate change?,863837 +"Trump will roll back climate change policies today. In a symbolic gesture, he'll do it... https://t.co/3Ah5eKfdo2 by #NPR via @c0nvey",166987 +"RT @DrJillStein: The #GreenNewDeal: +👷ðŸ¾ Jobs for all who need work +☀ï¸ 100% clean energy +🌎 halt climate change +✌ðŸ¼ wars for oil obsolet…",65621 +RT @UNDPasiapac: Afghan farmer are suffering the impacts of climate change. The Ministry of Agriculture & UNDP are helping them adap…,486600 +RT @sunraysunray: Fighting climate change requires massive state intervention and shaping capital's investment decisions. Good luck :( http…,389265 +RT @BetteMidler: We are so fucked. Trump picks climate change denier for EPA team @CNNPolitics https://t.co/FmMc1OVZUn,151202 +RT @AstroKatie: Now would be a great time for the rest of the world to find ways to pressure the US on climate change and human rights.,906908 +BBC: Prince Charles co-authors Ladybird climate change book - https://t.co/v6KkVWsJEO https://t.co/JoIK7CQgbk,98725 +RT @AGSchneiderman: President Trump may deny the reality of climate change. But New York is showing the world that we will act. https://t.c…,741135 +RT @ConservationPA: Effects of climate change being felt around the world. States & cities must act b/c the federal government won’t!…,184479 +#trading #forex #binaryoptions BlackRock urges Exxon to disclose more about climate change-related risks - https://t.co/4D83lFyp8j,364623 +‘Study linking climate change and farmer suicides baseless’ https://t.co/EV89AFlSG8,289083 +#Canberra leaves most of Australia behind on climate change initiatives: report https://t.co/YrvgOcnpot,101465 +"RT @BuzzFeedNews: Other major nations will officially commit to fighting climate change — with or without Trump +https://t.co/OweKcgNCqr",877671 +This early winter weather is fantastic. Seasons beautifully crafted and consistent. The fuss of man made climate change painfully academic.,414975 +"RT @Hultengard: Detta är riktigt obehagligt. Söker man på LGBT & climate change på https://t.co/G3TO78nxtP , får man inga träffar. +https://…",819137 +RT @traill1: climate change made very real- how rainfall is shrinking the temperate area of SW Australia... https://t.co/1RgbtC1enc,162715 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,889367 +"RT @RobDenBleyker: If you're hecka white and think 'Trump can't hurt me', consider the fact that he doesn't believe in climate change. We'r…",682050 +"RT @echomagchicago: Our managing editor, @biancapsmith is writing an article on climate change for The Flux Issue #SneakPeek #StayTuned htt…",468148 +RT @Kelseyummm: Ok but how does it not scare people that our President Elect/VP Elect don't believe in climate change,276721 +What sparked global warming? People did. Here’s how. https://t.co/hzWiFPmaGK,809015 +RT @Greenpeace: 10 incredible things climate change will do. Number 6 will amaze you https://t.co/ntqRKwoiO1 #ClickBait…,82904 +RT @KatrinaNation: My take this am -- Trump’s denial of catastrophic climate change is a clear danger https://t.co/rVYrkjAzRu,629958 +RT @ProgressPolls: Are these hurricanes due to global warming or just mother nature? #HurricaneIrma2017,282539 +RT @Sustainable2050: Read in @nytimes article: 'the greenhouse gas emissions blamed for climate change'. What's so hard about writing: *cau…,576641 +"RT @YahBoyCourage: j cole supports global warming, domestic violence, and the cancellation of G-Force 2 which should have hit cinemas July…",721032 +"#NEWS #Armenian Climate talks: 'Save us' from global warming, US urged - BBC News: UN News… https://t.co/RQrF52C3mv",985863 +RT @hyped_resonance: doodlebob needs to fight climate change next,351847 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,102182 +"RT @unsilentspring: We talk about waging war against climate change. Well, 'The war is on. Time to join the battle.' @JSandersNYC…",432256 +"RT @ThisIsWhyTrump: Al Gore is a fraud and refuses to debate global warming +https://t.co/O5EEiUHlt3",810959 +Climate alarmist offers $500 billion plan to stop global warming — by making more ice in the Arctic https://t.co/hktqREYFcl,339263 +"@realDonaldTrump + +Of all the WORLD issues, the most critical is climate change, which could create many many jobs.… https://t.co/HSTVt6Uszk",426325 +Donald Trump's pick for CIA director refuses to accept Nasa findings on climate change | The Independent https://t.co/zbMY4ZBL1L,634147 +"RT @LindaSuhler: I suspect the climate change models are the climate equivalent of the pollster models who had HRC winning... +Libera… ",43694 +Why everyone -and not just liberals- should care about climate change: Katharine Hayhoe: https://t.co/J4GnNd7icF,693219 +Fuck global warming.,840612 +"#ClimateChange: For New York, climate change is an immediate existential threat.: https://t.co/VjNr9RslK0",292313 +"RT @Conservative_VW: Just Think 🎉🤔 + +When Liberals end up in Hell ... + +They'll finally know what climate change is 😂😂 https://t.co/6cS0VAFyVi",459823 +you're literally all sorts of dumb if you think global warming is fake...,458700 +RT @Jackthelad1947: Cities can pick up nations’ slack on combating climate change #C40 #auspol  https://t.co/zdHSaAoP3o @abcnews #wapol #SM…,886294 +California targets dairy cows to combat global warming - Story | WNYW https://t.co/McQrRPVlv6,72399 +RT @jennyk: Coffee as an anchor for rural development & the need to plan for climate change @billclinton #WorldCoffeeProducersForum @GCPco…,838493 +RT @BadAstronomer: The catastrophe for climate change alone the Trump presidency represents is almost beyond measure.,239467 +How comics can help us talk about climate change https://t.co/LbrUyG5wCv via @grist,966716 +RT @LeoHickman: Here's a quick reminder that Gove once tried to remove climate change from the geography national curriculum…,88590 +"RT @jeneuston: THE POPE believes in global warming. +THE POPE. https://t.co/sUe6f3QO29",270660 +#ClimateChange Trump cutting funding for climate change research. We're doomed!!!!!!!!!!��,612857 +RT @SheilaGunnReid: .@sandersonNDP who shld resign? An MLA who said humans aren't the sole cause of climate change or one who called ABs s…,481502 +"Trump won't save us from climate change, but maybe surfers will https://t.co/gjZtgIFE7d via @HuffPostGreen",953534 +"Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges - Fox News https://t.co/qIjeUIxUcq",399293 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,325715 +RT @Arwyn_Italy: @EU_ScienceHub impact of climate change on soil erosion has positive and negative effects but land use change may b…,412226 +RT @UNFCCC: Today is gender day at #COP22. See how @adaptationfund projects empower women in fight against climate change…,817566 +Seeing how ignorant people are to global warming is truly shocking #BeforetheFlood,610516 +"RT @reedfrich: Trump's EPA chief: We need more review & analysis to find out if manmade climate change is real. +Also: We're guttin… ",921902 +"RT @sciam: The effect of climate change on endangered species has been wildly underestimated, a new study has found. https://t.co/da7z2KhB06",279576 +RT @YahooNews: Now I Get It: The hot debate over the Paris Agreement on climate change https://t.co/eQBj13Z2wG https://t.co/PC9Ye0eP3p,164195 +RT @Reuters: U.S. Energy Department balks at Trump request for names on climate change https://t.co/LIVzmdSIB5,233989 +Trump to build wall at Irish resort to protect against effects of climate change #MAGA #Ireland #PresidentElectTrump https://t.co/YfNQlWZRXG,650411 +@pemalevy @ClimateDesk NOAA has disproven global warming through their own measurements of OLR's. Enjoy the cult. https://t.co/h5WOq74gzV,531313 +.@washingtonpost Why does EPA need regional climate change advisers? How this this job impact environmental protection? You may ask.,4333 +RT @vicenews: Trump’s EPA chief isn't sure humans are causing global warming https://t.co/kP1zuWfmc5 https://t.co/byiWuDiRWg,643985 +"Before it eventually does us all in climate change will be decent for a while, can't remember it being this warm in March",556079 +People don't think climate change is real https://t.co/Po4gnB8iA9,362728 +@i_artaza @COP22 @UNFCCC @ConversationUS regarding climate change.,619584 +"#Rahm +Chicago mayor Emanuel posts EPA’s deleted climate change page https://t.co/ylqySjtG3P",498930 +"RT @ReutersUK: Britain's progress on climate change is stalling, government advisers say https://t.co/66c8XAf2lk https://t.co/rzYlCo2Fo7",711047 +RT @DavidPapp: Trump's order will unravel America's best defense against climate change https://t.co/PDhzqCCWkD,280183 +"RT @YEARSofLIVING: 'It comes down to a question of security, what will this lead to? 'Watch NOW to see the link btw climate change & extrem…",710884 +"Glacier National Park is overcrowded. Thanks, climate change.: https://t.co/pTZHB4oRDQ",669728 +@wolfeSt .. kind of conspiracy to convince people that human action is causing dangerous climate change. I don't kn… https://t.co/mBCuFJukwO,873903 +RT @yayitsrob: Kaine asks Tillerson flat-out whether Exxon knew about climate change in 1982 and lied about it. He didn’t answer. https://t…,133051 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,580652 +RT @EnvDefenseFund: Wall Street is pressuring fossil fuel companies to reveal how climate change could hurt their bottom line. https://t.co…,122184 +Rick Perry Falsely downplays human contribution to climate change https://t.co/kEDnagoCNU https://t.co/Azm0KNd6Xj,297918 +"RT @NaomiAKlein: An assault on America's future, but also on the future of everyone forced to share this warming planet with Trump a…",443350 +ur mcm is a contributing factor to global warming,942345 +"RT Canada to gain nice days under climate change, globe to lose: study - CTV News",487311 +RT @washingtonpost: The nation’s freaky February warmth was assisted by climate change https://t.co/2liQi8TVn2,624290 +RT @jgrahamhutch: It is November 1st and the high is 89°. The next person to tell me global warming is a myth better be prepared to catch h…,462841 +@JenThePatriot @pantheis Guess again dear. I study climate change and it's impact on biological systems as part of my work. Try again,682584 +"RT @stealthygeek: @MaxBoot @nytimes @BretStephensNYT The scientific consensus of the reality of climate change is not a 'prejudice,'…",86801 +This happens about once a year in PHX. But I bet it will happen more often as climate change is ignored. https://t.co/VO0hZepXBh,614098 +@RobinWhitlock66 @manny_ottawa @BigJoeBastardi $1000 to you Robin for a peer reviewed study showing man made global warming. I will wait...,71036 +RT @JasonKander: I don't believe one day's weather proves/disproves climate change. But...it's 63 degrees on Christmas Day in KC...with a c…,603798 +RT @PrisonPlanet: Remember this next time DiCaprio lectures us all about carbon emissions & global warming. https://t.co/e0Mljg7wXP,539219 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,571734 +RT @flovverpovver: rt if you think mother earth is....kinda hot (global warming),891254 +RT @BuzzFeed: This is what climate change looks like around the world https://t.co/E3dfjtCfH2 https://t.co/y2lDM7W42V,16967 +"@realDonaldTrump Lost half your staff +Lost over half your supporters +Lost the debate on climate change +Lost interes… https://t.co/zjxmrUUnSm",366465 +"RT @TeenVogue: Dear Donald, most of us DO know that climate change is real/ a real threat https://t.co/yyTy8Yy1ju",468888 +RT @AustralisTerry: Queensland is now fuelling global warming #methane #CSG #LNG #AUSPOL @QLDLabor #CSG https://t.co/amWMGDoxNc,755956 +"RT @tveitdal: Nicholas Stern: cost of global warming worse than I feared +Heathrow’s 3rd runway could be incompatible with Pari…",854237 +RT @homeAIinfo: Researchers look to artificial intelligence to study future climate change - The Deep Learning for https://t.co/gnaMQ6Etnu…,929586 +"RT @LeahRBoss: #IAmAClimateChangeDenier because I believe climate change is a natural, cyclical occurrence. A view backed by millions of yr…",972465 +"@ThePlumLineGS International cooperation to fight climate change will continue, but without US leadership +> all's w… https://t.co/52lb3BeGqU",47414 +RT @CLTMayor: Proud to stand with fellow mayors to combat climate change #uscm2017 #Mayors4CleanEnergy @CLTgov https://t.co/axQz8rj8IJ,237511 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,473045 +Trump really doesn't want to face these 21 kids on climate change https://t.co/MGzeNNFycP https://t.co/0ZW5ire1Az,719760 +RT @PopSci: Four things you can do to stop Donald Trump from making climate change worse https://t.co/V6o9QJSdVl https://t.co/L34Nm7m1vV,3380 +"RT @pollreport: As president, should Donald Trump remove specific regulations intended to combat climate change? +More:… ",915945 +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/qlpINzgAvG,746072 +"RT @AlessiaDellaFra: Food security, climate change and agriculture - Geral... https://t.co/vBI9j9rrg8 #recipes #foodie #foodporn #cooking h…",793658 +RT @TomSteyer: Don't let the Trump administration's distractions fool you. We must remain vigilant about addressing climate change. https:/…,718346 +"RT @nowthisnews: While the U.S. is denying climate change, Europe is building an island to house 7,000 wind turbines https://t.co/ts8obKbQhX",991582 +@climatebrad Would you give experimental drugs to your children that were supposedly validated as the climate change theory.,186975 +"RT @Silvio_Marcacci: US Geological Survey notes hot, early Spring then ties it to climate change. DC's Spring arrived 22 days early. https:…",544544 +"RT @ProSyn: To achieve the #ParisAgreement goals, efforts to combat corruption and climate change must go hand in hand https://t.co/hJAYyD…",598757 +RT @FRANCE24: Scientists disprove global warming took a break https://t.co/gqgtitWk2S https://t.co/yObhlZ1ueJ,352182 +RT @BCAppelbaum: The global warming tweets have now been removed from the @BadlandsNPS feed. Here's the tweet the government does no…,799769 +"@RaymondSTong I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",285144 +"BBC News - Climate talks: 'Save us' from global warming, US urged https://t.co/JYLor2p7IH we can do it if we stick together #oneworld",406272 +RT @ColinJBettles: Farmers in #Canberra this week calling for more climate change action #agchatoz @NationalFarmers @farmingforever…,92988 +RT @Miriam2626: Praying that climate change doesn't exist! #ICouldSpendAllDay https://t.co/rVLmwAMF52,36673 +RT @TEDTalks: Pope Francis is taking climate change seriously. Why his embrace of science matters: https://t.co/98jzIzKwHB…,558989 +RT @CapitolAlert: Jerry Brown thinks GOP’s belief in states’ rights could help him fight climate change https://t.co/KjN9bqPC8a,261633 +"@AlasdairTurner Smart move. You may need it because, the new adminstration has confirmed global warming is a hoax. https://t.co/9IdXBkSOvO",239960 +RT @latimes: The biggest dystopian book of the spring? “American War' imagines an America torn apart by climate change https://t.co/Kr4PBwv…,938879 +Canadian cities hit by climate change https://t.co/XhJSYq816e via @YouTube,638143 +"Enough 'tea and biscuits engagement' - @RajThamotheram panel on climate change, board governance, and inv industry supply chains #rieurope17",162574 +"RT @aerdt: Oklahoma hits 100 ° in the dead of winter, because climate change is real | By @NexusMediaNews +https://t.co/YV0NpZupG1",78388 +"RT @neontaster: Forza Motorsports is fun, but I can't help feeling like my race cars are contributing to global warming. Couldn't t…",966667 +"RT @mehdirhasan: '40% of the US does not see [climate change] as a problem, since Christ is returning in a few decades' - Chomsky https://…",865944 +"RT @DonCheadle: For the first time on record, human-caused climate change has rerouted an entire river - The Washington Post https://t.co/H…",972181 +"RT @ReachMeBC: @VICE isn't global warming because of loss of things in the ocean and trees, etc? @VICE S05E03 @hbo",946851 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,214800 +"Trump's climate change denialism portends dark days, climate researchers say https://t.co/OyrJShtmby",728032 +"RT @oldmanebro: Nah this a lie. +Don't listen to people who affected by climate change right Donald!? https://t.co/bPkFOWyXvU",600651 +"If govt dont start action then see our youth reaction on climate change +@PMOIndia",728584 +I agree with his assessment until he said he will die from climate change which is a weird point to make https://t.co/IayZkA58Au,706681 +"Forgetting all of Trumps other archaic views for a second, I cannot comprehend how the fucking idiot doesn't believe in climate change.",589739 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",450581 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,47561 +"RT @kentkristensen4: #climatechange #polar #Bears let's fight together for the global warming make the planet ready for our #kids +���� +������ h…",401905 +"@reddit @StationCDRKelly @Pontifex +Oh! Glorious space art, with the climate change and political issues occurring in the world these days,",800981 +@crashandthaboys Hm. I make the same face when I urinate. And I urinate every time someone says global warming isn't real. - Jack,589183 +"RT @IMPL0RABLE: #WeThePeople + +Jesse Watters: 'No one is dying from climate change' + +How climate change is killing people: https://t.co/BMX…",222534 +"RT @jumpercross1: What does it take for President Trump to accept climate change, a shark on the freeway ? https://t.co/DTA0TlOyjJ",357670 +"in FEBRUARY. but no, climate change is just an elaborate chinese hoax. ;____; RT @altNOAA: (cont) https://t.co/1kfaBY33Df",923142 +RT @OfficialJoelF: Massive climate change march in Washington DC on Trump's 100th day in office https://t.co/CqOiY1Ddn2,497636 +RT @TheEconomist: Ocean VR: Dive down to discover what coral reefs in Palau have to do with climate change https://t.co/ByzvcPEq1A https://…,443455 +NBCNEWS reports World powers line up against Trump on climate change https://t.co/Un7hSvqQEI … https://t.co/PN7oSPCR34,730705 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,830855 +"RT @Independent: World leaders should ignore Donald Trump on climate change, says Michael Bloomberg https://t.co/kuxK0prhLY",255556 +"RT @MrJoshSimpson: Voting for someone who denies climate change simply because they are Pro Life is, and I'm putting this nicely, fucking m…",961712 +@RTUKnews Far more likely is geoengineering and alluminium being the cause not global warming .,589379 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",956735 +"@CNN 20)Unchecked climate change & a future where they may starve, lacking water and food.",216207 +"RT @armyofMAGA: Is climate change a liberal hoax? #MAGA + +RETWEET to make the poll more representative and accurate!",650019 +"House Republicans buck Trump, call for climate change solutions https://t.co/T9yJdEHjpq",606200 +RT @10NewsParry: What’s #ValentinesDay w/o chocolate & Champagne? Both are at risk by 2050 due to climate change from heat & drought…,753836 +it's cold... where's global warming? ��,847322 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,273226 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,83629 +"RT @BuzzFeedNews: The only way to save the polar bear population is to hit the brakes on climate change, US Fish and Wildlife says… ",226734 +"RT @DavidParis: “we are in the sensible centre on climate change” +“Plz don’t asked me about Adani or other new coal mines plz plz n…",788872 +The bell continues to toll: Record-breaking climate change pushes world into ‘uncharted territory’ #climate… https://t.co/4iO3lKV22s,870974 +"RT @JamilSmith: Lindy West, on living in a Seattle choking on the smoke from nearby forest fires, likely stoked by climate change. https://…",591870 +RT @likeagirlinc: Scientists just published an entire study refuting Scott Pruitt on climate change https://t.co/g0wLCZBr5p,568912 +"RT @kdeleon: For California, fighting climate change is good for the environment and the economy #SB32 https://t.co/J8MBVnAD01",789519 +RT @manny_ottawa: Record cold weather Ottawa this weekend. Yes I know nothing to do with global warming because any contradictory evidence…,731488 +RT @jewiwee: Polar bears. You can thank global warming for this: melting ice sheets interfere with their ability to hunt. https://t.co/j6BY…,244090 +Trump's energy policy includes scrapping Obama's climate change efforts and reviving coal. #climatechange https://t.co/IhQhbKCe9I,735125 +"RT @EricBoehlert: good grief, if you think climate change = 'weather' don't hang a lantern on it for everyone to see https://t.co/ANKiA1dxuL",764484 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",646717 +Why is a VS model teaching us about climate change on Bill Nye Saves the World? Is she a scientist or is she there to get more views?,31157 +@HomrichMSU @pourmecoffee and this never came up in the debates. Skipping global warming was one thing,152232 +RT @BirdwatchExtra: Populations & distributions of 75% of England's wildlife likely to be significantly altered by climate change…,414280 +A group of young people outraged at the lack of response to climate change have won the right to sue the government. https://t.co/SzIYiGZStM,587546 +RT @ClinBioUS: Google just notched a big victory in the fight against climate change https://t.co/O45nywFNdh via @Verge,821756 +fighting for a #resilientredhook! and climate change justice. bringing updates from this South Brooklyn NY waterfront community,373215 +RT @ClimateCentral: Trump called Obama’s view of climate change's urgency “one of the dumbest statements I've ever heard in politics.â€ http…,826764 +@williamnewell3 @descalante97 @MissLizzyNJ lol are you trying to say global warming doesn't exist because you still need a jacket?,733307 +Dr. Tim Davis tells us harmful algae blooms are becoming more common with climate change. Scary! @NOAA… https://t.co/AuCIZpokVK,596788 +I am definitely for this march...there's no 'Alternative Facts' in global warming! https://t.co/g02t6ULMyR,57392 +RT @OnlineMagazin: 🆘‼ï¸⛈⛅ï¸😫 New Zealand: climate change protesters block old people at the entrance of a bank in #Dunedin. Police help. http…,761256 +Biggest pet peeve: Republicans pretending climate change doesn't exist:,586312 +"RT @pagegustofsonxx: #TwitterBlackout bc I don't stand with men who are sexist, racist, mean, and most non believers in climate change. #no…",93389 +Billionaire Richard Branson on Donald Trump: Focus on climate change https://t.co/IfjeKZz3EL via @AdellaPasos https://t.co/PA6C9sPuFy,93917 +Trump meets with Princeton physicist who says global warming is good for us - The Washington Post https://t.co/hkRrL1QEWg,73551 +@Chaosxsilencer Global warming doesnt exist but climate change does,165581 +"RT @AnnCoulter: According to the MSM, all evil is now caused by the Russians or global warming.",156791 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,823794 +"RT @latimes: Obama talks about the need for more action on climate change in his farewell speech. + +Full transcript:… ",63392 +RT @ClimateCentral: Trends in nighttime temperatures are a symptom of a world warming from from climate change https://t.co/h4G9pRPAnC http…,182207 +@LeoDiCaprio Thanks for the great documentary on climate change. It really hit home! Please check out this project https://t.co/fUiwrUtDDA,829750 +RT @Gizmodo: Donald Trump: Maybe humans did the climate change after all https://t.co/P7dLa8lK2I https://t.co/Gq5CUUxHiW,101290 +"RT @davatron5000: A climate change denier as head of EPA. +A creationist as head of Education. +A Nazi-inspired database for Muslims. +Ugh. Th…",639078 +RT @V_of_Europe: Putin says climate change not man-made https://t.co/8QCtKawXl7,960964 +Does Trump buy climate change? https://t.co/hBNAHxdHEY,884242 +RT @hondadeal4vets: Lets use those fidgit spinnas to spin the earth the opposite way and reverse global warming,333194 +"Ocean Sciences Article of the Day - Opinion: No, God won’t take care of climate change (High Country News) https://t.co/1iGTnHrQzp",180605 +RT @Mrsmaxdewinter: Opinion | Harvey should be the turning point in fighting climate change https://t.co/ULrbHtQiCB,724302 +"Amid all the 'agents of doubt' in climate change, you have to get involved https://t.co/Z5FC8Pi8pq",464585 +RT @MrKRudd: When will Turnbull gave the guts to stare down the mad right of his party on climate change. https://t.co/Xo8A77mYO0,857134 +RT @bmeyer56: Urban forestry tactics for climate change. Check them out but consider how they construct human&non-human encounters https://…,289751 +"What's an honest intelligent climate scientist to do in the face of the madness of Left-wing 'climate change',... https://t.co/kAzc8MAAV3",746574 +"Instead of building a pointless wall, how about we focus on important issues like climate change, education, jobs and healthcare. Just sayin",5343 +Koalas don't like water but they're being 'driven to drink' by climate change https://t.co/XClSuR90k4 https://t.co/26yQCmvGlD,477522 +"While the left frets about global warming, an actual threat to water access and availability exists +https://t.co/vyy8Z9HAEn",446879 +"RT @ErikSolheim: 'A conservative case for climate action' +Left, right or centre: climate change affects everyone.… ",546541 +"RT @CNN: Deadly heat waves are going to be a much bigger problem in the coming decades due to climate change, researchers sa…",732463 +"RT @MatteaMrkusic: For the first time at Sundance, there will be a spotlight #climate change and the environment. https://t.co/Cq3SnrZtCb",380608 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,336640 +"@lizoluwi @RangerGinger @JacquiLambie @AEDerocher @MickKime https://t.co/meZ20Sjz0M + +this is a must watch about climate change",52477 +"Not just tropical diseases spread by climate change, but crop & livestock diseases as well. +Lots of costs we're just starting to suspect.",194507 +2016 set to be the hottest year ever recorded - sparking fresh climate change debate - Yorkshire Post… https://t.co/x9X2SyyElX,538733 +RT @shazbkhanzdaGEO: Smog is dangerous.Reason is pollution.we need to act and act now.climate change is the biggest threat to the world htt…,622382 +New York skyscrapers adapt to climate change - https://t.co/Tkl2muOQ1K https://t.co/SIxZdjlHuD https://t.co/pEcwJb1FOv,758067 +"RT @PimpBillClinton: .@algore gotta admit you were right about global warming, dawg. It's November and it's hotter than two chicks kissing.…",969245 +Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/msW25jwaI3,6204 +RT @HillaryClinton: A historic mistake. The world is moving forward together on climate change. Paris withdrawal leaves American workers &…,360927 +"RT @Oliver_Geden: Surprisingly high number of Germans says #climate change biggest concern, left and far right voters below average…",733862 +RT @OGToiletWater: If you from the bay you know damn well the city never goes over 85. Yall still think global warming aint real https://t.…,254831 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",312789 +RT @UNFCCC: #Sundance will shine spotlight on climate change this year https://t.co/cuRgRyiHNK @sundancefest https://t.co/CHZwXCcCDE,683632 +"RT @TimesNow: Pakistani shelling, global warming, and ecological changes triggering avalanches in J&K, says Army Chief Gen Bipin… ",698155 +RT @sara_hughes_TO: Have a look at some of my early findings on implementing climate change mitigation measures in cities! https://t.co/N7u…,581241 +"RT @BelugaSolar: Going green in China, where climate change isn’t considered a hoax https://t.co/U7bshipLUi",685887 +RT @Earthjustice: These are the states fighting to save the earth: The nation's new front line of defense against climate change.…,495618 +"I sorta finished the game, I fought climate change and took a nap with King Ralph. Never left the room. #BestKey @TristinHopper #thanks",98564 +RT @MattBors: Florida. Half the state's going to disappear in ten years due to global warming. They're going for the guy who says it's a Ch…,422534 +RT @SharkMourier: A climate change checkup on spectacular coral reefs. Watch awesome @physiologyfish explaining this crucial issue!…,378882 +RT @Paul4Anka: Sailor of global warming https://t.co/0BJGbnGdtT,175872 +RT @bpolitics: Welcome to the first U.S. town to get federal money to move because of global warming https://t.co/mN5453BJmO,135908 +@latimes @latimesopinion I really hope climate change takes California and all it's cultural sickness out to sea.,840249 +@benshapiro we should blame climate change.,37433 +A supercomputer in coal country is analyzing climate change https://t.co/YRoekNhycx,231996 +@JohnJohnsonson @rohan_connolly Vote PHONy- we'll make sure climate change is the least of your worries!,573211 +RT @stranahan: Leonardo DiCaprio hopes to use Ivanka Trump to push climate change policy – TheBlaze https://t.co/jcFL7a1Cue,703385 +"RT @quinncy: 2017: Humans aren't responsible for global warming, are responsible for not mentioning how they're not responsible…",11101 +#Rigged #StrongerTogether #DNCLeak #Debate #Iamwithher climate change is directly related to global terrorism https://t.co/6SoXS3kdim,819890 +"@southerncagna @POTUS in air force one, no doubt.... that's a pretty penny and what about the climate change 😕",572492 +#researchpreneur #Twitter #Futurism A comparison of what LamarSmithTX21 says about climate change and what science says about climate chang…,120502 +RT @NatureNews: Donald Trump should start his presidency by dropping his pantomime-villain act on climate change…,146930 +"RT @LivingBlueinRed: Gee a bunch of 70 year old rich white guys aren't worried about climate change and the fate of the planet. +Go figure.",913546 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,808868 +Novel new lawsuit on behalf of 21 kids against fed to fight back on climate change https://t.co/T5VyADL9Kq,383788 +"Australia faces potentially disastrous consequences of climate change, inquiry told https://t.co/Xyk1aTHNwH",629338 +Lol if you believe in global warming your an idit @NASA,429250 +@IngrahamAngle @nytimes Obama was liked by globalist leaders because he supported the climate change hoax agenda and retreat of U.S. power.,327253 +Vicki Cobb: The Cheeseburger of the Forest: Evidence of Global Warming: For the climate change… https://t.co/j6Td26KYSa | @HuffingtonPost,233323 +RT @GreenPartyUS: The human cost of climate change is too high. We need to get off fossil fuels and on to renewable energy by 2030 if we ho…,754966 +WAIT!! I thought climate change was our fault ?!? https://t.co/8x9alu051P,5107 +"Some of y'all STILL don't think climate change is real and I just do not understand why + +https://t.co/fMYrDe6DwY",285700 +@realDonaldTrump if global warming isn't real then why is my seasonal depression lasting the whole year?,997597 +Is Game of Thrones an allegory for climate change? Is Jon Snow supposed to be Al Gore? I'm on to something here folks I SWEAR,605325 +RT @BBWslayer666: Im gunna be pissed if the world ends by some lame ass global warming and not an alien invasion or A.I hitman androids,181468 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,921776 +RT @jaboukie: climate change is too real for us not to install solar panels in congress and harness the collective shine of old white polit…,131890 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,727491 +@robinmonotti About turn on climate change - that's a big one.,407368 +"RT @NYGovCuomo: With or without Washington, we're working to aggressively fight climate change and protect our future. #ClimateMarch https:…",720318 +"RT @SafetyPinDaily: Native American tribes reject U.S. on climate change and pledge to uphold the Paris Accord | Via @newsweek +https://t.co…",521215 +"RT @fiscal_penalty: Despite the global warming, Alaska has had very little, if any, warming since 1977 (except Barrow), as shown below: htt…",699505 +RT @kylegriffin1: Dan Rather goes off on climate change deniers—'To cherry pick the science you like is to show you really don't unde…,260605 +"RT @KamalaHarris: Tackling climate change is also about improving our state’s public health. Read more: +https://t.co/ZRU7HJRmVA",4496 +"Trump: climate change is probs fake +Scientists: nope. No it's not +Trump: wish we knew +Scientists: it's REAL +Trump: guess we'll never know :/",162556 +"RT @Grayse_Kelly: 'Polar bears don't have any natural enemies, so if it dies, it's from starvation' +This is for the 'global warming…",283270 +"RT @charliemcdrmott: That our future president does not believe in climate change, or that he does but has personal interests that keep him…",631070 +RT @mark_johnston: Merkel urges bigger fight against climate change after U.S. move https://t.co/35XDGrUgWw https://t.co/DjIV7fDHEU,343853 +#climatechange UW Today Rapid decline of Arctic sea ice a combination of climate change and… https://t.co/iCvPL2bYXe via #hng #world #news,195609 +RT @Greenpeace: Europe is facing rising sea levels and more extreme weather because of climate change https://t.co/TmkUgsMZ6j…,729294 +"This major Canadian river dried up in just four days, because of climate change https://t.co/kFUilhc2vn https://t.co/mlCs32dejK",342029 +RT @MichaelEMann: '#RexTillerson’s view of climate change: just an engineering problem' @ChriscMooney @WashingtonPost: https://t.co/EExB1OS…,31305 +"RT @RepTedLieu: Estimated proportion of scientists that reject consensus of man-made climate change: 1 in 17,352, or 0.000058%. #DefendScie…",974349 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,827385 +.@RepDennisRoss Don’t let our children face climate change disaster! #ParisAgreement #CleanPowerPlan #SaveTheEPA #ActOnClimate #swingdist,110637 +MUST READ THREAD�� Ideologues ignore climate change but DOD recognizes that it's a NATIONAL SECURITY ISSUE… https://t.co/eAdLMF85mU,330981 +RT @beemovie_bot: I predicted global warming.,716213 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,673772 +RT @JonahNRO: I don't think you got the memo that you're not allowed to say anything positive about climate change. https://t.co/p0ok3eV9jJ,533976 +"Well, to be fair to @KamalaHarris, John Kerry did say that 'climate change' is a greater threat than terrorism.",467243 +Top Russian Scientist: ‘fear a deep temperature drop — not global warming’ https://t.co/zqgkOQfYZg via @PSI_Intl,671317 +Chad is the country most vulnerable to climate change – here's why https://t.co/Jh6yjo7Rlu,232183 +"China and the EU could issue a formal climate change statement by next week, ex-UN official says https://t.co/IOzVcTU5T4",489015 +RT @WorldfNature: A supercomputer in coal country is analyzing climate change - Engadget https://t.co/QtVmZdIm4S https://t.co/M5Q3evANNo,356158 +RT @AlexCKaufman: Concussions are to the NFL what climate change is to fossil fuel industry. https://t.co/lE2uCt1b9R,988748 +Is the bridge of Heroin really about global warming I'm shook,240002 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,873392 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,345670 +"Retweeted Inquirer (@inquirerdotnet): + +#PresidentDuterte says he will sign the climate change agreement. |... https://t.co/FySpc7fRg9",356761 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,530584 +"RT @drewparks: Sick of hearing about Russia and tweets and scandals... it's time to talk about Flint, pipelines, and climate change.",177001 +Nice to see the issue of climate change is being addressed by the government..... https://t.co/m9qraM3cys,525148 +@RealJack climate change is nothing new...The ancients migrated out of the place we now call Sahara Desert (from 'Eden' to Sweden).,347083 +RT @JoshBBornstein: Strong contender for muppet of the year. Should stick to climate change. https://t.co/UoHE4L15LI,784269 +RT @CNN: President-elect Donald Trump says 'nobody really knows' if climate change is real https://t.co/BTl3I3w7Cr https://t.co/QNF5ax8DjA,420686 +"Kids (ages 9-20 yo) are gearing up to take Trump to court over climate change +https://t.co/dn7UTh74Q0 via @theblaze",918830 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,550616 +"The left has turned climate change into a form of religious dogma, beyond reproach. The cthlc church killed Galileo over 'settled science' ��",696228 +"RT @Doener: Gates, Bezos, Jack Ma and others worth $170 billion are launching a clean-energy fund to fight climate change: https://t.co/uTM…",861731 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,677852 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,591361 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",962050 +RT @guardianeco: Modern agriculture cultivates climate change – we must nurture biodiversity https://t.co/jcY1WaiE5I,76649 +"RT @MrTommyCampbell: Mike Pence +#ScienceCelebs @midnight + +(Just kidding! He thinks climate change is a hoax, evolution isn't real & homos…",832328 +Hundreds of millions of people are at risk of climate change displacement in the decades a... https://t.co/o0ZEFgOEOZ #globalcitizen,239449 +RT @IndyUSA: Scientists explain apocalyptic effect of Trump pulling out of the Paris climate change agreement…,467995 +Six irrefutable pieces of evidence that prove climate change is real https://t.co/oOEMKHB7eF,467450 +Anthropogenic climate change is absolutely real. Drawing specious conclusions between a freak storm and regular wet seasons is idiotic.,127162 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",477381 +#alberta #carbontax Thanks NDP! You carbon tax is doing magic. Life is bitter cold in AB. Finally global warming is gone by taxing air !,58715 +RT @ClimateReality: We can debate how to tackle climate change – but the science is settled #ClimateMarch #ActOnClimate https://t.co/0QIKSh…,701473 +"Carbon dioxide not ‘primary contributor’ to global warming, EPA chief says https://t.co/qQsNni6clh https://t.co/e5k4kbPMcg",893061 +"RT @Arctic16: this is horrible, when will we wake up to the realities of climate change? https://t.co/h2jMWizKoY",335217 +"Tell me again how you think climate change doesn't exist. +https://t.co/UBwSAr1YfH",909071 +Trump to sign sweeping rollback of Obama-era climate change rules https://t.co/1BgTlOq9QF,471885 +"@eemorana I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",164325 +Caribbean countries get financial help to fight climate change... https://t.co/KOgyqq7gWP,875446 +"26 before and after images of climate change: Since the election, leaders of the environmental movement and… https://t.co/dwcP4DPPku",366749 +RT @Eugene_Robinson: Trump can’t deny climate change without a fight https://t.co/vWgwkE8GTi,625267 +Did you know air-conditioners are 90% rayon responsible and responsible for global warming amazing,805316 +"RT @YarmolukDan: AI utilized for the most critical problems today, climate change, disease, realize the good #AIclimatechange https://t.co/…",779520 +"@deanna_reyess maybe if I pay him, like big oil pays him to deny climate change , he'll show 🤔",967449 +Obama’s “climate change legacy” = dumping billions of taxpayer $ down a well. https://t.co/swF34JRAgS,39093 +aye you believe in climate change @aaroncarter?,306078 +"RT @MikeHudema: Scott Pruitt, head of the EPA, said that carbon dioxide isn't a primary contributor to global warming… ",983065 +RT @Alyssa_Milano: This is huge. Kids suing the government over climate change can proceed to trial: https://t.co/C53TlAEN13 via @slate,106475 +"RT @Cllr_KevinMaton: How to fix climate change: put cities in charge. +Coventry Council must continue its drive in this area https://t.co/c…",380508 +@FSUSarah42 And they say global warming isn't real! https://t.co/k0aN2o13LG,236562 +Finally the year we don't have to make up snow days and global warming decides to be real,589848 +RT @ClimateGroup: Companies like @GM are leading the fight against climate change: @DamianTCG #COP22 https://t.co/SUxE5WE44d,741895 +RT @kentkristensen1: @kentkristensen1 we need to protect our planet the climate change is real and it's fast #climatechange help please 👍 h…,204042 +"RT @WillMcAvoyACN: Yes, the White House website's climate change page is gone. All the policy pages on https://t.co/Ju0da64MI6 have been ta…",238985 +#Wisconsin disaster agency plans for climate change https://t.co/9yzR4DSsDW,468940 +RT @thetommyburns: So we're actually close to electing a dude who doesn't believe in global warming?? Like as if its an opinion or something,467571 +RT @RECOFTC: #ForestsMatter because they minimize the negative impacts of climate change. #ForestActionDay #COP22…,86934 +"@HuffingtonPost Of course he did. Denies sexual assault, climate change, Trump U fraud. This is small stuff to him.",650045 +":: Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/qHyO4ip5gY via @ShipsandPorts",334396 +Ice Age climate change played a bigger role in skunk genetics than geological barriers - https://t.co/k16i38AV4y https://t.co/DXNCohwJcs,308397 +RT @ideas4thefuture: ‘There’s no plan B’: climate change scientists fear consequence of Trump victory https://t.co/U2cQQqHJPR,435631 +RT @CleanAirMoms: Reading: Guardian How Obama's climate change legacy is weakened by US investment in dirty fuel https://t.co/PshDJsiwAe,206312 +I also wonder how all those people who liked the 'I fucking love science' facebook page feel about climate change.,565453 +"RT @BillMoyersHQ: The threat of climate change is pushing environmental law into new territory, writes @LightTweeting https://t.co/wqA5Wsag…",250852 +"RT @350: We have two options. Either we continue down the path towards climate change, or we #BreakFree from fossil fuels… ",511144 +RT @ericcoreyfreed: Anthrax spores stay alive in permafrost for 100 years. Enter climate change. Can you guess what happened next? https://…,985030 +RT @MiriamElder: I've long been arguing that 'we're all gonna die' is a better term than 'climate change' anyway. https://t.co/HJGCRGOohz,5045 +"RT @billmckibben: Hey, a hit of good news: judge allows youth lawsuit against fed govt on climate change to proceed! https://t.co/P4Y11CEbaQ",962371 +"Is this who we really want to be? A nation with a leader who promotes bigotry, racism, anti-women, anti-journalism, anti-climate change?",179695 +RT @aroseadam: Need bedtime reading? Our modeling paper on the effects of realistic climate change on food webs is out! https://t.co/VvaWIo…,571674 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,708517 +"Republican logic: Renewable resources are imaginary, like climate change https://t.co/orN3DfTUZ0",949891 +Financial firms lead shareholder rebellion against ExxonMobil climate change policies https://t.co/KIEfhZJ0Ou,451267 +"RT @De_Imperial: Mahlobo, 'Baba, global warming is caused by Pravin.' +Jacob, 'Iqiniso. Put that in a report.' https://t.co/0SDboKyXKd",463572 +"RT @JamilSmith: Trump’s presidency may doom the planet, and not just because he’ll have nukes. @bradplumer, on climate change. https://t.co…",527910 +"RT @1963nWaiting: Yes, the climate changed and there was a hurricane. When it subsides the climate will change again. Come on Bill, g…",446310 +"The Trump administration's solution to climate change: ban the term + +https://t.co/Me6HJDFyAU",105414 +"RT @FCM_DCausley: The @city_whitehorse is taking action on climate change #cities4climate #CANclimateaction +https://t.co/S1AslONsKH",18138 +"RT @ramonbautista: Numinipis na ang yelo sa Arctic Circle, pati si Santa nangangayayat na. Nakakatakot talaga ang global warming https://t.…",653784 +RT @JackeeHarry: Frosty The Snowman melted because President Trump refused to take the threat of climate change seriously. #FakeChristmasSo…,331838 +Securing a future for coral reefs 'requires urgent & rapid action to reduce global warming.' 'Tis the only solution …,650762 +Aka Similar to climate change Americans prefer to wait until it is too late to do anything https://t.co/1ke5ViqrEX via @bpolitics,826394 +"RT @JonTronShow: I understand skepticism but I really never understood climate change denial, to me it seems entirely plausible",164947 +"#Space #News • Trump's budget plan for NASA focuses on studying space, not climate change - Los Angeles Times https://t.co/nlyTk1otDV",871573 +RT @cskendrick: @gwfrink3 @ballerinaX And both are on the short list of Most Likely To Cease Being Countries thanks to climate change...,737732 +RT @nature_org: Step 1: Identify key landscapes that could native species amid climate change. Step 2: Protect them w/ partners:…,78892 +RT @JeperkinsJune: Where the hell is PETA? Worry about whales and global warming and bears not having ice but quiet when their muslim…,950200 +RT @foxandfriends: POLL: 29% of voters are 'extremely concerned' about climate change https://t.co/9sOCJGiyWD,484870 +Nicely said: 'Financiers are not philanthropists. But (...) allies in the fight against climate change' [in French] https://t.co/5yPUhCdEWW,382863 +"RT @MrStevenCree: Sorry. Maybe I should have been sexist, racist, xenophobic, wall building & denied climate change exists. Is that c…",155451 +RT @FinnWittrock: .@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://…,361880 +RT @CarolineLucas: Very disappointing that @theresa_may hasn't made climate change one of her top four priorities at the #G20: https://t.co…,625561 +"Devastating global warming is inevitable due to inaction of international community, says leading economist https://t.co/lWGaI7ss4i",675442 +RT @POLITICOMag: Now is the time to say it as loudly as possible: Harvey is what climate change looks like. https://t.co/MTvWJ6LRLd,113514 +"RT @aerdt: One of the world's leading experts on climate change is calling for rebellion against #Trump | By @montaukian +https://t.co/lvHZm…",19397 +Gender Action Plan aims to integrate gender into climate change policies and strategies https://t.co/vkOOUzjT5Q via @NonProfitBlogs,718093 +"RT @EllerySchneider: ME: how can I worry about a career when global warming is threatening our very existence? +DRIVE THRU: please just pull…",428411 +"RT @ConversationUK: Rising temps, extreme poverty and a refugee crisis - why Chad is the country most vulnerable to climate change…",908602 +RT @SwannyQLD: The 10 lost years on climate change policy is entirely due to climate change deniers and vested interests #auspol,595852 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",866548 +waste side taxing us throw our leaking roof breaking fedral immgrational and consitutional laws and under Obama for fake climate change,516734 +RT @GuardianUS: Day 49: Donald Trump's EPA director denied carbon dioxide causes global warming https://t.co/kbFJvfuoGV https://t.co/XcyAl4…,203690 +@D1dupre96 They probably won't bring up his past climate change predictions,457889 +Is climate change real?' @CastanetNews mixed the words up - should read 'Climate change is real.' #climatechange https://t.co/l8VIMg0UDd,42699 +You know there's something wrong.when the safety of your country doesn't matter and climate change is more importan… https://t.co/3yDRa9A3um,564817 +RT @brenbrennnn: Let's watch Planet Earth and brainstorm ways to convince our world leaders that global warming is proven science and that…,519244 +"SRSLY WHATS THE RETURN POLICY ON TRUMP? I want a refund, inmediately. I cannot with this climate change denial. Absolutely cannot.",634222 +"RT @benji_driver: Just like @TurnbullMalcolm 'fixed' his beliefs on climate change, and just tossed them out the window? Simply not g…",851947 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,925224 +"RT @WtfRenaissance: When scientists are trying to explain climate change to you, but you don't care cos you President of the United Sta…",776585 +@CivilSocietyOz US 90% population growth 10% emissions growth until now - People want action on climate change and… https://t.co/RNQqxM308C,603969 +Don't let FAKE NEWS tell you that climate change is damaging this country's future. Outrageous!,848121 +@briana_erran feel like it good for the planet to make innovative procedures to adapt to climate change but it shou… https://t.co/zl3vQrNJpr,745737 +RT @BulletinAtomic: Latest Voices of Tomorrow essay by a very young scholar: Nukes & climate change: Double whammy for Marshall Islands…,706675 +NatGeo’s climate change documentary with Leonardo DiCaprio is now on YouTube https://t.co/9F2uNfY6TB by #jokoanwar via @c0nvey,891427 +RT @Papizayyyy: The fact that Trump doesn't believe in climate change is scary asl,311901 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,190297 +RT @TLT16: That's some evil magic right there. Someone pissed off an environmentalist by denying climate change & they got mag…,782363 +How to curb climate change yourself: drive a more efficient car.. Related Articles: https://t.co/36Ia0ZJRQW,44291 +"RT @GreenPartyUS: There is overwhelming consensus that climate change is happening and that humans are contributing, @EPAScottPruitt. https…",370428 +RT @chattyexpat: The article is more about climate change than Syria. It has a great analogy comparing CO2 emissions to weight gain. https:…,899174 +RT @kenkimmell: Outraged that EPA Head Pruitt denies that CO2 causes global warming. Confirms my worst fears. https://t.co/E8s0ZLIAPV,144125 +RT @TulsiGabbard: Together we are raising our voices about what we can do to address climate change. Add your voice through Nov. 6 → https:…,422237 +"From Asia to outback Australia, farmers are on the climate change frontline - The Guardian https://t.co/opXJOeUTDk",554582 +RT @ClimateTruthNow: The myth of man-made global warming has been busted: https://t.co/j6EMk0AGmI #climate,242199 +Makes you wonder how some still question climate change... https://t.co/c7XmtheBHh,232219 +"RT @c40cities: Mayors of Paris & Washington are inspiring global leaders, committed to tackling climate change #Women4Climate…",224076 +The impact of humans and climate change can be seen in this 30-year of Earth evolution. https://t.co/hbHYkgJS2t via @TIME,945898 +Trump to reverse Obama-era order aimed at planning for climate change - The Denver Post https://t.co/INSCSgFsYZ https://t.co/WdpmUdTePS,564911 +Let's hope Obama's last days as President aren't spent trying to prove catastrophic man made global warming. https://t.co/bxoL7YI9fk,343688 +RT @Spaghetti3332: Who would you trust to solve climate change ? ��������,371908 +John Kerry says he'll continue with global warming efforts - https://t.co/CgTdcIaEEq,627574 +RT @hoplitnet: Conservative logic on climate change. https://t.co/xj7EyTwwJX,180485 +RT @JaredLeto: It’s time to change climate change. Join the #PeoplesClimate March today: https://t.co/GoejKrwmj0 #ClimateMarch,249763 +RT @ProPublica: Harvard researchers have concluded that Exxon Mobil “misled the public” about climate change. For nearly 40 years.…,651375 +RT @FactsGuide: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/g6KXAdyLHd,660951 +A 1.5℃ rise in global warming will bring climate chaos. Is the government helping? #HR Found at https://t.co/W3WYUuGz31,657758 +RT @avancenz: This recent wild weather is 'possibly' due to climate change - PM ��,237867 +"A UCLA prof recommends replacing dogs & cats w/more climate-friendly pets in name of global warming. + +https://t.co/TBI2qSeLLK via @ccdeditor",782819 +RT @guardianeco: Conservative groups shrug off link between tropical storm Harvey and climate change https://t.co/f4iQZntpT3,791928 +@chrislhayes If only there were multiple federal agencies that were researching ways to predict/slow/mitigate the effects of climate change,294609 +RT @Forbes: Billionaire Michael Bloomberg pledges $15 million to combat climate change as Trump ditches #ParisAgreement…,850390 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,396547 +No global warming books on my bookshelf! https://t.co/TT9GX2Ns2L,142830 +How climate change could make air travel even more unpleasant https://t.co/hgNy6OL7Td,250983 +"RT @AndreaGorman8: #LNP, and lackey One Nation circus, logic on climate change. The idiots... I mean adults are in charge #auspol… ",443938 +RT @NatGeoChannel: One of the easiest ways to help combat climate change in your daily life is to stop eating beef. Here's why:…,831490 +"Oil extraction policy incompatible with climate change push, MSPs told https://t.co/ddBwAAWkUt",418267 +"RT @drwaheeduddin: Chilly & cloudy April Sunday morning; outside temperature barely 60°F or 15°C in afternoon. +No global warming. CO2…",860398 +RT @RubyandDew: @USFreedomArmy @AbnInfVet the only global warming is all the B.S. From the potus hot air he's blowing out his pie hole and…,763872 +"RT @MehrTarar: Most of them have not even heard of leukemia,lymphoma, climate change,Alzheimer's, malnutrition, stunted growth: AL… ",574726 +RT @CNBC: EPA chief Scott Pruitt says carbon dioxide is not a primary contributor to global warming https://t.co/pYlXvtrIII https://t.co/ca…,142336 +"RT @ClimateRealists: MUST SEE VIDEO: Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges http…",213055 +"RT @marc_rr: Excellent (slightly provocative): +Anti-vaccers, #climate change deniers, and anti #GMO activists are all the same…",455829 +"RT @angel_gif: 2050, after vegans spent decades warning carnists about animal agriculture and climate change but they were all 'lo…",656699 +"RT @davidcicilline: How many scientists reject the idea that human activity contributes to climate change? About 1 in 17,352 #DefendScience…",171902 +RT @sabbanms: Donald Trump's most senior climate change official says humans are not primary cause of global warming https://t.co/OSgptyBN…,350128 +"@Baileytruett_yo @Tomleewalker why do people defend the leading cause of climate change, deforestation, pollution etc get over it it's meat",714025 +"@ikilledvoldy Does it really matter? With climate change initiatives being thrown out the window, they'll sink before they can secede.",17420 +@marx_knopfler Which was caused by global warming. We can expect much more and much worse.,44772 +#diet driving global warming women's shirts online shopping,643168 +RT @tomzellerjr: Shouldn't this headline include the word 'Derp'? 'EPA chief says CO2 is not a primary contributor to global warming…,704610 +RT @RichardDawkins: President Trump may destroy America but maybe we can stop him destroying the world. Sign the climate change petition ht…,820523 +"RT @Greenpeace: If we don't take action to curb climate change, storms like #Harvey will just keep on getting worse. https://t.co/jEdX3s1rWm",37607 +RT @Independent: G7 leaders blame Trump for failure to reach climate change agreement https://t.co/erTgfLdGPe https://t.co/jYt02lRr3f,680087 +"RT @Kloppholic: Imagine trying to convince yourself that global warming isn't real and instead a conspiracy. Wake up, before it's t…",509948 +RT @dailykos: This is what climate change denial looks like https://t.co/lbJ6CYiXwp,938423 +"Arctic voyage finds global warming impact on ice, animals https://t.co/HaSeCV2USJ",476346 +Trump to drop climate change from environmental reviews: https://t.co/MLDOCYTKDO via @AOL,617648 +"RT @reubenesp: After Obama, Trump may face children suing over global warming https://t.co/vFsThxKj5l #copolitics @fractivist",659939 +"RT @amconmag: If liberals could invent the perfect problem to promote their policies, it would be climate change. https://t.co/KhAxDW5z18",510346 +"Longer heat waves, heavier smog go hand in hand with climate change | Ars Technica - https://t.co/DQHhxC30TI",106516 +We might elect a president who doesn't believe in climate change :(,187412 +"The @EPA's Pruitt can disregard the role of CO2 in climate change, but choosing renewable energy can exert market pressure beyond his words.",530662 +RT @waltjesseskylar: @DrMartyFox Tell this to the millennials who dont seem bothered by this but are so focused on the climate change hoax,969059 +"In Peru, droughts give way to floods as climate change looms https://t.co/dhQkk9VZMc",233113 +RT @obamalexi: the concept of headass was created by and for the people who don't believe global warming is real https://t.co/MeAoNNdjaA,881485 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",396578 +"RT @Svenrgy: If Trump wants to create jobs, he should take climate change serious. https://t.co/5hsPm6NXFS",722776 +@ClimateReality Climate alarmists Stop dictating & start debating your claims about climate change in balanced public debates.,69263 +RT @thinkprogress: Trump EPA cuts life-saving clean cookstove program because it mentions climate change https://t.co/CrK3Il8HdM https://t.…,783056 +RT @Greenpeace: We know what global warming looks and feels like. But what does it SOUND like? https://t.co/BrSHYQPqRP https://t.co/vYVPwaW…,29053 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,45878 +EPA chief says carbon dioxide not 'primary contributor' to climate change https://t.co/Vv1RBfXirD,845042 +"RT @Reuters: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/7XPVkzSogY https://t.co/3dslS1o92V",78628 +"RT @MotherJones: The Great Barrier Reef is in peril, and climate change will destroy it https://t.co/0Ufa6zdLcr https://t.co/IaD01WCHcZ",899274 +EPA chief: Carbon dioxide not 'primary contributor' to climate change https://t.co/eTxvp3yNth,485857 +Think about this: China knows more about climate change than Drumpf... #FillTheSwamp https://t.co/37QomzpgqT,914284 +"RT @MS__6: @BBCBreaking National interest? Tories to form with an anti-gay, anti-women's rights, climate change denying party…",590949 +RT @igorvolsky: Trump's White House website has removed all mentions of the phrase 'climate change' https://t.co/H501ML98Uo,286808 +RT @EnvDefenseFund: These 3 charts show how climate change is the world’s biggest risk. https://t.co/DFBYakdVxE,449133 +RT @KellyGraay: People posting pics for Earth Day but they voted for a man who doesn't believe in global warming ��,145375 +Trump's just-named EPA chief is a climate change denier https://t.co/BOryvlXbnz,769261 +"RT @CircularEcology: Stopping global warming is only way to save Great Barrier Reef, scientists warn https://t.co/liE9lLuCFr https://t.co/0…",769524 +"RT @NCConservation: 'Clean energy not only combats climate change, it creates good-paying jobs.' + +NC's Attny General on Trump's EO aga…",968896 +"In race to curb climate change, cities outpace governments..! https://t.co/SRluNLbehh vía @Reuters",313839 +"Great paper - CC attention is usually on av. global temp, but 'climate change most often affects people with specif… https://t.co/0BLYdQnBbn",775822 +"RT @PrisonPlanet: DiCaprio. + +Hangs out with oil tycoons, flies private jet 6 times in 6 weeks. + +Lectures you about global warming. + +https:/…",293312 +@AnybodyOutThar @DonaldJTrumpJr It's climate change from global warming caused by fossil fuels. Stop spreading lies.,495182 +"RT @JaclynGlenn: So excited to have a racist misogynistic climate change denier as our next President!!! Whooo America FUCK YEAH + +kill me",896063 +"RT @UNEP: Our future crops will face threats not only from climate change, but also from the massive expansion of cities:… ",2325 +RT @TheAtlantic: Kaine presses Tillerson on whether Exxon knew about global warming in 1982 https://t.co/MZ0XXs0mL2 https://t.co/I3B2kwKrpg,795486 +RT @MichaelGerrard: Our new easier-to-use website full of materials on climate change and the law https://t.co/MneypsUczM,135329 +"@ksenapathy Yes. Evidence on pro-GMO stance. Trump's ideas on climate change, economy, & almost everything else poor. DT not proscience.",885345 +"Sebagai dampak global warming, musim hujan yang tidak beraturan lebih merugikan bagi Indonesia dibanding Negara lain.",703319 +"RT @1der_bread: Dear republicans, it was 75 degrees 5 minutes ago now it's a thunderstorm, plz tell me how global warming doesn't exist!",595781 +"RT @ClimateReality: The @Energy Dep’t doesn’t want staff to say “climate change.” You can ban words, but you can’t change reality. https://…",243128 +College's break with climate change deniers riles debate over divestment strategies https://t.co/K4BXVd3ZA6 via @HuffPostPol,589175 +I see you global warming 😏 https://t.co/w3wlDZUgWT,473007 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,145261 +"RT @Pappiness: @realDonaldTrump Yes, because the threat of climate change should be reduced to a reality show teaser.",942956 +RT @petefrt: Confirmed: NASA invented global warming by tampering raw temperature records. https://t.co/9on0KbSwnI #tcot #p2 https://t.co/6…,524966 +"Trump team memo on climate change alarms Energy Dept staff https://t.co/CLSAeA3FWi +#faithlesselectors MUST DO YOUR DUTY TO STOP FASCISM.",713766 +How can we trust global warming scientists asks David Rose https://t.co/K7w6P8yr6R @MailOnline,440834 +"@AJEnglish But the rich get richer, congratulations. You are more danger to the world than global warming",94839 +@realDonaldTrump even more so: the voice of our planet needs to be heard. Global warming and climate change are real. RESIST.,730063 +RT @nobby15: IDIOT IN ACTION - One Nation senator Malcolm Roberts asking about the connection between penises and climate change…,120270 +RT @miraschor: *This* is his idea of infrastructure & he's doing nothing to allay climate change. The man is a danger to humanity…,73612 +"This #climatechange research mission was cancelled due to #climate change +https://t.co/raDajcHDxN +#ActonClimate… https://t.co/XqWJqeAIkv",432813 +"RT @AmericanAssh0le: okay after gaining the knowledge that this exists i'm rooting for global warming. end this planet, Sun. https://t.co/5…",317254 +"@spongmai_0 da kho paky environmental use ko,, os me envirmtal engg slides katal no global warming paky raghy . ma v che yad she rata ������",149855 +Gov. Jerry Brown on the Paris climate change accord: 'Trump is AWOL but California is... https://t.co/LPheH9SY2H https://t.co/GYR3eESH06,588233 +"RT @reclaimthepower: Another reminder that #fracking and climate change go hand in hand... + +https://t.co/zqVZ8VoB4C",860852 +RT @RVAwonk: The Trump admin just removed the EPA's #ClimateChange page. Apparently they think that will make climate change dis…,762132 +"@davidgraeber I suppose, but I'm incredibly trepidatious about what Trump will do when faced with challenge. Also, climate change.",694699 +"2 hours in, climate change gone.... #Inauguration #Trump https://t.co/c0eDz3NYsz",357323 +RT @washingtonpost: This is the other way that Trump could worsen global warming https://t.co/09ocSab4B1,617071 +"So what I'm saying is, I believe that anti union folks are not racist, alt right, climate change deniers. But you should not trust them",909332 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,460019 +RT @NatureNews: Donald Trump should start his presidency by dropping his pantomime-villain act on climate change…,175290 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",845224 +RT @ClimateReality: Our oceans are also becoming more acidic due to climate change. That’s a nightmare for coral reefs https://t.co/68jVgLE…,77234 +"RT @SteveSGoddard: If everyone saw this video, global warming alarmism would disappear. Please pass it around. +@AtmosNews +https://t.co/bOr…",337929 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/u1btqtz5s5 https://t.co/COPRxAMPvh,846396 +RT @NPR: 'We believe climate change is real.' -- Shell CEO Ben van Beurden https://t.co/MAptcRkHwe,515567 +And ya all say global warming dont wxist smh https://t.co/EIqG3RyLFS,365305 +"Hopefully, no global warming alarmists got frostbite https://t.co/FGaM5Kz8Zm via @dailycaller",410068 +"#bbcbreakfast 20secs on climate change - no opinion / reaction, 40 secs + disdain on dave worm, #weakbbc",123198 +RT @UN: 12 #globalgoals are directly linked to climate change. The #ParisAgreement is crucial to achieve them.…,287376 +It actually amazes me how some Americans still don't believe in global warming wtf lol,799250 +These politicians that deny climate change are poisonous and corrupt,744900 +Just commented on @thejournal_ie: New US environment chief questions carbon link to global warming - https://t.co/9JzXeFSA40,505135 +so Trump's apparently 'open minded' towards global warming and isn't going to incriminate the Clintons. That's interesting,380314 +#global warming sex free toons sex https://t.co/YbWAO6Lksw,272452 +"RT @AfDB_Group: 1) climate change, 2) unemployment, & 3) poverty make Africans vulnerable to extremism, esp. youth in rural areas - @akin_a…",164506 +"2016's 'exceptional' weather proves that climate change is real, say scientists https://t.co/smVpfHuZPb",825234 +Trump's pick to lead the EPA is suing the EPA over climate change: https://t.co/pNFwq2KlbJ https://t.co/MJXNtAbsca,959388 +"RT @mitchellvii: Funny, the other leaders at the G7 want to talk about fictional climate change. Why? Because it's a US wealth redistribu…",502275 +RT @UN_Women: Souhad has seen how climate change disproportionately affects women in her village. Let's take action:…,663775 +RT @GT_bd1986: The beginning of the end of the religion of global warming money machine https://t.co/LRJtbQYbaf,515364 +RT @golzgoalz: When the weather is nice out but u still believe in climate change: https://t.co/ZXfI5LP0Lu,29777 +"Actually climate change has caused poverty, that has helped recruit people to terrorism. https://t.co/JizSnJCpft",857998 +RT @NRDC: More than 70 percent of Japan’s largest coral reef has died due to climate change. https://t.co/i7Av7I0zBF via @washingtonpost #C…,930993 +"system change, NOT climate change! https://t.co/dGiaF5gxLL",225367 +".@RogerGodsiff pls publicly oppose DUP views on abortion, same-sex-marriage + climate change #DUPdeal",299046 +RT @angelafritz: Here's what the AMS has to say about Rick Perry's denial that CO2 is the primary driver of climate change. @ametsoc https:…,54060 +#EarthCareAwards is for excellence in climate change mitigation and adaption. Join here https://t.co/h3duliTBZW @TheJSWGroup,153537 +Farmer suicides have disrupted India's countryside. New findings suggest climate change is playing a role… https://t.co/iFVypH1Dlp,77959 +"@realDonaldTrump climate change is real, you are not. https://t.co/tQ5mUThHMk",238755 +RT @peta2: Meat production �� is a leading cause of ☝️ climate change �� water waste �� & deforestation ���� Stop #ClimateChange: #GoVegan,913486 +RT @DrDeJarnett: It's vital that the public health community addresses climate change- via @Climate4Health's Tabola #APHA2016 https://t.co/…,14443 +RT @AltHotSprings: Even Santa is at risk of climate change... https://t.co/y5X0eG6MA8,604691 +"The, 'world problem' of global warming is that people are sold there's global warming. #RedEye",56693 +"RT @s_colenbrander: Bankers can save the world from climate change - if only to protect share prices & asset values. + +~Roger Gifford, @SEBG…",397430 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,292158 +RT @ramanmann1974: Effects of rising temperatures from climate change would likely reduce #Rice yield by 10% by 2050. https://t.co/3jAhsabb…,263045 +RT @ShenazTreasury: Trump really doesn't want to face these 21 kids on climate change - Mashable https://t.co/mu6tMvYiZX,686702 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",111969 +Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/7o4t4C89I5 via @voxdotcom,575864 +RT @thinkprogress: What happens if the EPA is stripped of its power to fight climate change? https://t.co/NLqS5AvfiF https://t.co/PkpcJ23YKL,592714 +"Malcolm Turnbull must address the health risks of climate change, for the health & well-being of all Australians https://t.co/XOUbQY2Vkp",788130 +EPA chief doubts climate change science – Sky News Australia https://t.co/vLgrY0UzJu,283215 +"RT @ShiftingClimate: If who won World Series were climate change + +'Media bias!' +'Players given grant $!' +'Fake outcome sports scandal of c…",463455 +RT @lSABABE: goodnight to everyone except to those who don't believe in climate change,84395 +Look at the climate change data on NASAs website! @realDonaldTrump 22,111750 +"RT @nytclimate: Most Americans know climate change is happening, but then things get complicated. Climate opinion maps show splits: https:/…",930512 +RT JoyfullyECO 'Creating awareness is one of the biggest parts of preventing climate change #actonclimate #gogreen… https://t.co/cjtetBB9RO',582792 +"RT @MichelleRogCook: @SocDems I am so aware of your commitment - at climate change conf in Maynooth, @CathMurphyTD was ONLY TD in attendanc…",172215 +"RT @aravosis: Evolved? So you now don't believe in climate change or marriage, and you think Trump treats women well? https://t.co/Pic1Pael…",856082 +RT @XHNews: Will Merkel and Trump clash on climate change at the upcoming G20 summit? Follow us to find out!,788739 +RT @LIONMAGANEWS: BREAKING NEWS: After Trump cancelled global warming payment US has already saved 55 million. Do like his decision?…,509947 +"RT @YEARSofLIVING: 'Isn't it frustrating, the lack of political will in America to address [climate change]?' @iansomerhalder #YEARSproject…",407486 +"RT @BeastCaucasian: @LucasFoxNews @JLuke300 Cold War? More like luke-warm war am i right, ha global warming and what not ha",93916 +Study: Earth cooler now than when Al Gore won Nobel Peace Prize for global warming work https://t.co/7Ja2xmjfe4 https://t.co/4PYtgWBq6b,49777 +"We are all blaming the greenhouse effect gasses of provoking the global warming, when actually @pitbull is the main cause of this issue",794018 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,448173 +My salty ass is writing a 750 story on climate change rn and that shit is due tomorrow,461282 +#SNOB #Rigged #HillaryHealth #Debate #DNCLeak climate change is directly related to global terrorism https://t.co/6SoXS3kdim,44346 +"#Injecting sulfur dioxide into the atmosphere to counter global warming +#Hacker #News #Headline https://t.co/061tLkZA0X?",505510 +Pakistan ratifies Paris Agreement to fight global warming https://t.co/s4P1f16qvB,782839 +RT @Independent: Here's a new side effect of global warming that makes it even more terrifying than we thought…,104045 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,568580 +"RT @nature_org: 600 Conservancy scientists work around the world to address issues like climate change, clean water & resilient cit…",758553 +RT @NBCNews: John Kerry says he'll continue with global warming efforts until the day President Obama leaves office…,53400 +@CNN Guess what..... climate change is ALWAYS happening! I'll give you one guess as to what happens to the temperature between ice ages! ��,441214 +RT @Treaty_Alliance: Great example of what we mean when we say that climate change - and the #tarsands pipelines that fuel it - threaten…,953386 +"RT @BNONews: Fiji, most at risk from rising sea level, appeals to Trump to abandon his position that climate change is a 'hoax'…",143711 +RT @SteveSGoddard: Chicago is now officially a sanctuary city for global warming refugees. https://t.co/0zk2eATq69,120075 +"RT @MartinSchulz: You can withdraw from a climate agreement but not from climate change, Mr. Trump. Reality isn't just another statesman yo…",215972 +RT @SpaceWeather101: 'Energy Department climate office bans use of phrase ‘climate change’' https://t.co/JzIbIxx7O2 via @wattsupwiththat,439116 +@sjclt3 @washingtonpost The acceleration of climate change is the troubling part. Man is the likely factor. Promises to Noah by god are shit,186431 +TV media has failed our families in not talking about #climate change--a global threat. https://t.co/v38O9l9H6U @CleanAirMoms #debates2016,593449 +We are all breathing a sigh of relief. Can he put a word in with the Big Guy re climate change or maybe the looming fascism? #PopeFrancis,607278 +RT @NYTScience: White House budget proposal on climate change: 'We’re not spending money on that anymore.' https://t.co/3apxI63Gms,582945 +China will soon trump America: The country is now the global leader in climate change reform,922510 +Al Gore may be a scam but climate change is real. https://t.co/cpt27CS1lo,767792 +RT @voxdotcom: A new book ranks the top 100 solutions to climate change. The results are surprising: https://t.co/U6Zic2udiA https://t.co/l…,795952 +@RobertKennedyJr First require Utilities to pay Solar homeowners $0.49 Kwh for Solar to stop global warming.,944860 +"If you don't believe in climate change, how sure are you? How much are you willing to risk on that belief without any caution?",444063 +@amcp BBC News crid:499b9u ... to the shadow minister for energy and climate change. British gas say they were selling electricity ...,865922 +@cpyne it's no revelation coal contributes to climate change but ur party members bring it into parliament & have a laugh. #auspol,752668 +This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/Etb4J2Ll24 …,977914 +"The US tangles with the world over climate change at G20 +https://t.co/yoApY9tJdx https://t.co/Iek0spqpwL",252208 +"RT @mattmfm: Trump doesn't believe in climate change, is taking health coverage from 24M people, and under FBI investigation, but sure, foc…",772954 +"@JuneGotDaJuice_ Jill stein Green Party she's the only one who cares about the environment, climate change and saving oil I don't believe",254837 +RT @PinkBelgium: Truth Hurts! - WATCH: Al Gore refuses to give direct answer when confronted over bogus 2006 claims on climate change https…,237616 +RT @WorldfNature: Trump's win is a deadly threat to stopping climate change. - Grist https://t.co/1t5Oza192g https://t.co/BxvfMVnrDy,371131 +RT @the_fbomb: Swedish politicians troll Trump administration while signing climate change law https://t.co/pc3QaLLZWw via @HuffPostWomen,343754 +Jack Kerwick - “Climate Change” and Fake Science https://t.co/a3QshK9Ky8 The name change from global warming to climate change is due to,449316 +RT @kamrananwar1973: Farmers know climate change bc they can see climate change. Literally. https://t.co/7ptooaBfsg,185570 +RT @floridaaquarium: How #sharks can help combat #climate change: https://t.co/8tzeJFYoKA https://t.co/k86cruhAUe,47008 +RT @nytimes: A British swimmer is enduring extreme cold waters to promote awareness of the threats of climate change https://t.co/fp00ZdAxIq,19133 +"RT @SierraRise: In 2009, the Trump family, including Donald, took out a @nytimes ad urging international action on climate change.…",375376 +RT @Jezebel: Michael Bloomberg is picking up the climate change slack & Trump is gonna be so mad https://t.co/c510q3z3oV https://t.co/uebDc…,578099 +"#worldnews: Climate talks: 'Save us' from global warming, US urged | https://t.co/siUxFtZXlQ https://t.co/67dDATewRF",763558 +"RT @michikokakutani: Harvey, the Storm Humans Helped Cause. How climate change aggravates heat waves, droughts & possibly Lyme disease. htt…",162367 +"RT @AnonyOps: Badass Badlands National Park Twitter account [@BadlandsNPS] in South Dakota goes rogue, tweets climate change info… ",690491 +"RT @DavidCornDC: Hey Florida, nice little Everglades you've got there. Thanks for voting for a climate change denier. See you in hurricane…",698617 +"RT @electricsheeple: When someone asks me to say the prayer, I just explain climate change in a steady, monotone voice like I memorized it…",620254 +"Retweeted CECHR (@CECHR_UoD): + +Morocco plants millions of trees along roads to fight climate change... https://t.co/CmEwgIBkBO",217118 +RT @JamilSmith: Trump isn't just 'destroying Obama's legacy' on climate change. He's doing the opposite of what most Americans want. https:…,232363 +A third of the world now faces deadly heatwaves as result of climate change https://t.co/fDpj3R4mna #Environment,816170 +"Over 31,000 scientists now recognize that there is no convincing scientific evidence of man-made global warming. #climate",449825 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,672636 +RT @NotJoshEarnest: POTUS condemns the heinous attack in Istanbul. It's a stark reminder that we can't take climate change lightly.,179091 +"�� Memo to the Resistance 'We will Fight? Rampant inequality Costly healthcare Unjust immigration policies +Accelerating climate change + -",231038 +More fiddled global warming data: US has actually been cooling since the Thirties https://t.co/GhvCHV3BQH #tcot #teaparty #pjnet #nra #p2,291804 +".@Reuters Trump doesn't believe in global warming, CHINA is even telling him he's wrong",710495 +RT @nowthisnews: The head of the EPA doesn't think CO2 is the main cause of climate change https://t.co/TllH9Z2j01,553086 +"RT @RealMuckmaker: Badlands National Park goes rogue on Twitter, defies Donald Trump on DAPL and climate change https://t.co/80xLuyIZmx via…",323962 +#realDonaldTrump tornados. Tons of tornados. But no climate change or problems. #loser. #climatechange,581600 +"RT @edutopia: MT @NEAToday: 5 ways to teach about climate change in your classroom: +https://t.co/WGxb04TK0q. #earthscience https://t.co/bqC…",704427 +RT @AP_Politics: Energy Department rejects Trump's request for names of climate change staffers: https://t.co/kdFzOW5n3j https://t.co/FbsPW…,438734 +Wisconsin’s Department of Natural Resources site no longer says humans cause climate change https://t.co/wWoSob8j3o via @Verge,209379 +“Do you believe?” is the wrong question to ask public officials about climate change https://t.co/u3X6O106TL,415615 +The 'debate' Rick Perry wants to hold on human-caused global warming is total BS https://t.co/pOTxCMAjEA,284806 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,310499 +"RT @thefoodrush: Ever heard of a climate change farm? Well now you have :) +https://t.co/PN8knCIeyw #climatechange #farming @OtterFarmUK @…",346116 +RT @barbarakorycki: ok moving past your bigoted social views.... how can you vote for someone who doesn't believe in climate change,771257 +"I love my dad, but trying to explain basic science concepts to him makes me see why some people don't believe in climate change",129670 +RT @CatherineForNV: I believe in science. I believe in climate change. Let's protect our precious resources including the air we breathe &…,532461 +RT @GillJeffery13: Lets look after our country for the future generations by taking climate change seriously #IAgreeWithTim #itvdebate,847765 +"RT @blowryontv: So @BillNye closed re: climate change with @Lawrence by saying, 'May the facts be with you.' As if he wasn't already in ner…",541807 +"RT @LeoDiCaprio: Want to stop climate change, @UWM? See #BeforeTheFlood at your University #BeforeYouVote. +https://t.co/ubMubJMbkv",151102 +Tornado swarms are on the rise — but don't blame climate change https://t.co/dRUsZWaW4r https://t.co/hWkBZEznCf,301061 +RT @johnupton: The White House is 'actively hostile to what local governments are trying to do” to adapt to global warming.…,920481 +"In the U.S., trees are on the move because of climate change - Mashable https://t.co/pKpOBdNk6S",223008 +climate change editor vice news: This position is the chief creative voice for our climate coverage… https://t.co/70omd8WnPQ #ClimateChange,804457 +@hannahwitton global warming messing with weather patterns,577544 +RT @stevebeasant: We must fight against climate change deniers like Trump and climate change ignorers like the Tories https://t.co/laQZgLEh…,724299 +RT @TomiLahren: Liberals DEMAND President Trump accept the climate change apocalypse is science. Ok. According to science we have 2 biologi…,615253 +See climate change is is the no1 danger in the world. https://t.co/LAY0pxFKyI,414925 +"RT @MikeBloomberg: Amid shifting political winds, cities are stepping up and making bold moves to fight climate change. https://t.co/StdNQp…",905949 +Study: Stopping global warming only way to save coral reefs https://t.co/TEITKtyWay,633508 +RT @CatchaRUSSpy: Also who needs ice breakers when you have global warming. https://t.co/GmrHDy4mLQ,270235 +It blows my mind that some people truly believe that climate change isn't real,560973 +"yeah fuck the wage gap, police brutality, gun violence, global warming, presidential scandals, etc, let's focus on… https://t.co/2TEbv7gHCP",337725 +Join LeoDiCaprio as he searches for answers on the issue of climate change. #BeforeTheFlood starts now! https://t.co/F9qQbLKpAa,307063 +"#PostCab Radebe now on climate change - he says it can be felt through inconsistent rainfall, drought & excessive heat & flash flooding.",248899 +RT @RachCrane: 97% of climate researchers say global warming is result of human activity. Climate change denialist Scott Pruitt named head…,693471 +RT @AnjaKolibri: Not enough to avoid extreme #climate change!!! Only 3 EU countries pursuing policies in line with Paris agreement: https:/…,32083 +Two billion people may become refugees from climate change by the end of the century https://t.co/1pOwv54AOs,581827 +It doesn't matter if Donald Trump still believes climate change is a hoax https://t.co/BNccabWrJz #Tech #Technology https://t.co/xE7AA7nW1q,447640 +RT @Salon: The Weather Channel debunks Breitbart’s bogus claim that global warming isn’t real https://t.co/wOBz3jCBQn,862171 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",263238 +"RT @techmemsye1: People often ask for clear signs that global warming — sorry, sorry ... https://t.co/Nj0yg6RT6B https://t.co/rQWZ0d28Bd",177423 +"there's this thing called climate change, my friend. not entirely surprised you don't know about it though consider… https://t.co/7Yr7KkUbMs",556777 +Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/sDUbCVxbNL https://t.co/zMDwFMVdFa,814230 +"RT @RepStevenSmith: If you take $65,000,000 from countries that produce nothing but crude oil, you're not the 'climate change' candidat…",34166 +"@GuardianSustBiz @realDonaldTrump Jesus said, climate change would happen at His return to earth to save the Jews & the Nation of Israel",355856 +"RT @Zamiiiz: 'pft, climate change isn't real though, trump said so. fuck science' +#climatechange https://t.co/ciaa8FpYxn",961882 +"RT @eazyonme: @Toxic_Fem If I ever made a Paul Joseph Watson video, I'd proly focus on his depression and climate change stances.…",762704 +"CEOs donate to Repubs who reject climate change, somehow shocked, shocked when same party rejects climate change --> +https://t.co/ZCYMYWwAcK",602494 +How climate change helped Lyme disease invade America https://t.co/9fMLaNnTIV,34702 +"I will always stan Ben & Jerry's smh they got a whole section on their website talkin about race, lgbtq issues, climate change, n more",715552 +@SteveSGoddard agree. After a foot of hail last week here in Tennessee climate change hit again last night https://t.co/DP3vvC9lfF,355679 +"Budget calls cuts from State, USAID +Proposal would scrap climate change fund, refugee assistance https://t.co/iKQGBjsohL @NafeesaSyeed",854686 +"My grandson n I have a global warming bet that, even tho it'll be 70+ all next week, we'll still have one more freezing spell by mid April.",171389 +RT @RobGMacfarlane: For 'climate change' read 'intense weather events': on the Trump administration's insidious re-namings.…,820375 +"RT @SenSanders: LIVE NOW: Join me and @joshfoxfilm for a conversation on climate change, fracking and transforming our energy system +https:…",752605 +"RT @MissEllieMae: Exxon discovered climate change in 1981, covered it up, spent $30m+ on climate denial, then factored climate change… ",923279 +RT @RichardDawkins: It’s one thing to be a denier. But an Orwellian ban on the very WORDS “climate change” in official communications? http…,150302 +RT @GreenPartyUS: There is only one Presidential ticket taking the biggest threat to our planet - ðŸŒ climate change ðŸŒ - seriously:…,444048 +RT @JacobWhitesides: I think that's global warming not christmas https://t.co/VVAzjVXH6w,772347 +RT @LizHadly: Cities are on the front-line of climate change. They must adapt or die | World Economic Forum https://t.co/9o4X1Rc5Fo,707363 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/Sl95BTD4Km,43036 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,31741 +Ecological networks are more sensitive to plant than to animal extinction under climate change,902354 +@iansomerhalder The land unfortunately is rebelling all the exploitation for oil global warming we should all do something thanks,732442 +"Where climate change is threatening the health of Americans +https://t.co/ZozOFxNaLI",691266 +If global warming is real why is it only 3 the grease sell see us outside❓❓❓❓❓ checkmate libreals,115042 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,522188 +RT @PopSci: How we know that climate change is happening—and that humans are causing it https://t.co/D8Tn3W1aG5 https://t.co/n5vmLFDpqu,815935 +@rd7612 climate change is real. Unemployment is not 36%. All regs are not bad.,621337 +"https://t.co/3VYW0sVhrL scrubs climate change, LGBTQ and more from official site moments after Trump took office. https://t.co/Ar2qKY7kuf",933944 +RT @Bruceneeds2know: The Abbott/Turnbull Govt's failure to deal with clean energy and climate change will have real practical consequenc…,545889 +"RT @joshjmac: Pope Francis gives @realDonaldTrump a copy of Laudato Si', his encyclical on the environment and climate change",639168 +RT @MRFCJ: On Human Rights Day listen to why climate change is a threat to human rights. #Standup4HumanRights https://t.co/6Uj0Cgoh5g via @…,655821 +Donald Trump signed an executive order aimed at undoing climate change regulations introduced by Barack Obama.... https://t.co/v8Q7bLHlGX,217577 +RT @AnthonyByrt: Former leader of Greens charged for protesting against oil exploration when NZ about to be barrelled by climate change eve…,988338 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,310934 +RT @mikefarb1: Seas are rising due to climate change and the fisherman still deny it. Was Trump a Fisherman.? https://t.co/9FHFWN2VB4,384173 +RT @ApafarkasAgmand: Anthropogenic global warming has just reached the Saudi desert ... ;-) https://t.co/Js0MlVRYTg,850427 +Climate change: Fresh doubt over global warming 'pause' https://t.co/4rCwNE7gsK,614699 +"RT @nia4_trump: Aww how cute look future DREAMers, MS-13 kids from El Salvador. Poor kids, probably just victims of climate change.…",146362 +Health threats from climate change can be better managed with early warning & vulnerability mapping… https://t.co/eZfMto5VAJ,58112 +RT @adamnagourney: “I don’t think we’re going to have to put on hair shirt & eat bean sprouts.' Who said this on climate change? Yes. htt…,466658 +RT @DeSmogUK: Sanders rips Pruitt over climate change comments | @thehill https://t.co/KVSutWNsvm,798525 +RT @JulianBurnside: Try to watch Before The Flood on YouTube. Leonardo Di Caprio shows why we have to take climate change seriously: right…,569963 +Does Perry know what the DoE does? He also doesn't believe in climate change.... https://t.co/HtzhgfG2QS,434900 +"#IWantAmerica to focus on reducing income inequality, combating climate change and to invest in a green economy infrastructure revolution",51794 +RT @riotwomennn: AG Schneiderman: Trump's Tillerson used name “Wayne Tracker” to conceal ExxonMobil emails regarding climate change https…,373733 +RT @Wokieleaksalt: This is being completely misinterpreted. They were pointing out *other peoples'* climate change conspiracy theorie…,78426 +Gore warns of climate change risks at Atlanta conference - The Gazette: Eastern Iowa… https://t.co/DX1f3eXRvv,591624 +"@therealtrizzo 1 generation has plundered social security, created insurmountable debt and denied climate change...it's not the millennials",376278 +"RT @ChaseCarbon: foxnews: 'Merkel urges EU to control their own destiny, after Trump visit, climate change decision' https://t.co/jmAm93t5ou",881145 +RT @HuffPostPol: Tillerson used email alias at Exxon to talk climate change https://t.co/mWLPjX8dH6 https://t.co/whvDp1oHN6,423932 +"RT @PriceOnIt: “I’m looking for a solution to climate change. It needs to be big, and it needs to be now' -- @NikkiReed_I_Am… ",154517 +RT @CarbonBrief: 196 countries to Trump: UN must tackle climate change | @KarlMathiesen @ClimateHome https://t.co/WJnW28bIf6 #COP22 https:/…,809256 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,592760 +RT @MikeBloomberg: We can stop climate change by empowering citizens and cities to take action today—Climate of Hope shows how. https://t.c…,326267 +"RT @TheRichWilkins: 24. @BarackObama got deals done to normalize relations w/Cuba, a bi-lateral deal with China on climate change, the Pari…",557614 +The unsung hero in tackling climate change: girls' education https://t.co/hZt4QdRlRx #membernews from @Camfed https://t.co/v1lYK0Qfxq,657699 +RT @spincities: Spin is proud to stand with others fighting climate change & proud to help cities replace cars with bikes.…,792471 +"RT @CBCPEI: 'The sea is going to win': P.E.I. must prepare for climate change, says expert https://t.co/E13FpdgMBx #pei https://t.co/N8DDMy…",687325 +RT @RealKidPoker: To any/all millennials who care about climate change but didn't vote cause 'they both suck' I hope you understand what yo…,184414 +RT @WorldfNature: Growth vs the environment ... climate change a challenge for China's authoritarian system - South China Morning Pos…,160393 +RT @ImwiththeBern: #NO BlackSnake -- Simple ways to fight for climate change mitigation https://t.co/F8YTcT2IEI,846792 +@lucas_gus_ was playing Christmas music at 12:01 AM. Well jokes on you Lucas it's 73 out rn and global warming is coming before Christmas,615738 +RT @LindaPankewicz: @Reuters Scott Pruitt is an idiot when it comes to human caused global warming But then he want's to be. It's all abo…,988164 +RT @thehill: EPA shuts down program helping states adjust to climate change https://t.co/sVFWhW69mV https://t.co/ctOa9T3gui,487047 +@ChristiChat It's 20 global warming degrees right now! 😬,469101 +#ElectionNight #Florida can't afford 2vote 4 a man w/ such hate for its population & rabid denial of climate change https://t.co/9XuFi3Zis7,804088 +"RT @MarkDiStef: Yes really, Australia’s senate set aside one hour to debate “the disputed theory of global warming' https://t.co/71ryMJkDbX",981726 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/JchYL2Jyfy https://t.co/SUsiLOmFDV,661325 +"RT @stubutchart: One author of our paper received an emailed death threat from a climate change denier, can you believe it? https://t.co/ZH…",395935 +Western politicians have not and will not make any genuine effort to prevent climate change - nor will the majority of ordinary people.,404054 +"@busybuk Merkel maintains growth through financial crisis, jobs, huge real wage increases. Also fights climate change. = Doomed?",336290 +RT @TreeHugger: Children win right to sue US government on climate change inaction https://t.co/ov6p4rMw7r https://t.co/GmSRBSqYlC,458596 +RT @hhill3060: I can't believe I'll be living in a country where our president and vp don't believe in climate change but do believe in con…,721106 +RT @tveitdal: Exxon shareholders back 'historic' vote on climate requiring the company to assess the risks from climate change.…,837210 +"RT @StratgcSustCons: 24hrs of climate change warnings from @guardian - get the messages out there to push for real, long term action… ",370613 +RT @thehill: California governor named special advisor to UN climate change conference https://t.co/MnjjszmOfv https://t.co/0YKYrrQ0pG,123115 +RT @ScienceNews: CO₂ released from warming soils could make climate change even worse than thought. https://t.co/47ZqWnWlWa,306643 +RT @indcatholicnews: Holy See calls for 'intergenerational solidarity' to deal with climate change https://t.co/4GGaWQiNrG,666144 +"RT @politico: Energy Department climate office bans use of phrases: +- 'climate change' +- 'emissions reduction' +- 'Paris Agreement…",108718 +If you really care about preventing climate change you've gotta reduce your meat and dairy consumption first and foremost init,319332 +A remarkable man and his work on climate change is so impressive more people need to see it... https://t.co/JtpuX9QYFv,579193 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,358166 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,141738 +"RT @NPR: Trump plans to cancel billions in payments to UN climate change programs & use money to fix America's water, environmental infrast…",260609 +"RT @immigrationcom: The idiots who rule us denying climate change || + House Contempt of Science Committee gets rolled https://t.co/vrVXLP83…",581967 +Weather Channel destroys Breitbart over BS climate change story ➡️ @c_m_dangelo https://t.co/lnop5R69A6 via @HuffPostScience,132595 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,488092 +RT @jryancollins: A climate change stress test of the financial system https://t.co/y7J0MHYd1i,392202 +RT @qz: A scientist explains the very real struggle of talking to climate change deniers https://t.co/unhACDmRAe,315476 +"@BethBehrs That smile could make global warming find a cure for itself, saving all of mankind because you are just… https://t.co/nU6hVP9OYX",205530 +RT @climatehawk1: Here's how long we've known about #climate change https://t.co/c0RmkYokAV via @khayhoe @EcoWatch #ActOnClimate…,659291 +"Suddenly, global warming sounds like an inviting prospect. https://t.co/8mm8pCFDOB",436218 +"RT @heavymetalkop: I'm all for fight against climate change.And this is in no way a rant against trees. But in my opinion, planting tr…",90685 +"RT @GCSCS_RuG: Leonardo DiCaprio reveals the complexity of climate change, and emerging resource conflicts. Watch it, seriously: https://t.…",142415 +"RT @MarkHBurton: Good so far as it goes but despite 4 mentions of ecol. challenges, 3 of climate change, nothing on #Limits2Growth (1 +https…",24934 +RT @audubonsociety: Audubon volunteers are counting bluebirds and nuthatches to better understand climate change.…,409382 +Al Gore: #climate change threat leaves 'no time to despair' over Trump victory https://t.co/0cmJLqrZgi via @guardian,920431 +RT @WGNOtv: What vanishing bees tell us about climate change https://t.co/IpKwxgNrGk https://t.co/iu1jfIeaNr,796763 +RT @LadyWhiteWalker: The real motivation behind climate change deniers https://t.co/x0g1R3hP6V,845251 +"This is why Trump won't be the president who failed to stop climate change, just the one who made the collapse ugli… https://t.co/12qeuauk21",388243 +"RT @AmyMek: Russia today, tomorrow it can be fake news, next up global warming...This is getting really old! YOU LOST! GROW UP! 😂 #Sessions",604797 +@bbcquestiontime @CarolineLucas Also supports Abortion as it's good for fighting climate change . Less people = less waste.,152641 +RT @DrMaryanQasim: Yes @SagalBihi climate change will cause even more extreme weather. We need to come up with long term solution for…,248936 +"RT @GlblCtzn: Trump's EPA deleted climate change data, so the city of Chicago reposted all of it. https://t.co/0C80q9aqDl https://t.co/VWBx…",938144 +RT @nytimes: California is holding itself out as a model to other states — and to nations — on how to fight climate change https://t.co/9a9…,424611 +RT @akari_anschluss: You know what's the best thing about global warming? Sundresses https://t.co/wFEQ3cgjc6,329124 +"RT @Thomas1774Paine: Anti-Trump actor fights global warming, but won’t give up 14 homes and private jet https://t.co/g5MzLpH2g5",665784 +Is climate change real? Let's hope not... https://t.co/4xRWFPgj8k,640825 +"@kilovh We are an organization trying to combat climate change. +https://t.co/RA0LgtbpfL https://t.co/TL1asq4LJV",163428 +RT @IFLScience: Atmosphere scientist slams climate change deniers in brilliant viral post https://t.co/IcIM4vMPtp https://t.co/Is10X01C1j,556966 +"On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/Nk4AtAv7ha",462236 +RT @van_camping: Now there is LITERALLY no hope for making an advance on climate change and the environment so enjoy moving to Mars in 50 y…,940585 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",836959 +"RT @BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is at stake. https://t.c…",203375 +RT @girlhoodposts: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus … http…,254557 +"RT @MalinMobjork: Listen to @dansmith2020, @JohanSchaar and myself explaining why climate change matters for peace and security. https://t.…",980954 +Bloomberg urges world leaders not to follow Trump's lead on climate change #BellevueGazette #LatestNews https://t.co/BboPdC1Vea,24797 +"RT @LimesOfIndia: ISIS decides to go green to counter global warming, says will only kill people by knife and won't use bombs, grenad… ",281199 +Smart cities will be centers of excellence for sustainability and climate change achievements https://t.co/IGBPN1s6KW via @FSEP78,574766 +This coming from the guy who thinks climate change is a hoax invented by the Chinese. https://t.co/BQ4EtuBXNk,887404 +😅😆 DOE won't provide names of climate change staffers to #TRUMP https://t.co/juZcJAalAo,291525 +"RT @AstroKatie: In case you were wondering: no, 4 years of US-led inaction on climate change will not go well for the planet. Now is when i…",649648 +Rahm Emanuel revives deleted EPA climate change webpage https://t.co/mKsWOLvFEG https://t.co/5yZP9woio4,753473 +The yall president don't believe in global warming and he still hasn't done shit but cause havoc since he's been in… https://t.co/N82AgWnEAR,305074 +Insurers count cost of Harvey and growing risk from climate change https://t.co/rMrLJmZfqI,328063 +"RT @manofmanychins: @80smetalplayer @TrustyGordon Yep, and using 'the fight against climate change' to redistribute western wealth to the n…",567452 +RT @GoddessEm_: so y'all ready to admit global warming is an issue? winter really lasted like a week,195871 +"RT @Total_CardsMove: 'It's so warm outside because of climate change.' + +HA don't be naive. We all know it's because the Cubs are in the WS…",540520 +"RT @UN_PGA: It's official: #ParisAgreement on climate change enters into force 4 Nov. 10 countries + European Union join, see:…",875626 +RT @TPM: Democratic state attorneys general warn Trump faces litigation if he scraps climate change plan…,672918 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,17142 +"RT @sadposting: If global warming isn't real then explain why Club Penguin is being shut down + +Checkmate",644643 +RT @JinkxMonsoon: 1.) climate change is real. 2.) trans people are people (who deserve the same rights as anyone else.) - 3.) the world is…,558196 +Tell the people in london to calm down..climate change is a bigger threat.. nothing more to see here,718420 +How to immunise yourself against fake news on #climate change: International Business Times https://t.co/QS3FTP0IS6 #environment,941514 +This week's New Scientist focuses on climate change and being on the brink of change. Read more on: https://t.co/vYPiVPi1aa,142228 +RT @EcoInternet3: City initiatives are key in #climate change battle: Financial Times https://t.co/rxJ5WT64rS #environment More: https://t.…,114046 +"@CassandraRules That is funny, unicorn promoting climate change.",201727 +Some good guidance from @AGU_Eos on talking about climate change https://t.co/BwJSQfAIP0 #scicomm,432369 +"RT @MRodOfficial: I'm so tired of the climate change argument, in the end it doesn't hurt anyone to thrive for a cleaner environment, it's…",387738 +"RT @ahlahni: person: 'omg the great barrier reef & bees tho! climate change needs to be stopped!' + +same person: *still eats meat* https://t…",199691 +RT @RVAwonk: This is one of many reports documenting how climate change is creating the conditions for terrorism to thrive.…,180304 +"RT @librarian_nkem: For Africa to survive the impending drought occasioned by rise in population & global warming, we must learn to conserv…",673181 +@JohnFromCranber @ByronYork @MZHemingway @FDRLST Trump has secret island where he is making climate change accelerator!,146042 +"@Restoration 2/2 I hope you'll consider buying a copy. Two chapters explore climate change science objectively, you may like it! Best, Matt",558321 +RT @Slate: Bret Stephens’ first New York Times column is classic climate change denialism: https://t.co/u6rX7WcoBp https://t.co/4VyfISJd9m,486158 +#RRN https://t.co/Vy7M0kDUHd /u/AFineDayForScience describes a great way to change the rhetoric in America regarding climate change denial…,656852 +"@ryan_kantor @QuackingTiger Pft. I'll admit climate change is real before I believe this garbage! Am I right, guys?",746973 +"On climate change, Scott Pruitt causes an uproar — and contradicts the EPA’s own website USELESS ! https://t.co/bxFup0qkqf",443873 +@gtiso Perhaps it is intended to represent what all of Wellington will look like soon given her Party's attitude to climate change.,946854 +Al Franken shutting down Rick Perry over climate change is everything & more. https://t.co/kRQ6VcwTCD,206666 +"Animals I eat that i hate so im cool with eating them: +Cows (bad for ozone layer, global warming, desertification) +Pigs (invasive species)",329798 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,494754 +RT @scifri: Subjects were inoculated against anti-climate change rhetoric if they were warned that the information could be politically mot…,964787 +ã€ShanghaiDaily】 UN warns of global warming tragedy https://t.co/ObRP6qh3eq,992585 +70's in November? I officially believe in global warming,626550 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,338140 +"RT @FoEScot: New poll -> More Scots want stronger action to tackle climate change https://t.co/iMaegp651r + +Now's your chance: https://t.co/…",86710 +"RT @NatGeo: Forest loss not only harms wildlife, it’s 'one of the biggest contributors to climate change.' https://t.co/bLTRy45F33",880166 +Exercises to contain climate change will become futile. https://t.co/1GB0qZMvzD,461185 +"No, climate change is NOT a ‘natural cycle.’ +10 ways we can tell humans are affecting it: https://t.co/VXlRfpyi7u",840127 +"RT @JonRiley7: Not only is Trump not fighting climate change, he's banning agencies from even preparing for climate disasters. ��…",909823 +RT @evelyman: The kids suing the government over climate change are our best hope now: https://t.co/JnHNbZAscF via @slate,347835 +RT @maura_healey: We are prepared to act on Trump EPA on climate change. We will fight any efforts to undo or repeal needed regulation. #AG…,41851 +Environment drives genetics in 'Evolution Canyon'; discovery sheds light on climate change https://t.co/aVMOFoDwy4… [1/2],429019 +RT @josefgoldilock: PSA: Our president has ordered the EPA to delete their climate change page. The President is ordering facts to be delet…,822696 +rl feels like global warming llz,398282 +"@TexCIS Well see, proof positive of - global warming...err...climate change...err...global climate disruption. ;) Stay safe and warm.",939362 +RT @orlandosentinel: Tillerson in focus as Exxon climate change investigation intensifies https://t.co/VvmzwuqLqt https://t.co/Vlepns9dPb,44160 +RT @NatGeoChannel: One of the easiest ways to help combat climate change in your daily life is to stop eating beef. Here's why:…,193712 +RT @Greenpeace: You're never too young to change the world. This 9-year-old is suing her government for inaction on climate change…,628281 +The new Captain Planet? Bill Gates starts $1B fund on climate change https://t.co/KbPk0qRcxJ via @usatoday,489292 +The conversations we’re having about climate change are more important than ever. https://t.co/MLbMRtApuo #ClimateChange,616565 +RT @latimes: Kerry tells climate conference that the U.S. will fight global warming — with Trump or without…,347410 +@ScottWalker Polluting that air again ... still denying climate change ?? https://t.co/N4kgvq4aUJ,17963 +RT @mariannethieme: BanKiMoon:'massive waves of migration will come if we dont tackle climate change asap. We have no right to gamble with…,76228 +Harry is introducing someone to the dangers of global warming every single day,601837 +"climate change... what climate change. smh Colombia: 193 dead after rivers overflow, toppling homes - ABC News https://t.co/XLcnZsqnbp",569634 +RT @Masao_Sakuraba: 'What a powerful theory ... climate change can be averted by just increasing your taxes.' https://t.co/V2j9UIeT1n,57381 +RT @dmedialab: Scale and urgency of climate change must be better communicated - Lor... https://t.co/mRauyGIlnX via @risj_oxford https://t.…,120440 +RT @climatehawk1: Extreme weather flooding U.S. Midwest looks a lot like #climate change | @InsideClimate https://t.co/hm1FxpsCBd…,34596 +"British kids ‘most afraid of Trump and climate change’, GMB hears https://t.co/DJiXv86UFi ^MetroUK https://t.co/iC5UKeh0Sb",28256 +"Check out the new documentary at @NatGeo's youtube channel: Before the Flood. On climate change, with @LeoDiCaprio https://t.co/2SailYFiy4",499154 +"France, U.N. tell Trump action on climate change unstoppable https://t.co/D6Kwp6IZaC",352917 +RT @RVAwonk: Trump's inaction on climate change will worsen VAW. And the global gag rule will prevent victims from getting help. https://t.…,642374 +RT @NatGeo: We are really only beginning to understand many of the potential disease implications from climate change https://t.co/VOiRduE3…,597069 +"RT @maggieNYT: 'I think there is some connectivity' between humans and climate change, Trump says.",830957 +THE HILL: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report … https://t.co/9ZgBJGlhks,317312 +RT @nzherald: US government bans use of term 'climate change' https://t.co/vn47N9T1jP,827075 +RT @Wil_Anderson: And I am guessing Gen Y are done with your 'racism' 'homophobia' 'climate change denial' and 'owning a home' https://t.co…,588394 +RT @sierraclub: Trump denies climate change. @HillaryClinton has a serious plan to fight it. RT if you're a #ClimateVoter! https://t.co/Bid…,706639 +3 signs that the world is already fighting back against climate change https://t.co/11NchSs4Wv via @wef,182537 +"So here's my advice to Dems: climate change goes to the bottom of the agenda, or at the very least is done in consultation w/others. 13/",16854 +"RT @stubutchart: Most ecological processes in terrestrial, freshwater & marine ecosystems now show responses to climate change…",443398 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,434602 +Trump transition team seeks DOE climate change advocates’ names https://t.co/Mjk90tfhnY,554528 +RT @relientkenny: 'your husband is killing us all because he thinks climate change is fake news' https://t.co/iTlWQ9uCA3,30214 +"RT @mahootna2: Libs lie. They lied about the wind, about coal, the NBN, Medicare, TAFE, climate change, Centrelink, the carbon price and mo…",171137 +"RT @PrisonPlanet: Leo: Hangs out with oil billionaires, flies private dozens of times a year. + +Lectures Trump about 'climate change'. + +http…",875060 +RT @CNTraveler: 11 places you need to visit before they are lost to climate change https://t.co/TJ0L0LiOLH https://t.co/tJGtF2JYSW,961114 +"RT @CraigRozniecki: 'EPA head Scott Pruitt says carbon dioxide is not 'primary contributor' to global warming' + +Ruling: False +https://t.co/…",246680 +"RT @ossoff: If we walk away from our #ParisAgreement commitments to reduce carbon emissions & help fight climate change, histor…",244205 +RT @DrJamesMercer: We are the 1st generation to feel the impact of climate change and the last generation that can do something about it. #…,552594 +"RT @GPN14: #EPA #Poll +Do you think that carbon dioxide is a significant contributor to global warming (if there is global warming)?",726305 +"If climate change really is a conspiracy created by 'the Chinese,' China just fucked up Houston and we've got a war on our hands.",354750 +Change climate change - Sign the Petition! https://t.co/WwvL2YVg9e via @Change,71830 +RT @_courtneigh_: If 60 degrees in the middle of winter in Louisville isn't enough to make people accept global warming as a real issue idk…,345645 +Kayleigh. You support and defend a man who thinks climate change is a hoax created by China. This is hypocrisy at i… https://t.co/3sdJPtaSlD,212044 +"RT @UN: Addressing climate change is up to all of us. +On #SustainableSunday & everyday be part of the solution:…",200267 +NRE 199 class working on posters for group projects on various climate change topics. https://t.co/yUMKaQ1Ol9,942846 +China drills Tibet glaciers for climate change study https://t.co/dv6qz2iHPq via @Orange News9 : Latest News,174493 +Google:A new wave of state bills could allow public schools to teach lies about climate change - VICE News https://t.co/lUlaBanpLI,333002 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,146187 +Tillerson led Exxon’s shift on climate change; some say ‘it was all PR’ https://t.co/M9cpMdtzkX,793908 +"RT @cathmckenna: Can't figure out if most #CPCLdr candidates don't believe in climate change or think if we do nothing, it will magically g…",496143 +"RT @NickKristof: My column & video look at a crisis linked to climate change: As Trump Denies Climate Change, These Kids Die of It.… ",966647 +"Tackling climate change will boost economic growth, OECD says https://t.co/p0sIYbiuyX",323 +"RT @meljomur: While Theresa May is selling more weapons to the Saudis, here's our FM dealing w/climate change. https://t.co/ahO9SUuzUp",803875 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",402047 +Mr. Ridley's scientific contributions (including being a climate change skeptic) have been questioned by many scien… https://t.co/kCBttMnJtR,534219 +"RT @BillNye: 'They' don't want you to be concerned about climate change, but @djkhaled & I want you to be. Major ��/ Major �� https://t.co/gK…",703000 +"Mike Pompeo, Trump's CIA pick, evades questions about climate change and global instability https://t.co/TPzl33TqrV https://t.co/BHYxZFpNBs",671584 +"RT @SolarScotland: Scientists issue ‘apocalyptic’ warning about climate change + +https://t.co/5c5pzM1bSx +#climatechange #renewableenergy htt…",559320 +"National Geographic asked photographers to show the impact of climate change, here’s what they shot https://t.co/CAue5T1L6W",188050 +RT @FeelTheBern11: RT SenSanders: President Trump: Stop acting like climate change is a hoax and taking our country back decades by gutting…,887516 +"RT @kelkulus: Irony: Florida, a state in danger of being washed away due to rising sea levels, just elected a guy who denies climate change…",645866 +RT @Slate: China very kindly explains to Trump that it didn’t invent climate change as a hoax: https://t.co/wqQuPCgbeH https://t.co/2bFJ4wL…,466328 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,415728 +".@TAudubon next up: Westway oil terminal, climate change, 2017 priorities, creek restoration, listing endangered species",503003 +Palm oil kills thousands of animals & is disastrous for climate change.I hope the outraged #vegans & #veges are as… https://t.co/J6DKlUqWJC,298164 +"RT @adamkokesh: It's June. It's Arizona. It's hot. It's not proof of global warming! (When you push stupid crap like that, it shows how wea…",633000 +"RT @heyjudeinbris: scaring Aussies half to death about terrorism while ignoring climate change, the biggest threat to everyone on earth +#Au…",512067 +RT @vicenews: Bill Gates and other billionaires are launching a climate change fund because Earth needs an 'energy miracle'…,235641 +Scott Pruit is a coward who would rather hide behind the forged 'uncertainty' of climate change than tackle it head on,343381 +"RT @BillMoyersHQ: Al Franken might be the best tool Ds have to fight climate change deniers in DC these days, writes Joe Romm https://t.co/…",733240 +RT @openculture: California will bypass Trump & work directly w/ other nations on climate change. https://t.co/2ddgR5JCGI #jerrybrownismypr…,136832 +@ficci_india @moefcc Mr Ranjan speech has given an envision assurance for us that India will contribute well on climate change,389026 +@d2ton what was global warming years ago? A conspiracy. What is it now? Real life.,852347 +"@NASA not to be dense (pardon the pun), is this something new, and if so, is it related to climate change?",25002 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",294027 +Spicer dodges question on whether Trump still believes climate change is a hoax https://t.co/YuRjertjyl,648266 +Makes a free movie to raise awareness about climate change https://t.co/yv8GQi36UK #9GAG,810469 +"RT @JonathanFPRose: Those who deny climate change also deny us the benefit of better paying jobs, healthier lives, and independence from g…",224435 +RT @TheBaxterBean: REMINDER: Republican Party (now controlling 3 branches of fed govt) is the only climate change-denying political pa…,952397 +RT @jmaehre: @semisexuaI @megswizzle This is similar to 'if there's ice in my drink how can global warming be real?',12004 +@Andoryuu_C effects on human health. It's also important to mention animal agriculture is the leading contributor to climate change.,185013 +RT @painhub: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus o…,486832 +RT @robmanuel: For anyone worried about their A-level results remember that it's too late to stop climate change & most of you will die fig…,86045 +RT @DrStillJein: This New Year terror attack in #Istanbul has nothing to do with Islam and everything to do with climate change. #Turkey #i…,133514 +If you think global warming isn't real you a dumb ass bitch lmao,799864 +RT @WRIClimate: Mayors and Governors many in states that supported Trump determined to continue #climate change policies and plans https://…,781356 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,866735 +"RT @SafetyPinDaily: Trump's plans to cut climate change protections are worse than feared, leaked documents show | Via @independent +https:…",788791 +But not on climate change.... yeah https://t.co/o2F0ejHsix,907298 +@WasserL @kylegriffin1 Really so him saying that global warming is the greatest threat we face wasn't truth? Please… https://t.co/WFrKUWHEiV,930620 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,580848 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,438124 +"So, Pruitt denies climate change. Does our planet have to be destroyed on the ignorance of this fossil fuel idolator?",400009 +What a joke! Yep that's right a joke. First climate change now they're going after our Natural Treasures by opening… https://t.co/THqBWBhqKT,956741 +@Antena67 @Holly4humanity @FeistyPrincess4 A Trump tornado on 11/8 destroyed deplorable candidate Clinton. That's serious climate change!,748695 +"RT @WernerTwertzog: Toxic masculinity, as we all know, is the leading cause of climate change.",831576 +"China says #DonaldTrump is the hoax, not climate change. https://t.co/9nkwjrE8Xb",683218 +RT @SenBobCasey: The time is now. We must act on climate change. #ActOnClimate #ClimateMarch https://t.co/ja3I2GVoN9,531715 +Unprecedented Antarctic expedition maps sea ice to solve climate change mystery https://t.co/7aOE3rea7c via @physorg_com,555874 +For anyone teaching about climate change and the environment! https://t.co/qITQFuHTxz,672398 +Why don’t Christian conservatives worry about climate change? God. https://t.co/6WYqchTThU https://t.co/fRIXr7YUKS,293081 +"RT @KatiePavlich: They preach to us about open borders, gun control and climate change while living in gated communities with armed g… ",506419 +CBSNews: New federal climate report shows impacts of climate change are far more grave than the White House lets o… https://t.co/L3QSkNsaMN,776853 +@NilVeritas @nopepenocry @ramzpaul @RichardBSpencer lol socialism has already done more harm to humanity than climate change will ever do.,857439 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",860763 +RT @RawStory: ‘Is that a hard question?’: Megyn Kelly badgers Trump spokesman for hedging on climate change stance…,169809 +RT @KenDiesel: I notice the same people telling us that manmade climate change is a fact are also telling us men can be women. #StepsToReve…,410150 +"RT @ShoebridgeC: Interesting article: how global warming risks release of pathogens that in some cases dormant for thousands of years +https…",776743 +RT @theonlyadult: The people of Florida elected a guy who think climate change is a Chinese hoax. I'll sit here laughing when they dr…,830459 +RT @LibyaLiberty: Empowered Muslim females AND climate change awareness? This headline would make Trump's head explode. https://t.co/6xWXPQ…,612043 +Isn't the record high in NYC for this date 68 degrees set in 1876? Was global warming driving that too? https://t.co/8zxrYN3qdk,247011 +RT @habibisilvia: Whales are doing a better job of fighting climate change than humans are https://t.co/AtIg98xnMG by #djoycici via…,404518 +they say what inspired ya i said global warming,997644 +RT @NewScienceWrld: Here’s (another) study that will give you global warming nightmares https://t.co/tFt5kQcDks https://t.co/YVZJEp9PJc,111741 +"RT @business: Stopping global warming could make the world $19 trillion richer, report says https://t.co/uNtwhg76rs https://t.co/wqhs0UWi3I",921727 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",921922 +"RT @AnjaKolibri: Toxic slime, bloodsuckers, 'code brown' & company: 8 disgusting side effects of #climate change: https://t.co/5hVhtZeCAQ v…",349946 +"For the first time on record, human-caused climate change has rerouted an entire river by @azeem https://t.co/A8YrbUTkox",632649 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,10315 +RT @MeganNeuringer: if u think pizzagate is real but climate change is fake you truly are a dumb dildo,448017 +You guys global warming is reallll ������������������ just yeasterday it was 100 degrees outside,561814 +"RT @Arauz2012: Hey, maybe this is why the Obama admin can't find any 'scientists' who disagree with them on global warming https://t.co/XGr…",88851 +@TIME Trump must be #DeSelected as POTUS-elect. Disavowing climate change is committing crime against humanity. https://t.co/2ojo7dXVa2.,317861 +RT @market_forces: Legal liability - the jolt super funds need to take climate change seriously #ActOnClimate https://t.co/zee6gkmHzg,419424 +RT @val_hudson: No but plenty of time to give a voice to climate change denier Nigel Lawson #R4today https://t.co/UboabyNpsj,185650 +"In the midst of Trump's chaos, don't forget climate change as scientists marvel at extreme Arctic warmth +https://t.co/D8t1bae55o",931895 +RT @ObsoleteDogma: That’s one way to make climate change go away https://t.co/sNoz3PJn7Q,893553 +"RT @ESPMasonU: Boosting global access to water is critical, with climate change bringing decreased rainfall, rising temperatures. https://t…",159886 +https://t.co/umvOqAWVw3 The real facts on climate change! MUST WATCH,48509 +"@condokay yep and it's going to get worse , I think it's this global warming & apprently the sea is getting hotter to",697646 +"RT @MaryCreaghMP: This article, published in a New Zealand newspaper in 1912, was one of the first warnings about climate change… ",260134 +RT @onherperiod: Only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scientists,958366 +"Exxon knew of climate change in 1981, email says – but it funded deniers for 27 more years https://t.co/8SlvD7tGse",497671 +Or maybe it is just that the global warming nuts are being given a sign. Enlist with us at https://t.co/oSPeY48nOh.… https://t.co/mYYAHV6vj6,890683 +"Bye unions, bye new federal minimum wage of 12-15$ an hour, bye climate change, bye gay rights, bye Roe vs Wade, bye free college.",219061 +UN chief urges action on climate change as Trump debates https://t.co/k9TUHrlauf,50736 +"RT @LOLGOP: Except if it involves climate change, trans kids, adding sweet notes of coal ash to river water or anything that do…",742031 +"RT @India_Resists: End of debate. #Demonetisation was actually for tackling climate change. + +#ObjectiveOfDemonetisation",431195 +"We are winning the battle against #climate change, #fossilfuels . + +Join us. https://t.co/8BuTrwyzTE",159717 +RT @kimmelman: My series for @nytimes on climate change and global cities kicks off with Mexico City today. https://t.co/L3kpEbGTLg,641424 +RT @business: Donald Trump's win deals a blow to the global fight against climate change https://t.co/DJKduvISTR https://t.co/e6tusL6QNT,423512 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,229137 +"RT @FlaDems: In South Florida, climate change isn't an abstract issue, and definitely not a 'hoax,' despite what Trump believes…",798844 +"RT @pablorodas: Energydesk: Without the Congo Basin rainforest, efforts to tackle climate change are dead in the water … https://t.co/aiBLD…",693406 +RT @EnvDefenseFund: Red states are acting on climate change -- without calling it climate change. https://t.co/vg2MhhRaJd,371036 +@ja_herron most likely. I've yet to see a movie or play about climate change that doesn't want to make me pull my eyeballs out,211835 +"(Snows in September) REPUBLICAN: lol global warming am I right? +(60 in February) DEMOCRAT: anyone wanna fist fight bout thermometers bihtc",757133 +How climate change could make air travel even more unpleasant https://t.co/rAFnUfxhyo,937342 +Zika’s link to climate change https://t.co/EiGGMWXl3D,977747 +RT @TimWeisAB: Canada not ready for climate change: University of Waterloo report https://t.co/lHK1y5sWIz,333823 +RT @samisglam: @ghostmanonfirst more people will be starving and dying if we don't pay attention to climate change & the many problems it c…,669775 +Experts fear “silent springs” as songbirds can’t keep up with climate change. https://t.co/ZVahfAfHJY,260295 +RT @BCAppelbaum: Why are people pretending Trump's views about climate change are some kind of mystery? He's answered the question p…,677043 +@princegender Plz I remember back in high school I didn't deny climate change bc I understand how facts worked but… https://t.co/ypiGTmu0jn,477036 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,194820 +"RT @R_opeoluwa: @DebsExtra climate change ni , Nottin more",833593 +RT @politico: The Weather Channel calls out Breitbart for climate change skepticism https://t.co/EMHfB16IDv https://t.co/lksMqakEd6,737103 +Err:501,838487 +RT @treubold: The connection between meat and climate change. Great visual explainer by @CivilEats https://t.co/DnwJRtvmtI,14362 +"RT @amiraminiMD: So much for his Al Gore meeting on climate change. +So much for his interest in'crystal clear' air & water. +So much for Ame…",433532 +RT @CreeClayton: Teachers urge $175 billion pension fund 2 flex muscle on climate change https://t.co/mfV33X8w4M via @NatObserver #Keepit…,375715 +"RT @waglenikhil: India diverts Rs 56,700 crore from the fight against climate change to Goods and Service Tax regime https://t.co/wQ5JOkxJG…",274541 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,115978 +RT @CCLsaltlake: .@SLTrib Op-ed by @DSFolland: Students take lead on #climate change because they face the consequences... https://t.co/PfR…,905000 +RT @TODAYshow: Melting glaciers are causing real damage in Florida. Is climate change the culprit? https://t.co/gORGQM2sNi https://t.co/nE7…,343053 +apart from their beauty and entitlement to life birds are a terrific barometer to climate change. they enrich our l… https://t.co/Ui44jAcda8,168437 +RT @dmeron: Finding ways to handle climate change: Israeli scientists create heat resistant fruit trees https://t.co/vT22rbYp9w,794305 +...what? The head of the EPA knows less about global warming than a highm https://t.co/XPLUKM44YK,149132 +For anyone who thinks global warming isn't real: weather does not equal climate you g'damn moron,255482 +RT @yungbarbrab: How can you ignore the signs? 'There is no scientific proof of climate change' we have a blind president https://t.co/fmyJ…,786652 +"RT @maximumleader: @JoanOfArgghh It doesn't just fight climate change, it fights so many other social ills! (Has anyone seen Logan's R…",18795 +Mapped: The climate change conversation on Twitter https://t.co/RerRDSLL90,261144 +"RT @vondanmcintyre: If we have four years of dismantling climate change research, doing nothing, adding more greenhouse gases, maybe our wo…",2575 +RT @350: 'We are now in truly uncharted territory” @wmo reports on how record-breaking climate change is pushing the planet…,477704 +"History will show @realDonaldTrump was most influential person to ignore threats presented by climate change, and was responsible for crisis",645226 +RT @WorldfNature: Warren Buffett faces down climate change in weekend votes - Washington Examiner https://t.co/cgXhiiCvvS https://t.co/loC6…,613988 +One of the most troubling ideas about climate change just found new evidence in its favor https://t.co/KnyZRU4p0b,141972 +RT @washingtonpost: Here are pictures of John Kerry in Antarctica to remind you global warming is still happening…,863542 +RT @guardian: Global 'March for Science' protests call for action on climate change https://t.co/Q3GNVsD4nz,922667 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,419431 +@creekbear One whose highest point is about 10 feet higher than high tide. Because climate change is a hoax.,960388 +BBC World News: Badlands on Twitter: US park climate change tweets deleted https://t.co/yYrHMolsBZ,853322 +RT @Zorro1223: #EarthDay Because global warming bears can't find there food on solid ice. https://t.co/4d5GxUeVkd,622813 +@joanbehnke unfortunately there is plenty of evidence that global warming is real & that we aren't doing enough about it,785330 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,810188 +"RT @callout4: Countless scientists, decades of research. And @realDonaldTrump says 'nobody really knows' if climate change real https://t.c…",53815 +gago climate change 😂,818404 +"RT @CBSNews: Rex Tillerson grilled on ExxonMobil conflicts, Russia sanctions and climate change at Senate confirmation hearing:… ",747464 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",754308 +RT @SoReIatable: if global warming isn't real why did club penguin shut down,128943 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,996229 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/UsYkte8nKU,964585 +RT @DLCNGOUN: Main theme for #COP22 should be how #agriculture and budgets can be mainstreamed to migate climate change&encourage developme…,959469 +"RT @woolleytextiles: Can't believe how some American's, including @realDonaldTrump don't even believe climate change is a thing! Everyon…",354761 +Al Gore’s ‘Inconvenient Sequel’ brings climate change debate into the Trump era https://t.co/rBFlm7UaXL via @usatoday,102989 +RT @pauljac94662323: What effect will climate change mean for hop production in the Yakima valley #climateontap,67926 +RT @c40cities: 'Reneging on the #ParisAgreement is shortsighted and does not make climate change any less real.' - @ChicagosMayor…,122021 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,549342 +"RT @Newsweek: Former astronaut Scott Kelly tweets about earth, climate change as Trump pulls out of the Paris accord…",446441 +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/z37Nk9Cb1g,196355 +"RT @ForeignAffairs: Paris will survive, but Washington’s failure to lead on climate change will hurt the United States and the world. https…",589487 +RT @theAGU: AGU's President responds to EPA administrator's statements on climate change: https://t.co/Ch3Kh9P2nZ,70611 +RT @taylorgiavasis: Do you guys actually care about climate change or are just mad Donald trump doesn't believe it's real,683684 +RT @mmurraypolitics: Reminder from April 2017 NBC/WSJ poll: A combined 67% of Americans back action to combat climate change https://t.co/2…,978725 +This climate change is no joke and us millennials will experience a future financial crisis.,13287 +"RT @factcheckdotorg: Have a question about GMOs, climate change or other public policy issues?Ask SciCheck, our latest feature: https://t.c…",809747 +"Like, the entire conservative argument against dealing with climate change is 'but God'.",838185 +World leaders duped by manipulated global warming data https://t.co/KJfYCyP6q3 via @MailOnline,647188 +Humans don't cause climate change... but the cows. It was always the cows. #cowfarts,616174 +RT @samsteinhp: FWIW. we have probably lost the battle against climate change tonight,754798 +RT @NYUWashingtonDC: 'The solutions for climate change are the solutions for social issues' @maxthabiso with @PPrettitore @WorldBank…,620739 +"@wfaachannel8 @David_in_Dallas this global warming sure is getting out of control, the celebrities, the pope, and obama are right, it's hot",644772 +"Bill Nye on climate change, his new film, and bravery in science https://t.co/pC3Saz7V8s via @nbcnews",96841 +"Asshole Leo dick-crappio made a climate change film(yawn). No one cares. Still, I put him on lifetime shunlist. https://t.co/LYYIJDsSD1",818549 +Scott Pruitt: climate change denier and bedfellow of polluter lobbyists. Reject his nomination as EPA administrator https://t.co/FYSvxdxhPk,24845 +RT @Independent: Emergency campaign launched to convince Trump climate change is real https://t.co/obbXYhFxNS,397713 +RT @JohnFugelsang: & Donald Trump wants you know this proves NASA's part of that whole Chinese climate change hoax. https://t.co/Mc7346asP1,924727 +Three ways the Tory manifesto falls short on climate change and the environment,164077 +Yellow cedar could become a noticeable casualty of #climate change: Digital Journal https://t.co/8e6OuPQ9HE #environment,442722 +"RT @rebleber: Tillerson: 'I don’t see [climate change] as an imminent national security threat but perhaps others do' +The others: https://t…",583077 +RT @Hope012015: Exxon to Trump: Don't ditch Paris climate change deal https://t.co/2g23192RxB via @CNNMoney,840571 +RT @mtavp: BBC froze me out because I don't believe in global warming: David Bellamy reveals why you don't see him on TV now. https://t.co/…,415337 +RT @nowthisnews: Bernie Sanders and Bill Nye talked about how fighting climate change can bring jobs to America https://t.co/8Hu43hSCm6,148578 +@OxfordUnion @CLewandowski_ Is it because ur an expert & have convincing facts that climate change is a hoax? U have no idea what ur saying,239214 +RT @CNNPolitics: Hillary Clinton discusses Hurricane Matthew in North Carolina: I'll work to limit damage by taking on climate change https…,521908 +RT @PicsGalleries: Here you can see who the victims of global warming are... https://t.co/VGcNpIi5Z3,947679 +".@realDonaldTrump, the US military thinks climate change is an imminent threat. Listen to them. #100Days #KeepParis",227844 +"@alexborovoy1 so basically yes, hurricanes will continue to happen like always but global warming only intensifies them.",701507 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,617736 +"RT @JeunesMacron: �� #MakeOurPlanetGreatAgain �� +Today we are determined to lead (and win!) this battle on climate change. https://t.co/kWBB…",509196 +RT @brianklaas: Man who cited 1 day of weather in 3 locations to claim climate change is a 'hoax' may torpedo Paris climate accord. https:/…,585430 +"RT @sys_capone: Me: Omg global warming is so scary. It's warm in winter. This can't be good. +Winter: *behaves like winter +Me: https://t.co/…",839425 +"RT @NRDC: Trump is deleting climate change, one site at a time. https://t.co/uRekDeg8th via @guardian",414230 +"RT @containergarden: If you believe in climate change, vote. #ImWithHer https://t.co/GwzX0SfdAo",916592 +"RT @BigJoeBastardi: Earth to Shepard Smith.No one denies climate change is real,we question mans extent Show me the linkage in the ent…",705572 +RT @herbley: Residents on remote Alaska island fear climate change will doom way of life https://t.co/v4tryrx93Z via @usatoday,282147 +@DayBlackTheGod It's gonna be too hot for people pretty soon I swear �� global warming got y'all,201741 +"RT @tveitdal: Why the research into climate change in Africa is biased, and why it matters https://t.co/SpgIbbrpjS https://t.co/vJqRMYnYYW",464689 +"RT @bpmart0: Is climate change THAT bad? So we lose FL & polar bears, would you really miss them? It's 70 in mid-Nov! #itisactuallybad #cli…",506099 +"RT @daveanthony: btw, if you’re in Arizona right now. Don’t walk your pets. And enjoy climate change. https://t.co/cKwBKZTBrS",315331 +RT @emilapedia: Could u imagine Trudeau attending the Stratford festival and get lectured by the cast on govt spending or climate change?…,258435 +"Also, organic, local & sustainable agriculture is a good alternative to current models. The thing is, due to climate change, agriculture",910541 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",394712 +USFreedomArmy: RT USFreedomArmy: Now we know the real reason for the climate change hysteria. Enlist with us at … https://t.co/xFbLGHqgt3,424092 +RT @NatGeoChannel: Join @LeoDiCaprio as he searches for answers on the issue of climate change. #BeforeTheFlood starts now! https://t.co/qc…,204080 +"RT @CECHR_UoD: The smart way to help African farmers tackle climate change +https://t.co/1w5OKwLo84 #foodsecurity #Knowledgeispower https://…",744870 +RT @ClimateCentral: Peru's floods follow climate change's deadly trend https://t.co/0dCEZgRab0 via @insideclimate https://t.co/b1dBEbKFoj,644004 +RT @henrikkniberg: The fact that global warming is caused by humans is actually positive. Means we could do stuff about it. Otherwise we'd…,107636 +"RT @kelkulus: Irony: Florida, a state in danger of being washed away due to rising sea levels, just elected a guy who denies climate change…",661174 +Polar bears for global warming. Fish for water pollution. https://t.co/jscxJNw7Js,19909 +RT @AdamBandt: Do we really want to be Deputy Sheriff to a racist climate change-denier? Time to ask serious Qs about how slavishly we'll f…,927163 +How will California battle climate change? A new proposal revs up debate over cap-and-trade program https://t.co/cqNrgYPmLH,358829 +"RT @CBCNews: Trump win a 'disaster' in the fight against climate change, scientists and environmentalists say…",186937 +"RT @sgphil: I'd like people to eat less meat, fish, dairy and eggs to be kinder to animals and reduce climate change…",98072 +RT @NatGeoChannel: Join @LeoDiCaprio as he searches for answers on the issue of climate change. #BeforeTheFlood starts now! https://t.co/qc…,43449 +"RT @mitskileaks: want to specify that $ is donated to orgs that work on climate change,women's rights, immigration,+other causes.in… ",996972 +Honestly whether climate change is real or not why would you not wanna take care of the earth? So much to see out there.,365705 +RT @GavinNewsom: Once again Trump proves that he believes facts don't matter by appointing a man who doesn't believe climate change is real…,27742 +"RT @Logic_Argue: Apparently global warming is going to cause problems by.. making the North Atlantic colder, what hold on, what? @SteveSGod…",165638 +RT @qz: NASA released a series of climate change images just as Trump heats up his attacks on the EPA https://t.co/asqDeb5WVd,419439 +RT @Reuters: Vatican says Trump risks losing climate change leadership to China https://t.co/efWR3ktlIl https://t.co/U6JraHOUEo,254018 +Obama is spending another $500 million to fight climate change before Trump can stop him. https://t.co/vEJtPuSIyl,980316 +RT @Independent: 11 images from Nasa that show climate change is real https://t.co/0U2eRHeEVF,849752 +@EnviroNews can't tax us for this it's not climate change,601238 +#global warming #shatter #glass #ceiling #NoWallNoBan #NoamChomsky #earth #EllenDeGeneres #traveller #with #a… https://t.co/iS3jn6pDdl,763081 +RT @ShawnaRiddle: Can we talk about climate change now? #harvey #hurricaneharvey,767129 +Coverage of new thesis: National coordination for successful climate change action https://t.co/ZCcsrDLzdz,292040 +RT @FastCoIdeas: 'Our children won’t have time to debate the existence of climate change. They’ll be busy dealing with its effects.' https:…,800470 +"Real talk England. The north used to snow at Christmas, and now it floods. It's insane to think climate change isn't involved.",408830 +RT @AP_Politics: Trump's pick for EPA chief says he disagrees with Trump's earlier claims that climate change is a hoax.…,902403 +"RT @Polish333: For someone who doesn't believe in science, climate change, etc., surprised he is doing this... https://t.co/HBVG9HSffb",495974 +RT @NBCNews: BBC series 'Planet Earth II' shines light on climate change https://t.co/Pez4UwsMym https://t.co/DyoY7OrJWs,97966 +"RT @COP22: #COP22 Action Agenda: learn why #cities are so instrumental in tackling global warming #cities4climate +https://t.co/0IRw3UTxNk",612358 +RT @nytimes: A British swimmer is enduring extreme cold waters to promote awareness of the threats of climate change https://t.co/10lOYj3L0Y,601862 +"@OOOfarmer I went to a trial where the prairie plot was losing overall C from depth. No tillage, fert but less C. They blamed global warming",484009 +World leaders duped by manipulated global warming data https://t.co/qLFQlG2pdQ via @MailOnline,24147 +"Record-breaking climate events all over the world are being shaped by global warming, scientists find https://t.co/X9S3QZmWAN",545781 +RT @NBCNews: French President Macron invites Americans to move to France to research climate change https://t.co/6fCyRmPa6P https://t.co/D7…,404273 +"RT @katzish: Apparently 'Wayne Tracker'--Tillerson's other Exxon identity--had a lot of communications about climate change, per…",459068 +RT ScottAdamsSays: I invent the term Cognitive Blindness and apply it to the climate change debate: https://t.co/XTwm6PFagP #climatechange,706804 +"RT @Earthjustice: 'We are not imagining future climate change, we are watching the rising waters.' –President Remengesau of Palau…",570687 +You are told that the world will be destroyed by global warming unless you accept crushing taxation and government control over your life.,611072 +"My latest: A closer look at how the seafood we eat might play a role in climate change, and how climate change may… https://t.co/lqoZyhYwSl",985616 +"Topics: On unity vs. division, shared goals, on climate change, terrorism, UK elections, Basic income as one of the future solutions.",164701 +RT @VanJones68: Want to resist Trump taking America backwards on climate change? Sign up for the @GreenForAll Action Network. https://t.co/…,599031 +"US: Politics, culture or theology? Why evangelicals back Trump on global warming. @SightMagazine #climatechange + +https://t.co/6JuHOgHZwJ",291016 +"Thanks. Imaginary climate change is seriously triggering to me. + +@JenaFriedman @GreenPartyUS + +https://t.co/tqvpU1dElD",871590 +"RT @NRDC: #ICYMI: Yesterday, Scott Pruitt said CO2 is not a primary contributor to global warming. https://t.co/QZxinB1dSB via @Grist",375923 +"Fighting climate change isn’t a ‘waste of money’ — it’s a good investment +https://t.co/AFiMt270IE https://t.co/MmejhjHOG6",625713 +Trump's threat on climate change pledges will hit Africa hard - The Conversation AU https://t.co/R3b3FE2oha,544267 +"Welcome to America, where a groundhog tells us if its still winter but refuse to believe scientists when it comes to global warming.",597520 +RT @sean_spicier: The President rolled back Obama's climate change regulations. You will now be allowed unlimited exhales per day. Make Bre…,201908 +RT @Vegan_Newz: Vegan in the Region: Taking real action against climate change - https://t.co/qDDOXxEykk (blog)…,779450 +"RT @CauseWereGuys: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https:/…",41388 +"By 2080 vector population is supposed to increase by 200% due to climate change, start taking care of Earth peeps.",324210 +"RT @azeem_tuba: Ideas on climate change +@PUANConference @PakUSAlumni #ClimateCounts @usembislamabad https://t.co/VKQiwlA8lx",527518 +RT @Reuters: Trump team memo on climate change alarms Energy Department staff https://t.co/YgMQr7tZtN https://t.co/oFaaIdKeHk,995095 +Who cares u ar a LIAR and have not really done anything for climate change.. all what u did was damage.. https://t.co/tG2XYEISEP,68508 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,645526 +"@ludichrisspeed Definitely the climate change extinction, sexy lady.",803925 +"RT @CNN: Former New York City Mayor Bloomberg: +Trump's refusal to acknowledge climate change is real is 'embarrassing'…",310865 +IMAGE: An Al Gore global warming get together... https://t.co/fGd2wLmX1m #algore #climatechange #hoax #liar #libtard #tcot,243590 +RT @e3g: It’s time to respond to climate change in a way that protects & promotes public health! @LancetCountdown…,739831 +RT @_richardblack: Some climate change advice from Lord Farage... https://t.co/4YEiTozX66,838039 +RT @ajplus: Trump picked a climate change skeptic to head his EPA transition team. https://t.co/3Odv7hO57P,93918 +RT @nytimes: California is holding itself out as a model to other states — and to nations — on how to fight climate change https://t.co/exU…,115526 +@chrisrgun That awkward moment when IQ heritability has stronger scientific consensus than global warming… https://t.co/qpUnis5ZY9,164262 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",727311 +RT @jennjacquelynm: Friendly reminder our next president believes global warming is a Chinese hoax & hair spray can't escape your home beca…,735220 +@MarketWatch 4/5- Pope & Obama attributed hurricanes destruction to man-made global warming & pollution: Of course… https://t.co/ougeG9ejCJ,468210 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,689122 +Massachusetts court orders ExxonMobile to turn over 4 decades of its climate change research https://t.co/Xd8afJCSwh,53596 +How prepared are the world's top coal-mining companies for the business risks arising from climate change?… https://t.co/z4xHU98BwT,799186 +RT @JulietMEvans: Can discuss with people about EU but climate change deniers are beyond the pale. https://t.co/cTh4oa8w0S,101084 +@parthona98 @ValaAfshar I have studied earth science climate change would best served by millions of trees filtering carbon in the air,30439 +"@kelownagurl @TheGoodGodAbove the scary thing Barb is that their actions take us all down! Between climate change, electing Trump, guns, etc",810252 +"Shareholders force ExxonMobil to come clean on cost of climate change +Fμ©€ Trump & RexTillerson +https://t.co/qiKZ5cZlab",821303 +RT @Seeker: Researchers are highlighting the importance of marine reserves in combatting the effects of global warming. https://t.co/zzxESB…,292964 +"RT @AbbySmithDC: Last year, Stepp ordered info on human contribution to climate change scrubbed from her department's website, causi…",302407 +"On climate change, Scott Pruitt causes an uproar — and contradicts the EPA's own website - Washington Post https://t.co/Ztnvsql2O0",271892 +"RT @PopMech: Before the Flood: Watch this riveting, terrifying documentary on climate change https://t.co/w74QbFVLnC https://t.co/lvHxUyx6om",732321 +@elonmusk I don't believe the decision was based on climate change but rather no realistic changes for good from China or India,447410 +@latimes But...but...but... climate change & global warming! Could it be @algore was full of shit the entire time a… https://t.co/hot7uELEiX,803265 +Opinion: American executives who disagree with Trump over climate change ought to stand up for what they believe https://t.co/tqyIQva72K,196513 +"Well once the ocean's conveyer belt shuts down thanks to global warming, all of north america will be covered in snow/rice. +@way2snug",365268 +"RT @Chief_Tatanka: * + +Stop +climate change +before it +changes you. + +~Tȟatȟaŋka + +* +. https://t.co/F7R1NPyyot",202213 +Global investors urge G20 leaders to stand by climate change pact .. https://t.co/GKOMctjDds #climatechange,325954 +RT @ScienceChannel: Injecting calcite particles into the stratosphere could repair the ozone hole and slow climate change.…,969878 +They cut support for public transit users. Now liberals cut climate change investments. https://t.co/S1JGujw8DF,626863 +RT @fravel: China warns Trump against abandoning climate change deal https://t.co/kX3dApg9RD,549662 +RT @jo_moir: English says Govt doesn't spend much time linking dots between climate change and recent natural events. Concentrating on mana…,583897 +Birds are victims of lethal dehydration from climate change https://t.co/nMwtB8V2fD #yourworld #globalwarming #climatechange #birds #sos,81079 +"RT @grantsamms: #Pruitt: CO2 'is not a primary contributor to global warming.' +Me: Based on what? You're oil industry payments? +https://t.…",74615 +Conservatives can be convinced to fight climate change with a specific kind of language - Quartz https://t.co/KRdGKK33t5,390771 +RT @Europarl_EN: From agreement to action: the #ParisAgreement means limiting global warming to well below 2°C. Read more â–¶ï¸…,921683 +"#Science - EPA boss: Carbon dioxide isn't cause of global warming, The incoming head of America's Environmental P... https://t.co/IdoMvUAk62",260545 +Checks the weather for global warming,746062 +RT @DclareDiane: Renowned professor exposes the money-making global warming gravy train https://t.co/d6N6yHPYp0 via @ClimateDepot,523766 +"When a geologist denies climate change, find out if he by any chance helps oil companies find oil. One use for a geologist.",369387 +"@DavidAFrench Build a wall, Muslims banned, women objectified, deny global warming, VP supports conversion therapy - sounds lovely",387902 +▶@GreenPartyUS: We need to start taking climate change seriously. It should be part of every policy discussion.... https://t.co/pBv1nAWdoW,407975 +FEDERAL COURT: Trump EPA must enforce Obama climate change rule #MAGA #TCOT https://t.co/BmVkGre8HO,843647 +RT @nytimes: Ivanka Trump will meet with former Vice President Al Gore to discuss human-caused climate change https://t.co/bQwoCembug,668518 +"According with the recent claims, the very fact from the global warming is groundless. Are there any scientific proofs for this sort of sta…",259924 +RT @guardianeco: Bird species vanish from UK due to climate change and habitat loss https://t.co/SvIyL8HMus,823007 +RT @GlobalWarming36: Antarctica's Larsen C ice shelf: The latest climate change wake-up call - Minneapolis Star Tribune https://t.co/jkVqvw…,133194 +RT @kengarex: This sculpture by Issac Cordal in Berlin is called “Politicians discussing global warming.” https://t.co/8liiF1PWul,999383 +RT @jeonglows: not to be fake deep but this vid of jungkook being a cutie reversed global warming and ended world hunger #BTSBBMAs https://…,844853 +"RT @SteveSGoddard: People keep telling me to leave politics out of the global warming discussion. +That would be impossible, because it is p…",811166 +@pickledxokra @HandsomeAssOreo It's literally on his campaign website that he believes climate change is man-made https://t.co/L7bWGmUSfC,700248 +Biodiversity redistribution under climate change: Impacts on ecosystems and human well-being https://t.co/YGh9W28MyS,312802 +RT @GOP: The attention to climate change hasn’t changed. The attention to American interests has. https://t.co/N6IxjyQLVs,703577 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,842529 +RT @krystalkaufman_: When it starts snowing but global warming doesn't let it stick,133240 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",637996 +"In rebuke to Trump policy, GE CEO Immelt says ‘climate change is real’ https://t.co/pC95ppds5k by #LeoDiCaprio via @c0nvey",242561 +Donald Trump's environmental protection chief Scott Pruitt 'not convinced' carbon dioxide causes global warming… https://t.co/F8ZEkW5yjg,970006 +@artstanton lol. And I was thinking global warming is now in effect,651603 +"I'm sorry for my children, they are the ones who will suffer the effects of climate change'...hmm you should doubl… https://t.co/ryQYh2zVOC",339673 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",675644 +RT @Greenwood_Pete: @GeorgeMonbiot Protestors trying to ensure we meet or climate change commitments are now labelled as extremists. https:…,793976 +RT @obamolizer: Vox - Posts | A deep dive into the Obama climate change... https://t.co/7sx1eZOWKY https://t.co/Xv0hNKVpmN,162961 +RT lorac22allen 'RT crusaderkeif: Don't tell Europe Trump was right about the climate change hoax! https://t.co/EaR6CLsKzh',469570 +RT @jen_keesmaat: A new modular tile promises to help reduce flooding in cities hit by increased rainfall due to climate change. https://t.…,681176 +@Acosta @michaelshure I bet that most americans are FOR the paris agreement on emissions and climate change. Trump… https://t.co/nFDXIEzPXS,887401 +RT @KetanJ0: Why 2℃ of global warming is much worse for Australia than 1.5℃ https://t.co/Ul73YphNsl,891406 +Minority of Americans see consensus among climate scientists over causes of global climate change… https://t.co/WQZ8d7815R,751950 +"RT @Bentler: https://t.co/asaz0Sdfhg +In challenge to Trump, 17 Republicans join fight against global warming +#climate #policy…",965377 +"@LeadingWPassion I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",773946 +"RT @SenGillibrand: We only have one earth, so let's keep fighting for it—from protecting our air and water to combatting climate change. Ha…",84122 +RT @JolyonMaugham: A PM desperate for a quick deal; and a climate change denying opponent of state healthcare. What could go wrong? https:/…,845066 +RT @ThisWeekABC: EPA chief Scott Pruitt's language on climate change contradicts the agency's website. https://t.co/vEkHpebYII https://t.co…,389748 +"RT @Bamafan_forlife: @MariaTCardona funny how we have evidence of global warming but they don't believe it, no evidence of wire tap but yet…",837821 +"RT @abcnews: Scientists reset #DoomsdayClock to its closest time to midnight in 64 years due to climate change, nuclear fears https://t.co/…",967629 +RT @HeerJeet: Shouldn't Tillerson recuse himself from any decisions involving climate change & fossil fuel -- i.e. everything? https://t.co…,864765 +"RT @IMDb: Watch the #exclusive trailer for #IceAndSky, the story of the scientist who broke ground on climate change research… ",266087 +#climatechange Analysis|Most Americans support government regulation to fight climate change.Including in Pittsburgh https://t.co/277vlndjoZ,41710 +"The HORROR! Chelsea Clinton blames diabetes on climate change, gets fact-checked HARD https://t.co/lzuDJNOoYs",112134 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,513080 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",452254 +Bernie Sanders calls Trump climate change denying climate chief 'pathetic' https://t.co/bF40NmBg5P,564272 +@Cherlyn_Felle it is... global warming is no joke lol,876098 +"RT @ma_macneil: Stopping global warming is only way to save Great Barrier Reef, scientists warn https://t.co/5XrqaWzrL2",273845 +Grant of DKK 2.4M landed by @ASStensgaard to study climate change's effect on snail-borne parasites… https://t.co/ijG7gdhMG7,343129 +"RT @Adel__Almalki: #news by #almalki: New York, other states challenge Trump over climate change regulation https://t.co/gLIKqzXgeN",622330 +RT @ajplus: Trump picked a climate change skeptic to head his EPA transition team. https://t.co/3Odv7hO57P,296515 +RT @lOsergRrrl: happy earth day climate change is real and bad,199651 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",265010 +The head of the EPA just made another dangerous comment about global warming https://t.co/Q1FahdFe3F,124863 +"RT @WesClarkjr: US, in push for mass extinction, forces G20 to drop any mention of climate change' in joint statement #tytlive https://t.c…",619557 +The U.K. Government 'tried to bury' its own alarming report on climate change - https://t.co/TrflSk2xEt,500287 +RT @_NNOCCI: Informal science education centers are stepping up to talk climate change with guests. WE are the solution! https://t.co/NYXQT…,366450 +Eight foods you should invest in due to the White House blowing off climate change. �� #food #climate https://t.co/8bfJhjrY97,626887 +"RT @PeteOgden: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/bO9SkZynBc via @Reuters",426254 +You're not an inventor or a thought leader or anything much at all unless you invent something that stops climate change. Go. Do it.,535685 +"The curious disappearance of #climate change, from #Brexit to #Berlin': https://t.co/KwaQmACVR9 #politics #news",617761 +Rex Tillerson says in hearing the 'risk of climate change does exist' https://t.co/iLQEjMlKq0 https://t.co/9jl086Fmn0,616786 +"RT @BBCr4today: Nigel Lawson's claims about climate change are 'not true', says Met Office's @StottPeter #r4today @BBCRadio4 https://t.co/D…",863271 +EPA chief: Carbon dioxide not primary cause of global warming - Wisconsin Gazette https://t.co/geYJEZBMoG #GlobalWarming,516407 +Trump picks climate change denier for EPA team - CNN https://t.co/oZxljOWeS1,148449 +"RT @SarcasticRover: NASA Earth Science provides critical data, not just on climate change - but national security, emergency planning, agri…",849472 +@AyoAtitebi covfefe thinks climate change is covfefe... He's a big mistake,665945 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,479060 +RT @BrianKarem: So Rick Perry did not understand my question? Seriously? Is man responsible for climate change?,736724 +RT @TweetLikeAGirI: Only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scientis…,288008 +Looking forward to a lil climate change and location switch up these next 2 days!! #RoadTrippin ✌️,638394 +RT @therealroseanne: climate change is a bullshit concept that means poor ppl bear the taxes to clean up rich people's water.,779022 +RT @Bill_Sutherland: Evidence review: climate change impacts observed in 80% of ecological processes underpinning ecological function. http…,951766 +"RT @nytimes: In a hotter world brought on by climate change, people will get less sleep, a new study suggests https://t.co/G1JzpgIDsg",535506 +#MyPresident 😍😍😍😍😍 All the man made climate change idiots: Google moraines. And how they were formed by Ice Ages. https://t.co/OEQKfokBtJ,202738 +"RT @ClimateCentral: A new, interactive map shows where climate change has affected extreme weather events https://t.co/okFZS69VdU",863224 +"RT @ChrisJZullo: #NotReallyAPartyUntil you realize we elected Vice President who believes global warming, evolution, and gravity doesn't ex…",870370 +RT @nowthisnews: Bernie Sanderrs & Bill Nye had a wide ranging discussion about climate change on Facebook Live https://t.co/mVTNQfPaTi,721194 +RT @argus27: Michael Bloomberg and Mark Carney: How to make a profit from defeating climate change | The Guardian https://t.co/JYESztYj8U,981141 +RT @sil: I like this reformulation. Not 'this damages the credibility of the climate change agreement' but 'it damages the c…,252336 +"RT @INDIEWASHERE: scientists: *have logical&valid proof tht climate change is causing extreme weather* +republicans: iT'S THe GaYS THa…",77169 +RT @therightblue: New York skyscrapers adapt to climate change https://t.co/hJJGCdEC9s,68528 +"RT @ChrisJZullo: #IWantAmerica to focus on reducing income inequality, combating climate change and to invest in a green economy infrastruc…",38903 +"RT @TalkingHeadsAfr: Why the research into climate change in Africa is biased, and why it matters https://t.co/J6aAJEvBOV",256464 +"No, Trump hasn't embraced the science of climate change. Yes, it matters. - Washington Post https://t.co/2SWQzpNV39",11425 +RT @UNEP: More and faster support needed for climate change adaptation https://t.co/we5QevbWJq https://t.co/JIP54AmY0W,898966 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,860813 +"Before you vote #GreenPartyUS remember that if trump wins we will have no path forward on #climate change, we can't lose 4yrs #actonclimate",873715 +RT @derekhandova2: How climate change will affect supply chain management https://t.co/VUJJmyO7NX @lhusiebing @hiasaelsa @pauloise14 @sanit…,81184 +RT @leahmcelrath: Trump has said climate change is a hoax created by the Chinese to make U.S. manufacturing less competitive. https://t.co/…,106630 +RT @APTNNews: The latest news on global warming for the arctic isn't good reports @tfennario It only got worse in 2016…,203802 +RT @climatehawk1: Flooding New Zealand storm due in part to #climate change - expert | @radionz https://t.co/3fWYUqLftp #ActOnClimate…,904553 +EPA chief still doesn't think humans are the primary cause of climate change https://t.co/3XzjhGNraa via @HuffPostPol,793878 +RT @IrishTimesOpEd: Breda O’Brien: breaking the silence on climate change https://t.co/bMToS5JfYG,727291 +"@summit1g ban on Muslims, deportation of undocumented immigrants, stop and frisk, doesn't believe in climate change, general ignorance",659013 +"RT @ReillyRick: If you care about climate change, religious freedom, gun sanity, women's rights + racial harmony, this is a terrifying nigh…",170414 +Bloomberg urges world leaders not to follow Trump's lead on climate change https://t.co/LDG3XQ2FWm https://t.co/uZgB1rQV2V,545030 +"Before the Flood is a documentary about climate change and global warming, narrated by Leo DiCaprio as UN's messenger of peace (not actor).",935399 +"RT @7piliers: FAQ on climate change and disaster displacement; it is not a future hypothetical – it’s a current reality; @Refugees +https://…",720843 +RT @Independent: Emergency campaign launched to convince Trump climate change is real https://t.co/obbXYhFxNS,24407 +Am I the only one that gets sad when they think about people who do not understand the adverse effects climate change has on this planet?,368110 +"RT @ScreamngEagle: From the party that believes in global warming, looks like they treated Philly pretty bad last night ! Just like Hi…",503818 +@bradcarlson_ not denying climate change lol I'm saying the weather does this every year and no reason to blame trump,556178 +"RT @PeterGleick: It's straightforward. As #climate change raises temperatures, extreme heat events become more frequent. And that's…",905326 +Machen Sie alle öffentlichen Parkplätze kostenpflichtig! Acting on climate change! https://t.co/s9yVDcSkR0 via @ChangeGER,337724 +RT @GisellaGsba: @singsingsolo. A climate change denier is not worse than someone aware of it who sells #fracking to the world.,69700 +RT @EcoInternet3: In-depth: What Donald #Trump's budget means for US spending on #climate change: Carbon Brief https://t.co/QX0MRfHylm #env…,114542 +"RT @Supreme: 2010-2017, so sad what climate change has done to the Grand Canyon... https://t.co/MWaRh3kW7o",160079 +RT @1Iodin: @Amy_Siskind Millions of Americans do not want to know USA was hacked. Similar to denying climate change. Deny so one does not…,903579 +RT @Harvard: Harvard environmental experts forecast a complex mosaic for climate change policy in the years ahead https://t.co/DNrfqB7rR9,646349 +"RT @SteveSGoddard: 100 years ago, the father of global warming said Siberia would become the greatest farming country on Earth. It is…",161942 +"RT @GhostPanther: Quickest IQ test: do you believe in man made climate change? +If no, is it because u run an oil company? +If u answered no…",598614 +RT @DeadStateTweets: Kind of ironic how Jill Stein helped elect a climate change denier.,663644 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,329622 +"RT @RahulKohli13: I love that there are people who deny climate change. I deny calories, not gonna stop me from getting tits though is it?",263883 +"RT @yo: A rodent predicting the weather is acceptable, but climate change is a crazy idea? Sounds legit. + + #GroundhogDay",296398 +Trump may not snuff out renewable energy industry despite his doubts on climate change - CNBC ☄ #vrai777 ⛱ $v ℅ #G… https://t.co/J193AmOi6P,566777 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",158516 +RT @postgreen: Trump meets with Princeton physicist who says global warming is good for us https://t.co/iVCJwDfPF1,764934 +"EPA chief Scott Pruitt doubts carbon dioxide the key culprit in global warming. +...https://t.co/Mn4D9HItOm",404621 +Trump climate change: 'He wants to get rid of a very large part of Obama's environment legacy' https://t.co/QiYkF66Mdv,803119 +RT @WorldResources: Reading - China will soon trump America: The country is now the global leader in #climate change reform @Salon https://…,610999 +"RT @ULTRAVlOLENCE: Interviewer: 'What do you think about global warming?' +Melania Trump: 'Hello... He's kind he's strong, he's a great... c…",737690 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,312628 +@BloombergDotOrg @MikeBloomberg Yea climate change for all citizen and the world.,712615 +Kenyans turn to camels to cope with climate change https://t.co/d5H3KQYOCf via @dwnews,188749 +yay it's snowing!! even tho today had a high of 69!!! that just proves climate change isn't real!! it was all an elaborate hoax!!,814343 +RT @kvnpkrwrd: @Jackthelad1947 only global warming can save us from their ilk.,988637 +Mixed feelings about global warming bc it's nice af outside but only February,880191 +"RT @GayJordan23: I'm in full support of the phrase 'climate change is a hoax' if hoax stands for Hot, Old, Anal, X-rated & 'climate change'…",280042 +@PDChina Its global warming..,630479 +RT @BuzzFeed: There’s only one way to save the Great Barrier Reef: stop climate change https://t.co/nibV8UIdjB https://t.co/WiUItxcTkB,46849 +"@AhavatOlam18 @Nordic_Fascist @sallykohn climate change may be happening, but what % is caused by humans?",667139 +"Vulnerable to climate change, New Mexicans understand its risks https://t.co/A0OIeHo7Gm #savedfor later #feedly",445425 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,136052 +African leaders in Morocco to unify stance on global warming https://t.co/DFxBIyqlZ5 via @Biz_Africa https://t.co/6T48BVLmes,811010 +"Facing a President who denies the reality of climate change, we need to mobilize together. Join me. https://t.co/iBchZeMj0b",170283 +"The doomsday vault, protecting the world's seeds from catastrophe, just flooded due to global warming.",900662 +It sas 70 degrees on Wednesday and it's snowing today. These climate change denying politicians really think that w… https://t.co/AOixJv1rL2,493441 +"Britain's Prince Charles has co-authored a basic guide book to the problems posed by climate change. + +The book... https://t.co/Z5NTcd2XNo",94212 +RT @climatehawk1: Eyes wide shut: Trump slashing programs linking #climate change to U.S. national security https://t.co/5f5JV25e1B…,753640 +RT @washingtonpost: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/velLNqKi…,312169 +@OMGTheMess we said no to climate change crap under Tony. What gave them the power to ignore us. It was a mandate?,202533 +"RT @c40cities: To adapt to climate change, the cities of @BeloHorizonte, @nycgov & @Paris are leading the way with innovative plan…",102614 +"RT @coreindianness: 'We must build pipelines so we can fund our fight against climate change.' + +These people run your country.",619990 +#SolarEnergy: Embracing renewable energy is the key to solving the challenge of climate change PM ... https://t.co/xSfDNMnlbD,86350 +"@realDonaldTrump I truly support and respect you, but I have one issue. You can't keep denying climate change please I'm begging you.",63121 +yesterday was a nice day and today feels like i have entered a new hell called Cold Hell. good thing trump doesnt believe in global warming,121852 +"Ignoring climate change, pulling out of Paris, more fossil fuels -- the new future? https://t.co/SGXBpj5x8A",600352 +"RT @BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is at stake. https://t.c…",124929 +"RT @Gingrich_of_PA: Finally, a president who directs NASA to do something to prevent extinction (Hint, it ain't climate change) https://t.c…",75897 +"From Asia to outback Australia, farmers are challenged by climate change Anika Molesworth… https://t.co/EaoQicd35p",574497 +"RT @paul__johnson: Gove back in: Environment Secretary. +The minister who tried to remove climate change from curriculum https://t.co/U1VA…",24804 +There is SO MUCH more evidence for human imposed climate change than there is for your God yet you consider the latter an undeniable truth??,596222 +@BrianPaulStuart This guy needs more than erectile dysfunction drugs to survive earth's climate change we are already in,906004 +RT @CatherineForNV: I believe in science. I believe in climate change. Let's protect our precious resources including the air we breathe &…,539619 +Keeping the holiday tradition of ruining christmas twitter by reminding everyone that global warming is real,110125 +"MWASIA - China's 'airpocalypse' a product of climate change, not just pollution, researchers say https://t.co/wOxfcEXn6J",448051 +RT @termiteking: Trump doesn't care about climate change but we outnumber him. He won't do anything about it but WE will,790726 +"RT @GalloVOA: Asked whether Trump believes human activity contributes to global warming, a senior White House official says: 'That's not th…",822650 +RT @BBCWorld: Rex Tillerson 'used email alias' at Exxon to talk climate change https://t.co/xEQFCKBpmw,381243 +RT @60Mins: Casting a shadow over all this beauty is climate change & the amount of carbon dioxide fuelling the rise in air & s…,730979 +"Terror, Russia and climate change top G7 agenda https://t.co/lcuNm2hCHz via @YouTube",936649 +RT @hyped_resonance: before global warming causes sea levels to rise at an alarming rate anybody want to admit they got a crush on me ? �� ����,587095 +Investors with $2.8 trillion in assets unite against Donald Trump's climate change denial https://t.co/5G883Vd7uu via independent.…,612202 +So upset climate change is about to be ignored,429050 +RT @DavidTooveyKGL: Well deserved award for #Rwanda's climate change mitigation and adaptation efforts given to Pres. @PaulKagame.…,700694 +@donttrythis So how can you demand science be the basis for climate change proof but not the gender of a human? That's not how it works.,851416 +@LeoDiCaprio happy birthday. 😊Thank you for being so inspirational for many of us for a long time. 💋keep fighting for climate change,547091 +I emailed my pension fund manager and told them to back this historic climate change motion for @ExxonMobil's AGM https://t.co/g9DEKzblYB,51713 +RT @fivefifths: Here's a reminder that we completely blew it on climate change https://t.co/UvJYWGtzuc,125090 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",81094 +RT @CNN: The Trump team is disavowing a climate change questionnaire sent to the Energy Department https://t.co/gQKQUaQxuW https://t.co/f1S…,46987 +"@Reuters Please don't,global warming is a hoax.",10385 +Oh my. Not 'bowing to the alter of climate change'@realDonaldTrump* is a mere fraction of his crazy. He's seriously… https://t.co/jbInSNmLLh,660879 +"RT @billmckibben: Hey, a hit of good news: judge allows youth lawsuit against fed govt on climate change to proceed! https://t.co/P4Y11CEbaQ",815867 +RT @jilevin: Donald Trump to mayor of island sinking due to climate change: Don't worry about it! https://t.co/Hxv38V9Yoa,182651 +@cnnbrk Very sad for those who were impacted. This is global warming & u see it happening all around the world but WH & @GOP don't believe,13152 +RT @sasencios: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/M1XnzzHqny,612985 +RT @sfchronicle: Gov. Jerry Brown promises to “fight” President-elect Donald Trump over climate change. via @joegarofoli…,668026 +RT @Shanghai_Metal: Trump has often said climate change is a hoax. Would Mr.Trump as President hinder the future of renewable energies? #Im…,286216 +RT @JessicaPenney_: Stating an Inuit women's personal narrative is unrelated to climate change is ignorant of Inuit conceptions of self/com…,872878 +"RT @nbcbayarea: With #DonaldTrump in White House, California will not back down from its climate change fight, @govjbrown says. https://t.c…",346203 +RT @sleepyverny: 36. did u know jisol could actually stop global warming w how cute they are https://t.co/lUcGsuuISh,717045 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",118481 +I experienced climate change yesterday one minute i didn't need a hat the next I had to put a hat on,67795 +"RT @FiveThirtyEight: If the world decides to fight climate change without the U.S., there could be economic repercussions. https://t.co/v9B…",965112 +"RT @DrMoriartyY: Effect of historical land-use and climate change on tree-climate +relationships in the upper Midwestern United States https…",942456 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",49607 +"Top story: ‘There’s no plan B’: climate change scientists fear consequence of T… https://t.co/CA8wTmEONV, see more https://t.co/bwHa7pqv9O",336321 +"RT @_AlexHirsch: Simple. I believe in climate change, a woman's right to choose, gun safety & the wealthy paying their fair share. T…",220175 +"RT @laurenduca: Today's Thigh-High Politics is on the Times hiring climate change denier Bret Stephens (folks, they pulled a Comey): https:…",218973 +"Or...not spending enough on fighting child poverty, climate change, investing in rural econ diversification, elimin… https://t.co/tJcNiCpQ5Q",458027 +RT @goIdcigs: if global warming isn't real why did club penguin shut down,932536 +RT @thehill: California governor named special advisor to UN climate change conference https://t.co/loC6WTTg0I https://t.co/iBDT0IN6R5,239165 +"RT @matthaig1: If you don't have a science degree, and think climate change isn't real, ask yourself why you know better than scie…",473283 +"@OregonWild I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/nZCxr5XRhU ?",10468 +"RT @NWOinPanicMode: Great seeing so many people awake to the con artist Al Gore. +Sequel bombs. Should of blamed climate change on Russi…",965411 +This date in #climate: 2013 - #Pakistan launched its 1st national climate change policy. https://t.co/ayqwsjTgSu,733655 +"SomeCallMeLaz: RT WeNeedEU: #Brexit is tied up with Trump, racism, tax avoidance, climate change denial, the works. It is just one front …",383468 +Trump’s innovative solution to climate change: Don’t mention climate change https://t.co/jytaXF5ebz https://t.co/6LKdsrQFcL,796762 +RT @emilynussbaum: “Baby It’s Cold Outside” is a deeply offensive song about climate change denialism.,184596 +"RT @JD_Hutton: If a PM says he believes in climate change but approves new oil pipelines, does he actually believe in climate change? + +#kin…",327092 +RT @rgatess: We are seeing similar anomalies from the oceans to the stratosphere. Rapid climate change underway as net system e…,158124 +RT @guardian: Rio's famous beaches take battering as scientists issue climate change warning https://t.co/XG5tVwjkcl,998269 +Oh global warming does not exist at ALL https://t.co/MT3ok1F9CM,332356 +RT #Could Rudolph and friends affect climate change? Reindeer grazing increases summer albedo by reducing shrub ab… https://t.co/ojMRMUSh2d,495084 +RT @YEARSofLIVING: Each problem of climate change has a solution that makes society stronger. #ClimateofHope https://t.co/hazsA5lnfR https:…,610404 +RT @DevonESawa: Just dawned on me: Trump thinks global warming is a hoax created by china. No seriously.,478417 +@Atten_Deficit @jenkiesss_ global warming real,599073 +Tennessee Wildfire is ‘Unlike Anything We’ve Ever Seen’ https://t.co/v0JToHqSV6 … via @ClimateCentral Stop climate change! #GPUSA,476278 +"RT @NatGeoPhotos: Though visually stunning, this colorful view of a snow cave sheds light on our warming planet:…",433925 +RT @MotherJones: Every insane thing Donald Trump has said about global warming https://t.co/Ok7MhCCzj4 https://t.co/qCyR49JPb3,184487 +RT @fancynancysays: @ABC @NHC_Atlantic You were saying about climate change?,899620 +Trump administration begins altering EPA climate change websites https://t.co/XUA4bAVIAl,237593 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,637818 +Glaciers for global warming https://t.co/oZH6LGNse5,487541 +Trump targets Obama’s global warming emissions rule for cars https://t.co/9F7MxyO03p,323186 +ur mcm thinks climate change is a hoax,767342 +Canada's hope to get climate change into NAFTA could prove difficult https://t.co/0Syrus5W33 via @NatObserver,897943 +RT @Carbongate: Sturgeon derides Trump over climate change.. yet takes six helicopter rides in a day https://t.co/qfGUKMBR5j,893076 +"RT @docrussjackson: Wars, climate change, gross inequality, corrupt corporations & bankers & not a single western leader will criticise…",227111 +"RT @Harlina__: @cafedotcom @tedcruz the whole POTUS is a joke . Declining education , climate change and congratulating people for being si…",484479 +RT @jed_heath: Discussing climate change. https://t.co/8x2umKZcmg,142536 +nytimes: Opinion: The intensity of this summer’s forest fires in Europe is a harbinger of what climate change will… https://t.co/2BoflibjNg,511856 +No longer can the US claim that climate change is not real. - Jean Su of @CenterForBioDiv at the presscon on… https://t.co/41ybYNxCho,486621 +RT @fightdenial: Any politician who refuses to acknowledge the reality of climate change & refuses to act is putting their constitue…,793118 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,350625 +RT @TIMEPolitics: Republican congressman says God will 'take care of' climate change https://t.co/NyPvaAqIBJ via @mahitagajanan,875997 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,520873 +The Energy 202: We asked Texas Republicans about Harvey and climate change. Only one answered. https://t.co/oHNlzsf2IA,980231 +"RT @BernieSanders: Trump's belief that climate change is a 'hoax” isn't just embarrassingly stupid, it’s a threat to our entire planet. htt…",486454 +"RT @bobkopp: Unchecked, climate change will cost US economy equivalent of hundreds of billions annually by end of the century.…",790783 +RT @BernieSanders: Believing in climate change is not optional at this point. Neither is taking action to save the planet.,119066 +"RT @Labour4Ken: #FactOfTheDay +Ken pioneered action on climate change +His ambitious Climate Action Plan inspired global mayors to act https:…",795590 +RT @World_Wildlife: Protecting our forests is key to curbing climate change. Shop smart: https://t.co/rOJ1XgIa6v #COP22…,703949 +"Don't let Trump censor fact about climate change⚡️ “Badlands National Park defies Trump’s gag order, gets censored” + +https://t.co/0gwQ8MAITv",226753 +RT @shutupstephan: It sucks that global warming feels so good outside. #guilty,497219 +"Donald Trump doesn't seem to understand climate change, so we thought we'd help him out. https://t.co/Ern4VoBcFA",133965 +"RT @StFrexit: 'Hey White people, make sure you save the planet from global warming so you can get stabbed with a knife in 2050's…",108181 +@Atrectus @CNN On the very beginning. His comments are disgusting for a president. He even thinks global warming is a false Chinese's idea,574156 +@amcp Briefings - James Comey crid:45j6h3 ... decided to take direct action. The women's ... they had a climate change rush on Polomat ...,510374 +RT @WorldfNature: Film examines climate change as national security risk - The Columbus Dispatch https://t.co/Z3YBwDyiUG https://t.co/hvMAY…,547861 +"RT @winter_frost1: ë°”ì´ëŸ¬ìФ Surviving a virus +ì´ìƒ기후 Survival during climate change +ì¸ì²´ Survival in body +갯벌 Survival in tidal flat +심해 Survival in…",154116 +75 degrees in StL on last day in October. I am all for this global warming hoax!,445954 +"RT @AlexSteffen: Given what we know about climate change, plummeting clean energy prices+economy of the future, we shouldn't build another…",997533 +RT @RJSzczerba: Clever concept for pool in Mumbai that looks like Manhattan flooded to raise awareness of climate change. https://t.co/MbjZ…,624946 +"RT @NateSilver538: Americans' concern about global wamring, and belief in global warming, is at record highs. https://t.co/RlNzK6X3eN",463357 +"RT @joshscacco: Science can tell us the best viewing spots for the #SolarEclipse2017. Science also has answers on vaccines, climate change,…",912071 +RT @baublecrow: the night king just wants to end global warming you guys,789575 +RT @dmason8652: @WayneDupreeShow Guy who founded the weather channel says global warming is a hoax based on faked data. 'Listen Up'…,733504 +"People, if you want to be in the know about climate change, here ya go. Amazing journalists on this list. Thanks… https://t.co/vDxbD42fii",921494 +123 million Americans live in coastal counties' --> at risk from sea level rise from human-caused #climate change https://t.co/MHvzy2Y4tU,182771 +"Disgusted with NY Times. 'Debating' climate change? Then let's debate if the world is round. +https://t.co/40RfGCtvY4",577188 +RT @dustopian: You know the reason the snowstorm isn't as bad as predicted will be global warming.,77565 +A strong advocate @jonkerbl for climate change trying to influence @JoshFrydenberg - engage with local MPs,13576 +@sjhamp12 'global warming isn't real',850213 +• Inhabitat: Watch Leonardo DiCaprio's riveting new climate change documentary 'Before The… https://t.co/XuH1Hw8rMM,233403 +RT @thehill: White House attacks NY Times for corrected story on climate change report https://t.co/1QD5YSacxc https://t.co/saCaTyZpwq,158376 +RT @TreeHugger: Children win right to sue US government on climate change inaction https://t.co/ov6p4rMw7r https://t.co/GmSRBSqYlC,42715 +RT @EcoInternet3: Exxon ordered to hand over Rex Tillerson's secret emails to #climate change prosecutors: Independent https://t.co/v12o5ty…,125277 +@TheFacelessSpin @fahimnawroz But but Tim Flannery said our dams would never be full again. Evidence to throw all that climate change in bin,794752 +RT @jongaunt: Trump has our generation of snowflakes in a tizzy because he doesn’t believe in the MYTH of climate change - Pod 3 - https://…,738883 +"RT @Forthleft2: The outages in SA were down to extraordinarily vicious storms which are part&parcel of anthropogenic climate change. +So: mo…",646317 +"RT @ilsanglow: @soohaotwt judi is literally the hottest person to exist, the cause of global warming, the reason soohao exist",908688 +"RT @rudahangarwa: Soil, Land & Water for climate change adaptation and mitigation. +https://t.co/5GK66LkuNG by @FAOnews https://t.co/MLdOPMZ…",767328 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",771691 +UCSD scientists worry Trump could suppress climate change data https://t.co/OyQPrH1ua7,259880 +RT @LockedGateLancs: British scientists face a ‘huge hit’ if the US cuts climate change research https://t.co/k0IexJgXGD #WeSaidNO #frackin…,825122 +China sees a diplomatic opportunity in Donald Trump's opposition to steps to limit climate change. Here's why: https://t.co/pOrlvP5jhD,884467 +And they wonder why we don't trust them....Federal scientist cooked climate change books ahead of Obama presentation https://t.co/VMANvraVKC,787682 +Russian President Vladimir Putin says climate change good for economy https://t.co/uIh2gxH2Ol,609778 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,737682 +"RT @Dory: me: Leo come over +Leo: i can't im busy +me: my friend said global warming isn't real +Leo: https://t.co/uwSmoQsRG0",908388 +@CBSSacramento Gak! Just look around; climate change is real and we all helped.,424425 +@EricIdle So you determine who is right or wrong? Man made climate change doesn't exist... climate does change though (re: weather),323128 +RT @guardian: Farmers in Sudan battle climate change and hunger as desert creeps closer https://t.co/qkIGz896EP,628679 +To deal with climate change we need a new financial system #EmoryEE2016 https://t.co/AASFboqkSd,678862 +"A storm in March does not prove 'climate change' here in NY it happens alot, I remember the big Ice storm we had in April of '91 #thatsNY",838507 +RT @jamisonfoser: There’s a simple explanation for this: Donald Trump knows climate change is real but does not give a shit about you. http…,205713 +"@vicenews there is no climate change per sec Pruitt, throw him in!",681150 +RT @EH_4_ALL: The burden of climate change on children is worse because their bodies are still developing #ClimateChangesHealth,7572 +Definitely looks like there's room to apply to work on cultural #heritage and climate change #MerciMacron! https://t.co/ROVvBKelNe,941573 +"RT @nontolerantman: >Have fewer children to fight climate change +>'Oh no! we need migrants now, no one could have predicted this!' +>Han…",274509 +"@duckyack @100PercFEDUP End of global warming, shrinking sea level within one year +Incredible Invention: costs only… https://t.co/Vmwszd9DTO",684872 +RT @Energydesk: Siberia's growing 'doorway to hell' offers clues on climate change https://t.co/B2f5e0HrEw https://t.co/lVR5YIWFAw,370024 +RT @shazbkhanzdaGEO: Smog is dangerous.Reason is pollution.we need to act and act now.climate change is the biggest threat to the world htt…,291351 +An Inconvenient Sequel: Truth to Power review – another climate change lesson from Al Gore https://t.co/Owo2b3XVQ4 https://t.co/CMwaLCsKBv,155280 +"RT @PlanetNewsSpace: #Science - EPA boss: Carbon dioxide isn't cause of global warming, The incoming head of ... https://t.co/IdoMvUAk62 ht…",493518 +"Everyone who denies climate change should go swim in a reef while they still can, and see this magical world disapp… https://t.co/7yY5UKFnXK",955736 +@joerogan @YouTube I just don't see how government action can put a dent on climate change. We are not that signifi… https://t.co/OkZZWPjmSG,475150 +New administration's stance on climate change caused CDC to cancel conference https://t.co/sKMNJc8V7q,814784 +RT @businessinsider: EPA chief claims carbon dioxide is not a primary contributor to climate change https://t.co/78VBcvJYky https://t.co/Uo…,934550 +"RT @climatehawk1: Nearly half of Trump voters believe #climate change happening, support climate action - @YaleE360… ",236229 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,868776 +"A cool breeze on a March morning in #Mumbai, isn't good. Very bsd sign of global warming. #ElNino @RidlrMUM",724046 +RT @SkyNews: Record-breaking temperatures driven by global warming have bleached two-thirds of the Great Barrier Reef https://t.co/b8K0sTv9…,948949 +RT @CoralCoE: 'We’ve got a closing window of opportunity to deal with climate change” @ProfTerryHughes join's elite #Nature10…,383876 +"RT @KFILE: In interviews, Trump's EPA pick questioned climate change, said Obama EPA rules would be undone https://t.co/4FDGKH30sx",131974 +"@sandyca500 he also stopped Iran's nuclear enrichment program,a climate change deal was reached under him, America's reputation was restored",986064 +"RT @djrothkopf: Don't care about human rights, press freedom, democracy, alliances, global warming, diplomacy, development..it's a… ",428108 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,926841 +RT @Igbtxmen: how exactly would it sink anyways? where are the icebergs to sink it? global warming snatched all of them https://t.co/IXPWRP…,494582 +"RT @CharlesMBlow: But, but, but climate change is debatable. �� We are going to be standing in 2 feet of water in Manhattan and they s…",781163 +"RT @nytimes: On Trump's 100th day in office, thousands in Washington protested the administration's climate change deniers https://t.co/OBx…",92910 +"@johncardillo @KurtSchlichter @Scaramucci What about tomorrow, when he joins them on gun control and global warming… https://t.co/YJ7uAlqhN0",486 +@PaulCobb_OCCIAR does your kid get paid to model climate change? I want in.,491939 +RT @mashable: Stunning photos show how climate change affects our own backyards https://t.co/mjLomQzbOT https://t.co/ttyJcLu149,53227 +RT @wef: 9 things you absolutely have to know about global warming https://t.co/YIk2wbbi3m #EarthDay https://t.co/I9rqm5gOsi,800250 +RT @EricHolthaus: More than 90% of excess heat from global warming is stored in the oceans. An add'l 100+ zetajoules of energy have b…,253165 +"@MarietjeSchaake Min 40% of funding should go to renewable energy,energy efficiency &climate change mitigation… https://t.co/vRT5xCq4Rw",31100 +"Everyone should take the time to watch @NatGeo climate change docufilm with Leonardo DiCaprio, time to be about it and stop talking about it",457211 +@Pontifex gave @realDonaldTrump a book about climate change. Pope Francis is officially my favorite person on the planet,164443 +Russian President Vladimir Putin says climate change good for economy https://t.co/Qmi2hJmEk8,646128 +"@kurteichenwald If someone could convince him of climate change, enough of the country would believe it for it to matter.",26297 +RT @ClimateReality: The conversations we’re having about climate change are more important than ever. https://t.co/C0fW10XAD5,641969 +RT @Leek3seventeen: 2017... day 193 of 365 ... a state sized chuck of ice broke off a solid continent & ppl still deny global warming.…,593800 +Polar bear numbers to plummet by a third because of global warming https://t.co/TmVpLRjGOK,256579 +RT @Daniel63556494: @MrBravosBioClas Humans are a big cause of global warming 82% of human C02 emissions are from burning fossil fuel #MrBr…,805014 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,418189 +US diplomat in China quits 'over Trump climate change policy' https://t.co/6kHj1fp6ao https://t.co/7aPGssWAkj,640885 +"RT @washingtonpost: We only have a 5 percent chance of avoiding 'dangerous' global warming, a study finds https://t.co/2jvJX5T5ZI",497723 +@BreakfastNT @GerHerbert1 good old pretend global warming. All a big fad to generate more tax for the government,627483 +RT @AcostaAdella: Do you believe in global warming?,654700 +"RT @fml: Today, my country elected a man who thinks global warming is a hoax. FML",237079 +RT @EnvDefenseFund: The coming battle between the Trump team and economists over the true cost of climate change. #ProtectAndDefend https:/…,432087 +"RT @UN: Transport is part of climate change problem, #SustainableTransport is part of solution! Find out how in this new…",572031 +RT @WorldResources: Trump's #climate policies are 'wrongheaded'- even the Pentagon has called climate change a 'threat multiplier'…,962862 +Pakistan ratifies Paris Agreement to fight global warming https://t.co/vX3Tk20ZoZ https://t.co/vdDA5bJ1ht,73015 +We have BIG goals for 2017 to prevent climate change in Waltham. Want to find out more? Tweet us or email WalthamMO… https://t.co/Jv7l45jxWt,308754 +RT @THECAROLDANVERS: liberals are so annoying... have fun working to fight climate change w/ a person who believes climate change is a m…,686614 +"RT @UnvirtuousAbbey: For those who think that the biggest problems we face aren't climate change, income inequality, or health care, but im…",620529 +Earth hour tonight from 8.30-9.30.. Turn all your lights out to show support for climate change ��,342626 +@schestowitz And it seems like you're saying there was no climate change before the scientific method was described so....,875135 +RT @climatehawk1: How do we know humans are causing #climate change? Nine lines of evidence | @EnvDefenseFund https://t.co/e7nyhXgMza…,135651 +RT @latimes: UCSD scientists worry Trump could supress climate change data https://t.co/vhTEZbadUh https://t.co/0I71V4BaPl,566883 +@realDonaldTrump @foxandfriends Seriously WTF is your mental disorder? You are an enemy of climate change and the planet. You are sick.,708737 +"RT @ECOWARRIORSS: In Greenland, a once doubtful scientist witnesses climate change's troubling toll https://t.co/tX897022WE",771565 +"RT @taebeingtae: i still can't believe this gif of taehyung saved the human race, stopped global warming and watered every plant on… ",146085 +US SENT $221M TO PALESTINIANS IN OBAMA'S LAST HOURS-including $4M for climate change programs and $1.25M for U.N. https://t.co/Gt02OCVafB,713094 +"The coastline, for when we cross it, it is an early warning sign that climate change-fuelled flooding will kill us… https://t.co/M0JO1aafIW",540959 +Agriculture victim of and solution to climate change - https://t.co/eCXURF620v https://t.co/lt5cOBDIwV,824998 +"RT @JamesSurowiecki: Bizarrely, even Kim Jong-Un is more realistic about climate change than Donald Trump is. https://t.co/AVkQwiy979",387636 +"Left: climate change will kill us +Right: climate change will not kill us +Centrists: AI will kill us",6977 +the earth is flat global warming is fake ghandi is still alive keanu reaves is immortal,581176 +"RT @azprogress: Anyone who denies climate change, is not fit to hold public office. #EarthDay",272574 +Also climate change and this city drowning,312899 +"RT @GeorgeTakei: Trump's M.O. is to raise hopes to distract, then do the opposite. Like meet with Al Gore, then appoint a climate change de…",405772 +Absolute moron - #EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/Ooh2UyUZkE,423226 +RT @Pat_Riot_21: @TrumpkinT @ProducerKen @ChelseaClinton I gotta pee ... can't decide if it's because of global warming or the Russians,15617 +Is it really global warming or climate change? Antarctica has been a 'hot spot' lately... #Antarctica… https://t.co/gR5xzqIJHD,73801 +"Much caused by a climate changing, which it is, whether or not you believe global warming. +Only fools do not listen. +https://t.co/zxovz4NvbJ",581076 +RT @DHeber: New study confirms NOAA finding of faster global warming | John Abraham https://t.co/oJ8ZEecc2U,763519 +RT @risj_oxford: ‘Digital media are shaking up reporting on climate change’. James Painter on his new RISJ book: https://t.co/LpcypTnoqo @T…,916909 +Yeah larries are also the reason for global warming... what's new https://t.co/QCLPDry5HG,646077 +RT @barbosaandres: Humans causing climate change 170 times faster than natural causes https://t.co/age7bxUxct,551261 +RT @business: The U.S. has a lot to lose by not leading on climate change https://t.co/ismxnHhzpI https://t.co/0AMv4TtALJ,182472 +RT @ramadeyrao: Climate change-@HillaryClinton Taking on the threat of climate change and making America the world’s clean energy s…,180047 +"In shift, Trump says humans may be causing global warming... #News #Seattle https://t.co/3b7pqkfqAS",986479 +"RT @dangillmor: Why cable 'news' sucks, Part 35,754: who's gets to discuss climate change on TV? Not scientists. https://t.co/sV0YtnimA7 /b…",238659 +RT @VICE: This guy is walking across America barefoot to protest climate change https://t.co/eXVuKBMtfy,76266 +"RT @thenoahkinsey: First Donald Trump chose a climate change denier for EPA, then a public school hater for Dept of Ed. + +What next- Voldemo…",98479 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,177204 +RT @PopSci: How algae could make global warming worse https://t.co/CrMjm8TaEb https://t.co/bhW9IRGagH,298152 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,328729 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,297260 +"RT @hurricanetrack: Shortly after Trump signs order to unravel climate change regs, I'd like it if WH staffers turn thermostat way up - jus…",567264 +RT @erunyueng: Still cant believe America elected someone who said global warming was a hoax.,329437 +RT @businessinsider: A new study just blew a hole in one of the strongest arguments against global warming https://t.co/Aexecc5ruf,985621 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,789426 +RT @cnni: The kids suing Donald Trump over inaction on global warming are marching to the White House https://t.co/XH83XpBJdX https://t.co/…,246326 +"RT @guardianeco: New coalmines will worsen poverty and escalate climate change, report finds https://t.co/4EHmQn1Z3t",933736 +Clown preaches fear from the altar of man-made global warming: https://t.co/JhoNOLPXKg #climate,378617 +RT @gelliottmorris: The earth is *literally* melting and we have a President-elect that claims climate change is a Chinese hoax. That’s…,254499 +RT @kwilli1046: Guy who founded the weather channel says global warming is a hoax based on faked data. 'Listen Up' - Liberals https://t.c…,174922 +Pleistocene Park Russian scientists fight climate change with woolly mammoths https://t.co/FCSSvEIeYH and then...... https://t.co/4tUKSgACFy,312720 +RT @tjfrancisco74: 25 senior military/national security experts: climate change presents a significant risk to U.S. national security https…,568863 +Overfishing could be the next problem for climate change https://t.co/FibMSv5D0P https://t.co/70waVsLZ1b,903966 +RT @AlexCKaufman: A majority of Americans we polled disagree with the White House's hardline stances on climate change. My story:…,730989 +Trump admits 'some connectivity' between climate change and human activity - CNN https://t.co/x4fRHCezws,191303 +Venice could be underwater by the end of the century - thanks to global warming https://t.co/RfCstyItiA,261053 +"HuffPo's rendering of Dan Rather's climate change denier monument a great burial marker for journalism - +https://t.co/MTwXBKAXo3",179969 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,411209 +"RT @NationofChange: New study confirms findings of faster global warming, despite what the #GOP claims https://t.co/Te1HjrXSjr #ThursdayTho…",293338 +RT @YaleE360: NASA’s world-renowned research into climate change will be eliminated under a Trump administration.…,224041 +Green News: How a rapper is tackling climate change https://t.co/iiGvnoM6pz,627912 +"Seeing film #Lincoln sad that #Republican pty that abolished slavery now threatens earth w/arms race, climate change denial & lunatic leader",763334 +RT @jonny290: Reminder that the main anti-climate change argument has shifted from 'It's not real' to 'We didn't cause it so we d…,769155 +RT @climatehawk1: .@BillMcKibben talks #climate change battle on 'Real Time' - @RollingStone https://t.co/yXJMVR5SLp #globalwarming…,93337 +climate change is real in cannes https://t.co/BNNdg9SVr5,802385 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/6yxcm94Xsk via @Reuters",42183 +RT @thinkprogress: Republican remains a town hall no-show as climate change claims spotlight in Virginia https://t.co/jT44WfINxP https://t.…,407596 +"RT @nay3ni: As climate change heats up, #Arctic residents struggle to keep their homes #Arctic #Arctic https://t.co/DFhKKHHrLp",368054 +"RT @tomjwebb: Can we now stop asking public figures if they 'believe in' climate change, and instead ask them whether they 'under… ",618952 +"RT @goddersbloom: The irrepressible Mark Carney has set up a Stability Board to harass businesses on 'plans for climate change' +FOR GOD'S…",648741 +"@Litsaki97 Lie: it's just bubbles; think Disney +Truth: global warming",877147 +"And you're one of the idiots as there's no such thing as global warming !!! Please resign Trump, you stink !!! https://t.co/VC0nRl6Gv6",996306 +RT @BBCEarth: Images of polar bears can only go so far to instil an understanding of the consequences of climate change (Via @qz)…,154289 +"RT @fiscal_penalty: Despite the global warming, Alaska has had very little, if any, warming since 1977 (except Barrow), as shown below: htt…",333682 +"RT @CountessMo: 'We’ve known...climate change was a threat since...'88, & the US has done almost nothing to stop it. Today it might…",746454 +RT @fuckincody: im just not alright with a president not believing in climate change and his vp believing electroshock therapy will 'cure'…,504683 +RT @velvet_rope: Ciara did not invent physics eleven years ago just for y'all to come and deny climate change https://t.co/XX1R089RrA,455348 +WHEN will the christians realise this is global warming not jesus,744762 +Donald Trump says global warming is a Chinese hoax. China disagrees. https://t.co/ozJkxQlswQ via @MotherJones,153848 +RT @ianbremmer: You know who doesn’t care about climate change? Everybody. #GetReady https://t.co/3CgxfwUGPp,429721 +RT @dwtitley: Don't suffer from a failure of imagination. Noah Diffenbaugh a leader in attributing wx events to climate change. https://t.c…,460217 +RT @SarahBaska: when ur at a party and u remember ur president doesn't believe in climate change https://t.co/N1m9PCfiEY,622753 +RT @postgreen: The coming battle between economists and the Trump team over the true cost of climate change https://t.co/PgmOwuVDbK,925836 +RT @seaintlsilvia: It's official: Americans voted @JimInhofe as the nation's worst climate change denier. RT to congratulate our #ChampionD…,140313 +"RT @RealJamesWoods: '...an alternative to cremation, which critics say causes pollution and climate change.' #ClimateNumbskulls https://t.c…",498154 +Very interesting on communicating climate change. Via @dbcuervo 'Global warming sounds scarier than climate change' https://t.co/da5O80zatr,848278 +"RT @SaysHummingbird: Trump be like...climate change is still a hoax. + +(via @trumpenings) https://t.co/7sWehgTbjL",694120 +"RT @BloombergNEF: Asset manager asks for transparency on climate change impact on business, as it is a significant risk to many https://t.c…",614569 +Drinking ICED FUCKIN COFFEE lovin life shouts out to global warming,511015 +"RT @NBCAsianAmerica: For these Pacific Islander women, global warming is an immediate threat. https://t.co/pGzsjAlHtd",56117 +"RT @americanzionism: The person who wrote this article is a member of JVP, a hateful org that blames Jews for global warming, & is try t…",97915 +Why Severe Turbulence On Flights Could Be Much Worse In The Future https://t.co/JZhTDc45Rx The practical impacts of climate change,684968 +"@malmahroof37 #ScottPruitt claims CO2 is not a primary contributor to global warming? Which is worse: is Pruitt a liar, an idiot, or joker?��",290122 +"RT @UNDPasiapac: Nepal & @UNDP begin work on new climate change adaptation proposal to reach 100,000 vulnerable ppl…",896238 +RT @megan_styleGF: Could reporters stop asking if political leaders 'believe' in climate change and start asking if they understand it inst…,105501 +The most damaging part of Trump’s climate change order is the message it sends https://t.co/J50mZhmvf8 via @voxdotcom,155182 +"RT @simoxenham: I was certain this award would go to climate change, but this has to be the scariest graph of 2016 via… ",243396 +@FoxNews @EPA @EPAScottPruitt he is smarter than the scientists that have studied global warming! Hey look it is the earliest spring ever!,425069 +RT @motherboard: The hits keep coming: Trump's choice for Secretary of the Interior thinks climate change is 'creative writing'…,3804 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,92161 +Discussion about global warming: story of Tangier Island is a reflection of the decisions we will be making over and over again. #METal,360732 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,850932 +China warns Trump against abandoning climate change deal - https://t.co/1g91ZyA9TR,20149 +"RT @SierraClub: The EPA deleted any mention of climate change from its website, reflecting Trump’s “priorities.' https://t.co/8AWJ71n51s #…",695895 +"RT @Tombx7M: Political correctness could use a little climate change. +#wakeupAmerica #tcot #ccot #morningjoe https://t.co/30fBcx0Tqp",972635 +"RT @WalshFreedom: Obama took a private jet to Milan, then drove in a 14 car motorcade to give a speech on climate change. + +Ok. https://t.co…",986282 +RT @renyuwe14: You're so 🔥 you must've started global warming. 🙊 https://t.co/MShno2y1js,568549 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,434652 +RT @CarolineLucas: The moment the Government accused me of 'lacking humanity' for mentioning climate change policy in relation to Hurr…,507521 +RT @bengoldacre: Green politicians' weird anti science thing really is tiresome and unhelpful esp given their climate change desires https:…,263473 +RT @bengoertzel: Clinton functionaries unethically tried to suppress science skeptical of climate change orthodoxy https://t.co/KWtY9v0Enu…,267646 +RT @awhtiman: LL Bean making the most of climate change https://t.co/Epxoz2zx3b,149939 +"RT @Bergg69: Exxon knew of climate change in 1981 & still funded deniers! +https://t.co/YaGNdjvYuz +#cdnpoli #onpoli #abpoli… ",274077 +RT @worldnetdaily: 'The 'climate change' mantra has always been about promoting two things – global governance unaccountable to the... http…,776304 +RT @AndyBengt: Vi ska inte glömma vem som är vice president. Mike Pence anser att homosexualitet är en sjukdom och att 'global warming is a…,370879 +@RWPUSA And climate change is a bigger threat than Russia.,404861 +RT @Recode: Elon Musk says he talked to Trump about the travel ban and climate change https://t.co/YsLRwWIGon via @Recode https://t.co/NVcV…,204227 +"RT @WhiteHouse: “Without bolder action, our children won’t have time to debate...climate change; they’ll be busy dealing with its e… ",819486 +RT @JuddLegum: Secretary Zinke told 5 lies and 1 sad truth about climate change in 3 minutes https://t.co/18QPNGtIdH https://t.co/h2qZvsMEjr,142966 +RT @SenSchumer: Tillerson won't lift a finger on climate change & won't rule out Muslim ban. I won't vote for him. https://t.co/GwBl1Aps7M,818701 +RT @annemariayritys: 'Paris Agreement 2015/Art.2: Aims to strengthen the global threat of climate change.' https://t.co/nb9jer5Vrs…,274044 +RT @ClimateChangRR: Look at all the climate change deniers vying for jobs in the Trump administration https://t.co/F0XEEEFgbS https://t.co/…,665722 +@washingtonpost Because Rick Perry doesn't actually KNOW what a human being is or what climate change is or that th… https://t.co/kyXRdNJiN2,421305 +EPA head stacks agency with climate change skeptics: https://t.co/gw2sdOspBy https://t.co/UAh9518FT3,704236 +"RT @climatestate: Christians, as stewards of the Earth, have a moral obligation to do something about climate change and the threat... http…",349774 +RT @jnthnwll: you could've hosted a cookout in Antarctica today but your President thinks global warming is a joke,635513 +"RT @Valeria_DelCC: Please watch the documentary, Before The Flood. Whether you 'believe' in climate change or not, it's a wonderful and inf…",652424 +And I'm feeling like total shit sitting here cz i just started the lesson on global warming. And how each one's bit helps. #FuckTheSystem,146233 +World leaders duped by manipulated global warming data - Daily Mail - https://t.co/SaYiwf7H1p https://t.co/TxhrwulAhL,676332 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,696485 +"Nevermind, actually. Too many other countries have been hit harder with more drastic consequences. It's climate change y'all",474898 +@7Kiwi @GeorgeMonbiot Sounds like climate change to me,939207 +RT @csmonitor: Where did the myth of a climate change 'hiatus' come from? https://t.co/4ZshDk6izW https://t.co/ykfLDuA7JF,135234 +RT @whteverrachwant: how elected officials try to tell us global warming doesn't exist when the weather jumps from fall to summer lol,4494 +19 House #Republicans call on their party to do something about #climate change https://t.co/iHwHrot3Vn #climateresolution #climatedenial,678001 +"@EUflagmafia Rees-Mogg is climate change denier with fracking links,add Leadsom,Johnson,Farage,Murdoch,Dacre,Desmond etc,rush 2 tear up regs",505970 +RT @GeorgiaLogCabin: Nasty global warming advocates https://t.co/bnR0TFdb39 #Economy #National,656254 +RT @SenSanders: The Dakota Access Pipeline would be a huge blow to our fight against climate change. #NoDAPL https://t.co/47m6yUu4m5,552023 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,561933 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",885448 +RT @billmckibben: Reading climate change in the mud on the bottom of Walden Pond--thanks to @curtstager for a fine piece of science https:/…,284977 +RT @ClimateReality: Donald Trump says “nobody really knows” if climate change is real. Scientists beg to differ. https://t.co/SQvtnhVRLd,455946 +RT @wef: Can blockchain help us to solve climate change? https://t.co/ZZQrQC8cxt https://t.co/QFSE02TxJ1,891808 +#triggeredin4words climate change liberal fantasy,349787 +@obyezeks Effect of climate change is real for the region. The region has reportedly attained never before measured… https://t.co/rwgdEC7ZHY,598581 +RT @YahooNews: Bad news on climate change: Antarctica sets new record high temperature https://t.co/yrmWXgAKkN https://t.co/gjiUbnatRJ,327527 +RT @elisamich0422: .#Trump just appointed a 'climate change' skeptic. Thank goodness! Another one who attended 7th grade science & lea…,631112 +"RT @sciam: A century of global warming, in just 35 seconds https://t.co/ry7vsXAqQo https://t.co/52DRygYdAe",780626 +RT @whiteyspeak: I believe in climate change however I question if humans are causing the warming. Is that allowed comrade? https://t.co/Zj…,617439 +RT @mitchellvii: Almost tempted to watch CNN tonight just to watch them lose their minds over fact Trump just nominated a climate change sk…,778454 +"It is way to hot today, that doesn't mean man made global warming is going to kill us, it just means that I live in a state with hot weather",411141 +"We can fix climate change, but only if we refuse to abandon hope | Zoe Williams https://t.co/CynqOK8wMD",694508 +Before the Flood--Leonardo DiCaprio speaks to scientists & world leaders about climate change https://t.co/x6Hy0p4gJf #climatechange,451340 +RT @SavageJoeBiden: Me in 20 years because the Trump administration is ignoring global warming https://t.co/e0hdxnsDnP,200823 +"RT @miel: one of the BIGGEST contributors to global warming is animal agriculture, specifically cattle. you can help by reducing beef & dai…",252827 +RT @TheDailyClimate: A massive Siberian blaze is an example of how climate change has impacted the Northern Hemisphere. @EcoWatch https://t…,997245 +"RT @piersmorgan: FULL INTERVIEW: +Prof Stephen Hawking on Trump, climate change, feminism, Brexit, robots, space travel & Marilyn. +https://…",593241 +Trump really doesn't want to face these 21 kids on climate change https://t.co/Cp6v3czbYv via #enews24ghanta https://t.co/aGkZ85359L,150780 +RT @ClimateHour: California governor tells climate change deniers to wake up http://t.co/LriboR9PpA #ClimateHour http://t.co/2pch8iBC4W,701541 +RT @Tom_Francois: LIBERALS are in panic mode! Obama is freaking out! NASA proves global warming is NOT REAL! https://t.co/Yg07K3WdUc,342006 +"RT @postgreen: For the first time on record, human-caused climate change has rerouted an entire river https://t.co/Ct4aWdBHYM https://t.co/…",182752 +RT @BBAnimals: The Great Barrier Reef was pronounced dead today......... Do you guys care about climate change yet https://t.co/PMXt9Ly6XU,597528 +"RT @hrtablaze: Potus destroys fake global warming advocates . �� + +Troll level 5000 + +#EarthDay https://t.co/8Ts1Esh4J5",979212 +To deal with climate change we need a new financial system https://t.co/hKF4SFmPFB,730965 +Bill Gates and investors worth $170 billion are launching a fund to fight climate change through energy innovation https://t.co/YDHh0FJ18c,705732 +"@SenatorWicker If you can #FindYourPark after a few years of legislated climate change denial under tRump, you let… https://t.co/rlIYLIMlRi",852885 +"RT @CECHR_UoD: New study confirms NOAA finding of faster global warming +https://t.co/HTEvK0MBTy +#climatechange https://t.co/SzM7uroBdD",567968 +RT @JerryBrownGov: Gutting #CPP is a colossal mistake and defies science itself. Erasing climate change may take place in Donald Trump’s mi…,58159 +do u ever have a good day and then remember that trump is president elect and that climate change is gonna destroy us all because me too,485485 +RT @NASA_Rain: TODAY @ 10am ET on Facebook Live join @NASAEarth as we discuss the impacts of climate change on NYC and Rio…,270505 +RT @TheLastWord: EPA chief Scott Pruitt says carbon dioxide not a 'primary contributor' to global warming https://t.co/XTVsVCePGq https://t…,221568 +RT @WorldResources: People are the primary driver of #climate change and government officials know more than enough to act…,261639 +"Your experience in climate change is how I feel about dog training & behavior. Science denial is real, and exhausti… https://t.co/zddVs9lUoM",493242 +"RT @nytpolitics: The Times reviewed an alarming draft report on climate change by federal scientists, who fear Trump will suppress i…",988625 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",127890 +"RT @nathanTbernard: .@realDonaldTrump Scott Pruitt, climate change denier as the head of the EPA? Not good, Mr. Trump! https://t.co/fTFbNjN…",582873 +RT @sunlorrie: Not if Trump pulls the plug: Enviro Minister McKenna says global movement to fight climate change ‘irresistible’ https://t.c…,596848 +"RT @Meb7777i: Trump and the guy who invented the global warming hoax meet in Mar-a-Lago. Awkward, huh. https://t.co/shPQQECPo7 via @motherj…",653100 +Paul Kelly on climate change. #qanda https://t.co/1Tc3b0dHkW,681574 +RT @giseleofficial: “You may be surprised by the top 100 solutions to reverse global warming. ” https://t.co/YQJ5KXVCLN https://t.co/X2ghnR…,228139 +"Will Trump purge climate change scientists? - CNN - God, I hope #Trump cleans house in every federal agency. https://t.co/hkprgdP0P3",121922 +RT @newsduluth: New study says several northern forest tree species like fir and spruce won't be able to keep up with climate change https:…,941781 +RT @guardianscience: New study confirms NOAA finding of faster global warming | John Abraham https://t.co/0dKQagDWTo,169175 +RT @EJinAction: To slow climate change and speed up environmental justice https://t.co/ZGXbQk74oE via @HuffPostGreen,253167 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",715413 +@RogueNASA @BI_contributors What's that some fake picture showing fake climate change 🤣🤣🤣???,15656 +RT @politicalmath: This is a big problem w/ climate change solutions: the professional class is rich enough to shrug off the costs so…,825086 +@metoffice Surely this is evidence of climate change and not something to celebrate?,207315 +RT @thehill: Rex Tillerson signs declaration recognizing danger of climate change https://t.co/bwCpnug3uA https://t.co/fN7IdIkqqH,823519 +RT @350: 'Just four years left of the 1.5C carbon budget' -- we have to act NOW to prevent catastrophic climate change:…,369940 +RT @EcoInternet3: The continent that #climate change has not forgotten: Stuff https://t.co/4cMxg2zHMG #environment,359076 +"Things that won't be priority under Drumpf presidency: women, blacks, hispanics, lgbtq, climate change, immigrants, etc cuz they're not real",802295 +Bill Gates and investors are launching a fund to fight climate change through energy innovation https://t.co/7TYWX6Kayd via @qz,44252 +RT @datGuyKOFO: Dumping of industrial waste is also killing the earth's rivers & global warming is causing massive environmental di…,230042 +RT @peter1fahy: Globalisation and climate change damaging so many rural economies in Africa driving more to cities and on to Europe,663144 +RT @IslamAndLifeOFC: Prophet Muhammad ﷺ predicted global warming in a single Hadith & he warned us of our duty to strive to preserve the ea…,235342 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",948529 +"RT @ClimateReality: Globally, women are often more vulnerable to the effects of climate change than men https://t.co/TouOd4AGyZ…",649033 +"RT @WestWingReport: President, who also calls climate change a 'hoax,' may not know that Syria's civil war also has roots in just that htt…",622688 +RT @voxdotcom: Latest on the Ezra Klein show: award-winning author @ElizKolbert says we've locked in centuries of climate change…,500735 +RT @Helvetas: We work with local communities to foster biodiversity and mitigate climate change. Learn more:…,295382 +RT @Jackthelad1947: Trump to sack climate change scientists & slash Environmental Protection Agency budgets #auspol #standupforscience htt…,982200 +RT @shuvi: And global warming with Chilli powder https://t.co/yqe9zEqzns,349178 +"RT @NYTScience: Gag order, schmag order: The Badlands National Park Twitter account went rogue with tweets about climate change https://t.c…",395381 +"RT @Sierra_Magazine: It's Monday, and ICYMI, Trump admin tells climate office not to say “climate change,' like weather is Voldemort.…",544107 +RT @ClimateCentral: More and more park rangers are talking about climate change https://t.co/nQZ0mFgvwC https://t.co/K8o6IsyBIe,538241 +RT @Seasaver: If everyone who tweets about halloween tweeted about genuinely terrifying things like climate change & overfishing…,591984 +RT @ClimateChangRR: How does climate change compare to other security risks? https://t.co/uR5eL1FUc7 https://t.co/cZ3vsQzzuN,45181 +RT @SenWarren: Dozens of incredible kids at Clarke Middle School wrote letters to me about climate change – here's my message back…,708342 +"World´s first museum of polar lands opens in France - PREMANON, FRANCE: As global warming reshapes the Arctic a... https://t.co/JB74yLlsNX",950412 +"RT @SierraClub: World has three years left to stop dangerous climate change, warn experts https://t.co/CiixSZzwiT (@guardian) #ActOnClimate",118586 +Adding climate change to the list of things I can't talk about with my sister. #denialist,833509 +"Voter suppression, economic inequality, anti monopoly laws & climate change (break up media consolidation). https://t.co/RAKhpAlZ6w",694880 +"So now you have national agencies, asked to delete tweets about inauguration crowd, climate change etc bcoz it doesn't fit Trump's opinions",501069 +climate change is coming for our necks https://t.co/MWfakbhJTV,537327 +RT @pt: They're really going all in on this global warming hoax. https://t.co/eG9Pbbrgva,736909 +"RT @GlblCtzn: While you weren't looking, President Trump just disbanded a federal panel of climate change experts.…",777838 +There was one big elephant in the room at the UN climate change meeting https://t.co/Ps50kSqDbw https://t.co/9bh1ycJe1E,14607 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,198247 +"RT @hemantmehta: Don't worry, everyone. When President Trump does nothing about climate change, Florida will be the first to go.",532727 +"RT @insideclimate: In Trump, U.S. puts a climate denier in its highest office and all climate change action in limbo: @mlavelles…",971954 +"Trump attaccato per aver detto quello che già molti pensano, ossia che il global warming sia una balla inventata per interessi!",506983 +RT @Independent: On the frontline of climate change in the South Pacific https://t.co/804Nt6Wws3,740265 +RT @EnvDefenseFund: Don't let the Trump administration destroy our environment. Join us to fight climate change today! https://t.co/M2qV0Sf…,628974 +"RT @planetesh: Pls @SenatorCardin and @ChrisVanHollen, vote NO on this,: Senate energy bill would fan the flames of climate change https://…",273978 +RT @NatureClimate: Australia ratifies Paris agreement on climate change https://t.co/wylQ2KaQHh,890446 +@MikeBloomberg @LeoDiCaprio why aren't you vegan? meat industry contributes GREATLY to climate change and deforestation!,555626 +"@jakejakeny But if you like, let's reallocate whatever we're wasting on defense to fight an actual problem like climate change! 2/2",266376 +"RT @kylegriffin1: Pope Francis gave Trump a copy of his encyclical on climate change during their private meeting. +https://t.co/mPaGnL8GSE",555259 +RT @USFreedomArmy: It requires even more lies to support the global warming lie. Enlist in the USFA at https://t.co/oSPeY48nOh. https://t.…,605751 +RT @UberFacts: Should you care about climate change? This nifty flowchart will tell you: https://t.co/C6aQyOPNhX,642647 +Questionnaire to Energy Dept targets climate change conversations & shows a push to commercialize dept lab research: https://t.co/esifOquzwG,8695 +RT @gossipgriII: if global warming doesn't exist then why is club penguin shutting down,288654 +Kerry says he'll continue with anti-global warming efforts https://t.co/m0kpc8Drqv,420856 +"Arrogant Rep. Dave Brat ignites overflow Virginia crowd with climate change denial, ACA repeal talk https://t.co/vCAZBDh3iC",822637 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/ig8sxJGw2f https://t.co/eo85j1GK7j,495623 +RT @LordofWentworth: And played a key role in electing a climate change denier who will fry the planet. Well done Julian. https://t.co/zI2…,444782 +RT @Heritage: Did America’s NOAA publish exaggerated global warming to influence the Paris agreement on climate change? https://t.co/ymBljl…,598329 +RT @milesobrien: Did climate change make recent extreme storms worse? https://t.co/SGNKOHSLkg via @MOBProdScience,581704 +"RT @kylegriffin1: Energy Dept climate office has now banned use of phrases 'climate change,' 'emissions reduction' & 'Paris Agreement' http…",274996 +People really believe that global warming isn't real��,185975 +@Abdulghani72 climate change denial e.g. retaining supreme power over saving our planet. I admire what you guys have done. Admirable.,6500 +"We only have a 5 percent chance of avoiding ‘dangerous’ global warming, a study finds https://t.co/IPRkBn6ryW",4922 +RT @petefrt: Confirmed: NASA invented global warming by tampering raw temperature records. https://t.co/9on0KbSwnI #tcot #p2 https://t.co/6…,314724 +RT @davpope: 'Malcolm once endorsed common sense positions on climate change. Then he became prime minister' #marchforscience…,864689 +"RT @NPR: Some key figures from the Dec. 12, 2015, #ParisAccord, a global agreement on combating climate change. https://t.co/dNjlE9tfB2",890303 +"RT @Ragcha: Joe Heck voted to repeal Obamacare, defund Planned Parenthood and block measures to combat climate change. Wrong fo…",298217 +RT @ClimateHour: California governor tells climate change deniers to wake up http://t.co/LriboR9PpA #ClimateHour http://t.co/2pch8iBC4W,58759 +Why Pruitt's dynamically dumb approach to climate change? Peddles Junk Science pushing Trump’s Anti-Climate Agenda https://t.co/73hjWH7mMs,665061 +"RT @Earthjustice: Even as the Great Barrier Reef weakens from climate change, Australia pursues a climate-polluting coal mine… ",711365 +@cntraveller @Ray_Mears @Baglioni_Hotels Do you have any concerns over global warming?How do you justify your own carbon footpitrint?Flying?,53886 +"@realDonaldTrump fascist, misogynist holocaust & climate change denier liar #notmypresident under criminal investigation constitution2Trump0",639109 +RT @japandamanda: Never would have seen @BadlandsNPS's tweets about climate change if the government hadn't censored them. #thankyoutrump,955199 +Ita-Giwa hails Buhari on climate change agreement https://t.co/rZId8x3jRp,56403 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,986454 +RT @Qafzeh: Most Adaptive Species - Constant climate change may have given Homo sapiens flexibility https://t.co/BNQy8YYnWk https://t.co/hn…,725929 +RT @superdeluxe: Makes sense that an administration full of people who look like they died yesterday doesn't care about climate change,308560 +RT @Newsweek: Rex Tillerson used an alias to discuss climate change at Exxon https://t.co/DRz71A6WvJ https://t.co/h2hBzwCFaa,63259 +RT @factcheckdotorg: EPA's Scott Pruitt said CO2 isn't 'a primary contributor' to global warming. Scientists say it is: https://t.co/2TvR64…,893580 +"RT @saul42: Finally, Paris climate change agreement designed by crooks- #Trump is not buying this crap https://t.co/XVro1ojcAt",910594 +"RT @Oxfam: Last year, 190+ countries signed the #ParisAgreement promising help to those worst hit by climate change. Promises…",635622 +#Russian #President #VladimirPutin says humans not responsible for climate change -... https://t.co/ZWWTM9y6XL https://t.co/HRej7dVsPv,332270 +He makes no sense. A climate change denier for EPA? Not to mention everyone else is a bigot and incompetent! https://t.co/1GeCIETjj2,230361 +RT @ClimateCentral: National Parks are perfect places to talk about climate change and more and more rangers are doing it…,970928 +The nice thing about global warming is we won't ever have to wear coats. (Because we'll be dead.),987005 +"RT @CBSNews: As ice melts and temperatures rise, Alaska is fighting to stave off climate change https://t.co/2ihNIxJQg9 https://t.co/j9ZjPh…",599243 +"@Cuckerella Google 'Paris Agreement'. There is universal agreement that climate change is a real threat. This is not my opinion, it's fact.",415291 +RT @Independent: Donald Trump's views on climate change make him a danger to us all | @CarolineLucas https://t.co/6F0cIH9OSY https://t.co/f…,353090 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",571695 +RT @ClimateCentral: No one gets climate change more than weather presenters. Watch their forecast → https://t.co/s6uVtz6YWz #2020DontBeLate,442038 +"RT @CanadianGreens: Instead of taking action, we're STILL arguing about whether or not climate change is even real. + +the longer we wait…",766968 +RT @fryan: Serious question: What happens to Florida's electoral college votes when global warming puts it under water?,572932 +"climate change may have been accelerated by the terrible whale culls of the 20th century, #OpWhales https://t.co/QCPsO9SSU2",770249 +RT @thehill: Sierra Club calls for investigation of EPA head over climate change comments https://t.co/2du2KJM3IF https://t.co/eb5z7Hx73s,380515 +President Trump disbands federal advisory panel on climate change https://t.co/PwaciSbn4z #ff #tcot,308454 +RT @hinhtam: @valerielynn730 climate change got me fucked up bruh,870967 +"@jrsalzman @claseur Solar cycles are the cause of climate change I believe, human activity not. Global warming is f… https://t.co/uYBlTxIvPg",35630 +A NASA scientist told us why Trump — his new boss — won't stop him from studying climate change - Business Insider https://t.co/CTAOy18zjv,809561 +RT @ChelseaClinton: Hi Karen- thank you for asking. Sadly: ⬆️global warming➡️ ⬆️displaced people➡️ ⬆️risk of child marriage. See…,51932 +"RT @OregonZoo: A polar bear researcher's 60-second explanation of climate change: +#PolarBearWeek https://t.co/ZMTz9DO9Z8",937854 +RT @PetraAu: Amazonians call on leaders to heed link between land rights and climate change https://t.co/bc38tu04NU,845936 +"$8bn pipeline rejected in 2015 for threat to climate change, 0 sustainable benefit to economy; less than 50 permane… https://t.co/Rtc1fE72SL",48136 +RT @THECAROLDANVERS: everything in the world is depressing... my life... climate change... politics... penguin on penguin violence... ci…,337375 +Application of statistical method shows promise mitigating climate change effects on pine https://t.co/pVonoR7jMq #science #health,129260 +"RT @AltNatParkSer: The @USGS has a full list of US agencies running climate change programmes. Could they ALL be wrong, Mr President? http…",651061 +"RT @StillBisexual: 'In other words, bisexual men are like climate change: real but constantly denied.' https://t.co/PQRfuKhaIJ @Fusion @SLA…",949433 +RT @CivilEats: Is modern agriculture cultivating climate change? https://t.co/s7akNTme99,38474 +@CBCNews just like a bunch of lemmings...about to go over the cliff...to propogate the climate change 'lie'.,780400 +RT @NRDC: We are inseparable from the natural world. Help us fight climate change: https://t.co/gvTpolr1W7 #NoPlanetB https://t.co/8qusfFs7…,900148 +"Few things will fight poverty, climate change and food security better than improving India's small farms. One Indi… https://t.co/3yCGXN1Zq3",717361 +اسم المادة information technology for the health professions ' ' ' global warmingالـ ش ك و ؟؟؟,315768 +RT @jswatz: American Meteorological Society writes to EPA head Pruitt that human-caused climate change is 'indisputable':…,1094 +@RickeyLane14 global warming will do it to you,371575 +"Google is being very odd, we know they manipulate search results, but I woke up to a climate change documentary loaded up on YouTube...(1/2)",334703 +RT @kt_money: A petition to help keep climate change denier Ebell away from the EPA. Please sign and share! https://t.co/Y4dcA7hmFe,347301 +"RT @yahya_sarah: Remember, job insecurity, housing unaffordability, pressure, climate change etc impact young people and their health. #qan…",333023 +RT @BelugaSolar: Traditional power generation pollutes the air and is a leading cause of U.S. global warming emissions. Help reduce…,760539 +RT @chrisconsiders: make 2017 the year we fight against climate change. Eat vegetarian one day a week. buy one less pack of water bottles.…,986393 +Read how entrepreneurs in the Philippines are tackling climate change: https://t.co/L5oQyXZyNq #GEW2016 https://t.co/UvfdJTMLFv,113410 +RT @drvox: A rare sight in US politics: someone who understands climate change grilling someone who's trying to BS about it. https://t.co/9…,533841 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,646375 +"#NHL season still going on in mid summer. Predators had better win the Stanley Cup soon, before global warming melts the ice.",208765 +RT @CNN: Kids are taking the feds -- and possibly Trump -- to court over climate change https://t.co/oGw21W7Skw,874552 +"RT @FoxNews: .@MeghanMcCain: 'If you're on the left, climate change is a complete and total religion.' #Outnumbered https://t.co/illicC5dyF",581056 +RT @JonathanCohn: .@BernieSanders calling out media for largely ignoring issues like climate change and our broken health care system.,564133 +pretty sad really how much the earth is being destroyed by humans and climate change #BeforetheFlood,238576 +RT @petras_petras: First good news in 2017- UN declared the Baltic States as Northern European countries. Political climate change! https:/…,771517 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,569298 +RT @middleageriot: The same people who reject climate change think the Flintstones are historically accurate. #TrumpTransition #ScienceMatt…,362439 +RT @NinjaEconomics: A climate change economist sounds the alarm https://t.co/m3Hw5TYpFG,313524 +RT @redsteeze: Guys we can't ignore global warming anymore. This February is by far the greatest on record.,453646 +RT @NewsHour: MIT accuses President Trump of misusing its research on climate change in yesterday's announcement to leave the Par…,267618 +RT @JohnnieOil: @brianlilley @Banks_Todd well the Heath ministers should've went disguised as 3rd dictatorships looking for climate change$…,552103 +RT @SustainBrands: 64% of Americans agreed it was key to elect a @POTUS who understands that climate change is real... WHAT HAPPENED?? http…,922833 +What @realDonaldTrump presidency means for climate change action: https://t.co/KYVzylsE64 https://t.co/gpPr5TKuYD,161548 +RT @Rigel9000: The USDA has been instructed to use the phrase 'weather extremes' instead of 'climate change' https://t.co/RbTmO2V7ae,547728 +alertnetclimate: 8 in 10 people now see #climate change as 'catastrophic' risk -and are ready to act on it https://t.co/iELx4wcyML,882173 +RT @pablorodas: #CLIMATEchange #p2 RT California Gov. Jerry Brown defiant on climate change. https://t.co/7rLtNH5UZl #COP22 https://t.co/hK…,196745 +RT @peterdaou: Sometimes you just have to laugh. Pence isn't sure why climate change is such a big issue. https://t.co/69EkFhri3b,329376 +RT @AnitaAnimalkin: @iainbyrne @DianeRedelinghu I certainly think climate change is playing a big part in the yearly weather patterns.…,561279 +"RT @foe_us: 84 percent of people now consider climate change to be a 'Global Catastrophic Risk.' + +https://t.co/xf2anukbQ3",152362 +Ill start believing in global warming when it stops being cold as hell late march,577289 +#UAE #environmentalists say fight against #climate change must continue. @TheNationalUAE https://t.co/ZQDCKFwSks,569331 +RT @WSCP2: Obamas fiddled global warming data: *Shamelessly Manipulated* - https://t.co/YerkoubZAh #ClimateScam #GreenScam #TeaParty #tcot…,797033 +"RT @ClimateDepot: Spencer mocks: 'Normal people call it weather. More enlightened people, in contrast, call it climate change' https://t.co…",697697 +Can combating climate change coexist with increased US oil production? https://t.co/gkEByfGUnG https://t.co/kNRFydem3I,705751 +Is it climate change or global warming? https://t.co/3Whq0DTY8r,780961 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,607260 +RT @BBAnimals: The effects of global warming https://t.co/twFnLF4XNw,56078 +Wearing shorts in the middle of November. Seems like a global warming thing. @realDonaldTrump,233570 +RT @vicenews: Bill Gates and other billionaires are launching a climate change fund because the planet needs an 'energy miracle”…,900516 +"@BillMeck @JonahNRO Nah, just more climate change denial from those not qualified to deny",526766 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,950781 +"Lol 'climate change is serious guys' + +Do something about it",445119 +"RT @ChrisBarnes1994: I'm more certain climate change is real than certain OJ did it... and I'm pretty certain OJ did it. +#TuesdayThought",299523 +"RT @xpaddycake: *Earth goes through extreme climate change way before humans civilized* + +Yeah that's right + +'10 degrees hotter' + +Fucking hu…",700364 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,638191 +More proof that liberals are morons about climate change https://t.co/bVnfsgI5mX https://t.co/tWEyn4PxEe,746929 +RT @sierraclub: Ready for flooding: Boston analyzes how to tackle climate change https://t.co/WG2ts59T9l (@SJvatn @arstechnica),585971 +RT @ClimateChangRR: Marrakesh sends out strong signal on climate change https://t.co/KBo0RaHutM https://t.co/VdPf3LWs0z,568079 +"RT @DavidCornDC: Hey Florida, nice little Everglades you've got there. Thanks for voting for a climate change denier. See you in hurricane…",102283 +"RT @AmericanPapist: Since cold weather can never be a proof against global warming, according to you, why is warm weather always a proo… ",154483 +8 in 10 people now see climate change as a “catastrophic risk” – survey via /r/worldnews https://t.co/IhF4sOI4Dv https://t.co/ecnVZ8lbPZ,870534 +"@juliegoldberg a leading climate change scientist, and works to spread the word. He's written brilliantly how the r… https://t.co/EmOa9pLWan",367520 +We can still keep global warming below 2℃ – but the hard work is about to start https://t.co/VX6H9JJwSV via @ConversationUK,483579 +RT @Hannnuuuh: I cry for Mother Earth. The environment is going to die. Trump doesn't believe in global warming. He delegitimizes Her sickn…,846473 +"âš¡ï¸ “The Paris Agreement on climate change comes into actionâ€ + +https://t.co/f20AGAOSSn",863386 +Tillerson says US won't be rushed on climate change policies https://t.co/iQnpJAcNwh via @KSNNews,448491 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",879144 +RT @JasonLeopold: Harvard study: Exxon 'misled the public' on climate change for nearly 40 years. https://t.co/TSymtM9ovT,661533 +@BoneySRL global warming is a real thing and it might have an impact but shit happens anyways hey so difficult to say for sure.,778544 +"RT @peta: Meat production is a leading cause of climate change, water waste, and deforestation. If you're concerned about our…",26334 +"Scots energy firm more transparent over climate change risks after complaint, claim lawyers https://t.co/aavZpQNiqj",568606 +"@featherbeds I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",694622 +RT @MikeLevinCA: The G19 reconfirmed the Paris Agreement and a global strategy to deal with climate change. Trump reconfirmed his lack of…,176767 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",787826 +QUARTZ: China got 30 countries to take a stand on climate change and protectionism—mostly tiny ones https://t.co/tkwGMHAwuT,765977 +"Existential by reports' - hey, this approach could work for climate change, political realities, etc! #Xkcd… https://t.co/IN9xBUHUWv",79002 +"you and your friends will die from old age, and i will die of climate change' + +DEVASTATING",628012 +RT @ZachWWMovies: Conservative America is literally stealing your jobs by denying climate change and renewable energy.,468570 +"@ASterling I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",989146 +Thank goodness for #AngelaMerkel Merkel to put climate change at centre of G20 talks after Trump's Paris pullout https://t.co/A0G0n10mpu,458415 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",677605 +"RT @TheDailyEdge: Well done if you voted Green. You helped elect a President who doesn't believe in climate change, loves coal and wants to…",896052 +"RT @NYTScience: How Americans think about climate change, in six maps https://t.co/WgRfWXnAEW https://t.co/y9FTSfDbI7",689114 +RT @yvezayntIaurent: when you're out enjoying the 70 degree weather in february but then remember it's all thanks to global warming https:/…,743964 +RT @climatehawk1: When #climate change starts wars | @johnwendle @NautilusMag https://t.co/rRMqd0EoqE #globalwarming #ActOnClimate…,562549 +"Sanders, Perry spar over climate change https://t.co/oZVaVWU8YT",609521 +المطر اللي حصل امبارح ده من علامات the global warming كفاية تخاريف ��,769546 +thorul means luthor so lena is basically trying to save the planet from global warming. protect this nerd,936010 +@kylegriffin1 @mcspocky The money would be better spent on funding for research and climate change. Also for zika r… https://t.co/KEHlYvW9Qr,28321 +RT @kylepowyswhyte: “Colonialism is essentially climate change”: Understanding the North Dakota pipeline struggle NITV @SEI_Sydney https://…,907350 +"RT @jamespeshaw: ...As well as a farmer, a refugee-turned war crimes prosecutor, two new Pasifika leaders and a climate change negot…",15176 +RT @Connect4Climate: Cities are leading the way in the fight against climate change. Join @Sustainia for a chat on #Cities100 solutions:…,619727 +RT @BitsieTulloch: Happy 💀🎃🕸! Want to see something truly scary? @NatGeo & @LeoDiCaprio made a great documentary about global warming: http…,755696 +"RT @TheRoadbeer: Nice try, pal: Michael Moore’s climate change alarmism hits logical snag https://t.co/QNdkibPWoV via @twitchyteam",659339 +Lawmakers move to protect funding for climate change research - The Hill https://t.co/V9PCRVhA3A,868242 +@RobSilver @sunlorrie Goldstein apparently thinks that climate change is a sellable product. Who knew?,878577 +"Well the weather outside is frightful +But the fire is quite delightful +Cos climate change is here +Oh dear! +#DuttonsChristianXmasCarols",27645 +@g7 Letter from @CANIntl to the @g7 sherpas https://t.co/8wwr0M7ahg. Make climate change a priority,94375 +RT @THECAROLDANVERS: everything in the world is depressing... my life... climate change... politics... penguin on penguin violence... ci…,96253 +@pinstripealley 'Brett Gardner thinks global warming is fake news',106662 +RT @savingpltravers: i almost want emma thompson to call back trump and say 'climate change is real' and then hang up,927688 +"RT @elongreen: just to note: Republicans have done everything possible to accelerate climate change, and news networks refuse to s…",174681 +"RT @HarryXmasToYou: muggles like: huh, a cloud shape like a skull... must be global warming.",5808 +"Ok, @Joy_Villa wore a #MAGA dress. #GRAMMYs So what!! She is a vegan and a feminist who believes in climate change. Not a Trump supporter",562069 +"RT @VillaltaEmily: Anybody that doesn't believe in climate change or global warming can go outside right now , remember its January and stfu",697588 +Bill Gates: global warming & china 🇨🇳 hoax. Via @yournewswire https://t.co/CeQMcseGiF,323681 +It’s time to respond to climate change in a way that protects & promotes public health! @LancetCountdown… https://t.co/5369bbqXlB,767676 +RT @nowthisnews: Donald Trump is putting a climate change denier in charge of the environment https://t.co/70mznCfRTz,23872 +@stephensackur can you interview more climate change profiles.Just watched before the flood @LeoDiCaprio @YouTube government needs to act!,901914 +RT #LookingForNews.>> USA TODAY #US China to Trump: We didn't make up global warming https://t.co/kRvCDc7KGH... https://t.co/GI3SWoKrTC,940000 +"@x_krystin_x it's not that people don't believe in climate change, it's more that they don't believe it's man-made",152867 +RT @benandjerrysUK: Did you know that eating pizza can help stop climate change... Find out how here > https://t.co/R3EorJcPIZ https://t.co…,174045 +RT @IJNet: Nepal is one of the countries most affected by climate change. Here's how its journalists are conveying the crisis:…,952247 +RT @Time4Depression: The bad news is that an incompetent hate monger is our president. The good news is that climate change will end humani…,420045 +RT @CJRucker: No shame: Weather Channel propagandists create video manipulating young kids to push ‘global warming’ fears https://t.co/AEn…,219993 +RT @WMBtweets: #2020DontBeLate: 'We have three years to act on climate change': https://t.co/pj2QhhkHRz https://t.co/h63owQxETt,384450 +How globalization and climate change are spreading brain-invading worms by @AdrienneLaF https://t.co/EGXuMmKp0s,284022 +RT @tashavanderbilt: Damn you climate change. https://t.co/SRXVPwZxCu,281768 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/81uSvku4Yk via @Reuters",969999 +@awildrooster @ShahZaMk No we got a narcissist who doesn't believe in climate change and who just set us back for decades. Wish I was wrong,692396 +Scott Pruitt: climate change denier and bedfellow of polluter lobbyists. Reject his nomination as EPA administrator https://t.co/0Ybe3G38ID,566712 +RT @lizbatty: @ehorakova I am pretty down on the monarchy but if Charles wants to disrupt every state visit to talk about climate change I…,397080 +"RT @bennydiego: Trump has spouted misogynistic, racist, xenophobic & climate change-denying views every step of the way. I do not wish him…",400965 +Labor secretary who is against raising the minium wage. Dir of EPA who doesn't believe in climate change. What else have you got for us?,553873 +"RT @SenSanders: Mr. Trump may not know it, and his cabinet may not know it, but the debate about climate change is over. https://t.co/yRBBb…",314655 +RT @postgreen: Reports on climate change have disappeared from the State Department website https://t.co/Y6Cz1EW3fR,210043 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,66392 +"World has three years left to stop dangerous climate change, warn experts https://t.co/0ax53a05Q4 #climatechange #sustainability #cop21",888438 +RT @scifri: Next on #SciFriLive: How to talk persuasively about climate change. https://t.co/mzU0LaEmck,42015 +@katearoni2 @NolteNC NOAAs global warming data IS a hoax,155936 +"Cutting funding for climate change research, HUD, and meals on wheels.",456964 +RT @danichrissette: Can y'all believe donald trump actually believes climate change isn't real??? and there's people that agree with him???…,100619 +"RT @capbye: .@EricIdle +I think denying climate change should be considered a mental illness since climate has been changing since beginning…",165244 +RT @NatGeoPhotos: Here's what happens when an astronaut and an actor start a conversation about climate change:…,918091 +I'm scared of climate change and deforestation and war...basically of humans...,225368 +RT @Oddeconomics: Not adressing emergency preparedness would lead to an economic cost comparable to climate change if there is a glob…,809620 +"RT @1followernodad: ok a climate change denier heading the EPA is AWFUL, but what's that shade of lip stain my dude https://t.co/w8BKE4wZ3s",543287 +"EPA head Pruitt said CO2 wasn't primary cause of climate change, EPA received massive influx of calls & its voicemail reached capacity",858075 +#Seoul to introduce new car scoring system to fight climate change and air pollution: https://t.co/30khmEHKN6 #http://Cities4Airpic.twitte…,342041 +"RT @igorvolsky: Trump made sure to mention Melania's QVC jewelry line on WH site. + +Stripped it of climate change, AIDS policy ment… ",501333 +"RT @Bentler: https://t.co/sMXk4zLKAg +Record number of Americans see climate change as ‘serious threat,’ accept it is real…",688842 +"RT @fivefifths: The American South will bear the worst of climate change’s costs, @yayitsrob reports. https://t.co/KXxAHgxI3Y",259862 +"RT @ForeignAffairs: Under Trump, expect an end to U.S.-Chinese cooperation on climate change. https://t.co/Bq4rdMB5Gh",844239 +"RT @scifri: When trying to convince a climate change denier, try focusing on solutions. #DayOfFacts https://t.co/IdUpF3fP9D",939482 +RT @BarnabyEdwards: When are we allowed to say that oily little climate change deniers who associate wind farm advocates with paedophil…,851282 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,782419 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,156502 +"https://t.co/GrbC36YNJP +“Do you believe?” is the wrong question to ask public officials about climate change… https://t.co/0rIVzc3TQx",411451 +RT @tveitdal: Bird species vanish from UK due to climate change and habitat loss https://t.co/lC9YCf3CAB https://t.co/7tyFL6IB2F,778098 +"RT @mcspocky: Trump bans Punxsutawney Phil for refusing to spread his anti-global warming propaganda. +#GroundhogDay +#Orwellian… ",748621 +RT @voxdotcom: How progressive cities can lead the climate change battle https://t.co/GTk7C41wTk (via @Curbed),991104 +"RT @DanielH85442891: @Franktmcveety @breakinnewz1 @Steemit The Star wants Trudeau to demand action on labor rights, climate change in a rev…",429100 +We can still keep global warming below 2℃. Here's how https://t.co/M2wVbjTElZ #climate https://t.co/CWlqpAX84A,242868 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,383918 +RT @CarbonBubble: #ShellKnew: 1991 film made by oil giant warned of the dangers of climate change. https://t.co/tWih3nnOH4 https://t.co/16C…,665976 +RT @NatObserver: Support reporting on #animals and climate change. Pledge & get @Linda_Solomon @mikedesouza to speak at your event!…,464303 +"RT @lrozen: RT @clparthemore: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/FZgRmCMOkN via @Reuters",136987 +#Agribusiness #Kenya #Africa.A new innovation to cure climate change $encodedTitle. https://t.co/Bcq49nmvdy,210063 +What global climate change may mean for leaf litter in streams and rivers https://t.co/Ufx8e4oI6C,931052 +RT @theheatherhogan: My choice is: two chill people riding effective public transit or a racist police state that denies climate change?…,726315 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,430258 +RT @ConversationUK: NASA has transformed climate change communication – cutting its climate funding would be a huge mistake…,366927 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,303238 +RT @imcarolanne: my heart says nice weather but my brain is saying global warming https://t.co/zzObGqpmzA,485960 +RT @Caesar_Cheelo: @ZiparInfo says Zambia should consider coal as alternative energy given climate change & reduction in hydro-power produc…,300485 +RT @MarianneMugabo: I'm an #actuallivingscientist working on the effects of climate change on a host-parasitoid system and I also happe…,486143 +"RT @edstetzer: So today Trump sees climate change, won’t prosecute Clinton, disavowed the alt-right, and is against torture. + + I’m calling…",487258 +"RT @DepressedDarth: Dear Earth, + +This is the global warming you really need to be worrying about https://t.co/zJct20ywhL",86791 +Minister for clean technology in mitigating harmful impacts of #climate change: Dispatch News Desk https://t.co/evO32cpNXg #environment,483979 +RT @montaukian: World's biggest fund manager in 'Darth Vader-style' warning to company directors who deny climate change https://t.co/RWBKO…,557002 +RT @Wisethedome: If you believe in climate change why aren't you vegan?,651130 +RT @phaninaidu1: Many more happy returns of d day @LeoDiCaprio â¤ðŸ˜ hope you'll succeed wd ur efforts on climate change @vishnupspk_fan @sha…,240130 +They also have a song about global warming and how we should take care of our planet because we give it to our children,854919 +"RT @c6eth: Theresa May voted: +Against measures 2 prevent climate change +Voted FOR culling badgers +Against smoking ban +Against fox hunting…",126330 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,959514 +"RT @ThomasPogge: To avert climate change, it's necessary, & sufficient, to restructure the global economy. Personal virtue won't do. +https…",669369 +"Finally this guy is doing something right. I don't want to fund climate change! +https://t.co/0UocnkvZBv",906463 +"RT @NatGeoPhotos: Though visually stunning, this colorful view of a snow cave sheds light on our warming planet:…",251017 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,17936 +RT @AdamsFlaFan: The Paris Agreement on climate change has some surprising new supporters: the coal industry https://t.co/adWA3iR0pN,275097 +RT @nytimesbusiness: Trump questions the science behind climate change as “a hoax.” America’s top coal producers take a different tack. htt…,973737 +RT @Jackthelad1947: The Guardian view on climate change: Trump spells disaster #auspol https://t.co/XdtngUxBN5 https://t.co/gguIM5NAXL,398175 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",549419 +"there's so much snow outside when will it stop, global warming where u at",830932 +"RT @_probablysarah_: I now have a president who thinks climate change is a hoax, and is willing to watch our plane die around us and not do…",62153 +@DJSPINtel Fighting global warming does require starving. Get your data from science not right wing propaganda,836743 +RT @ClimateHome: Corporate America is uniting on climate change https://t.co/y2VgzTauPF via @axios,688979 +RT @frontlinepbs: Proposals that would influence how climate change & evolution are taught in public schools gained traction in 2017…,467710 +#Reindeer are shrinking on an #Arctic island near the north pole as a result of climate change https://t.co/J85HHYjeib,786829 +how can u be so dumb and think that climate change doesn't exist,475922 +RT @physorg_com: New York skyscrapers adapt to climate change https://t.co/7kfNvTeMpY,756330 +A climate change skeptic is leading Trump's EPA transition — but these charts prove that… https://t.co/B0HfdCRtNk,129546 +"RT @kenklippenstein: As we prepare to spend the next 4-8 yrs debating if climate change is real, China just invested $361B in renewables ht…",283112 +Oh yeah there's no climate change *sits through day 5076 of rain with no forecast end in sight*,177141 +"RT @Kloppholic: Imagine trying to convince yourself that global warming isn't real and instead a conspiracy. Wake up, before it's t…",27227 +RT @TonyLaramie: headass this climate change means we all dying soon,991302 +RT @adamcoomes: Trump administration begins altering EPA climate change websites https://t.co/i1pjSTpfG9,769041 +RT @wef: The cleverest countries on climate change – and what we can learn from them https://t.co/El6Q3wnJMK @apoliticalco https://t.co/WnJ…,982553 +"RT @PhuckinCody: *watches a show about global warming* +Yeah whatever, doesn't affect me. + +*watches a show about bear attacks* +Would I be ab…",882621 +"RT @ReutersChina: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/hUihq4qxTa",953530 +#earthquake let me guess liberals will say it is caused by 'climate change'.,834944 +@LiamPayne what do you think about global warming? 😅🌏 #askliam,561470 +RT @SeanMcElwee: More well paying jobs while saving humanity from catastrophic climate change. Sounds awful. https://t.co/DOqydrrFIj,384297 +https://t.co/Q81kKsILwl DeCaprio furthering lies of climate change! meets with our Trump! DeCaprio is a deceitful liar!. Tell him so!,521834 +This shouldn't come as much of a surprise. 45* rejects climate change so backing out of Paris Accord should be expe… https://t.co/hLjQp9oXDJ,878776 +Chicago mayor Emanuel posts EPA’s deleted climate change page https://t.co/rxSRbZrJSF by #politico via @c0nvey https://t.co/rRHDtzVLn4,800561 +RT @chriskkenny: except that global warming is global - and only global - so your argument is inane https://t.co/5wIbtC3SZp,332192 +RT @btenergy: The public & private sector must work together on climate change. @richardbranson is helping lead the way:…,626665 +"RT @BBnewsroom: New EPA chief continue to deny the facts of climate change +https://t.co/L0x1KZpphh",720978 +"RT @tribelaw: Fallacious to look for 1:1 correlations. Causation isn't linear but stochastic. Over time, global warming --> more…",471603 +SARRC states urged to cooperate on climate change - Daily Times https://t.co/SgZobs2oz5,840316 +RT @Salon: Americans plan to fight climate change with or without the federal government's help https://t.co/YFUq3hcYlw,270413 +"RT @cooperhewitt: Tomorrow 6:30pm, meet 3 designers whose collaborative projects address social, economic & climate change challenges…",666499 +It just absolutely blows my mind that in the year 2016 there are still people who don't believe in climate change. How can you be that dumb?,934904 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,750005 +RT @GlobalGoalsUN: Protecting people & planet are at the heart of the #ParisAgreement on climate change. @UNFCCC's @PEspinosaC explain…,370595 +"RT @Jamienzherald: How did climate change ever become a 'Liberal' issue? Storms, drought & ocean acidification can't really distinguis…",93511 +"RT @Dick_Trenchard: 'Whenever you produce better for less...that is climate change' Feeling inspired by Martin Frick, FAO's climate head @c…",389325 +die everyone yall useless piece of crap causing global warming dogs are better,285464 +"RT @PeteButtigieg: When the EPA head does not understand climate change, it endangers American communities--not just on the coasts, bu… ",537960 +China to Trump: We didn't invent climate change and it's no hoax https://t.co/M2wfxrfUbl https://t.co/MxIAnpvfxG,523402 +RT @nytimesbusiness: Hundreds of American companies are pleading with Donald Trump not to abandon gains made to mitigate climate change.…,453346 +RT @ChristopherNFox: 'China has already wrestled the mantle of leadership on #climate change from the United States' https://t.co/MIcq0BVaT…,286755 +"RT @IGG_NL: UN climate change conference COP22 is kicking off in Marrakesh, Morocco - it's #ActionTime! Follow the Dutch delega…",735544 +RT @matthaig1: I think if people want to ignore the science of climate change they shouldn't have access to the science of nuclear weapons.,737829 +RT @alessiacara: someone put my song on a spotify playlist called “global warming is real… let’s dance.” dance for a cause amiright https:/…,866869 +"In interviews, Trump's EPA pick questioned climate change, said Obama EPA rules would be undone… https://t.co/zS8Z1hG6NU",887135 +"RT @steph93065: Angela Merkel characterized climate change talks with Trump as “very unsatisfying.” + +The fact that she is not satisfied is…",539693 +RT @Achapphawk: Money won't matter here when the United States is under water due to climate change. https://t.co/xQmwg05Zm6,912791 +"RT @evanasmith: New study says if zero done on climate change, TX will lose up to 9.5% of its GDP per yr beginning in 2080 https://t.co/3nf…",32937 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,607228 +RT @austincarlile: Maybe all of you that don't think climate change is real will disagree with this one too: https://t.co/qYAyKysi84,678005 +New global database of #trees affirms: greater protection of #forests is needed to slow the pace of global warming. https://t.co/wgwriN47I7,547998 +@GOP Keep Denying Climate Science. #Idiots. Did climate change intensify Hurricane Harvey? @yayitsrob reports: https://t.co/hFSCeoY4u3,111384 +RT @ngadventure: This photographer spent most of his life watching Arctic climate change. Here's what he's learned. #MyClimateAction https:…,135862 +RT @GreenpeaceUK: World's biggest oil firms announce plan to invest basically no money in tackling climate change…,585961 +"@hockeyschtick1 Failed theories; the greenhouse effect, global warming, and climate change. The computer models don… https://t.co/DM4XkJNQPW",851295 +RT @IoneIy_night: just bc the US is in ruins doesnt mean god is coming. we aint the center of the universe. focus on climate change.…,876430 +@elliegoulding your music sucks and global warming/ climate change is a myth,161949 +"RT @ProgressOutlook: Scott Pruitt, who heads the EPA, doesn't think carbon dioxide emissions contribute to climate change.",265741 +"@RealJamesWoods Nah. Love her, but she's a global warming believing feminist.",469560 +RT @jne0908: @LIBShateSARCASM the scientific community that climate change is increasingly ruining the environment. Species are dying off a…,625147 +#GlobalBusiness 11 ways to see how climate change threatens the Arctic https://t.co/4VkHoaTuKy #HubBusiness #WEF https://t.co/zC5SDjgy96,843557 +"Humans causing #climate change up to 170x faster than natural forces, scientists say https://t.co/uWqeKhCYfS #anthropocene",246532 +"RT @DrJillStein: The #GreenNewDeal: +👷ðŸ¾ Jobs for all who need work +☀ï¸ 100% clean energy +🌎 halt climate change +✌ðŸ¼ wars for oil obsolet…",397532 +RT @thehill: Conway attacks CNN anchor for bringing up climate change during hurricane relief effort https://t.co/36rwEsEJIs https://t.co/m…,363915 +RT @csmonitor: How climate change dried up a Canadian glacier river in a matter of days https://t.co/l04LNgtYL4 https://t.co/EE4e4YdzOh,535584 +"RT @perfectsliders: Scientists Changing Temperature Data to Make It Hotter, adjustments responsible 4 the global warming shown by 3 separat…",195696 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",432742 +RT @NPR: Internet outcry after new policy action items replace topics like climate change & LGBT rights on White House site https://t.co/oR…,45471 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,147931 +Neenah boycotted global warming and is staying under 30 degrees in protest,351920 +List of excuses for ‘The Pause’ in global warming https://t.co/DRKPhClB66,728240 +Rick Santorum: I have ‘concerns’ about Rex Tillerson over climate change https://t.co/XdOcOr6Ghu https://t.co/momQijOvYR,15379 +RT @DavidPapp: China may leave the U.S. behind on climate change due to Trump https://t.co/rEB0oyEdVt,138964 +RT @Patbagley: Cartoon: If the media covered climate change the way it covers Hillary's email https://t.co/B93ZlKMkrp via @fusion,406562 +"RT @vanbadham: 'The meaningful issues Trump ran on.' + +Like claiming climate change is a hoax perpetuated by the Chinese? + +The Gree…",673979 +EPA head Pruitt: Paris climate change agreement 'all hat and no cattle' https://t.co/sYMAD0NlNm,6599 +RT @vicenews: Donald Trump’s unlikely climate change foe: corporate America https://t.co/PaCuRTkF8R https://t.co/lmWHU1xLmO,3316 +"RT @Acclimatise: Source of Mekong, Yellow & Yangtze rivers drying up - what is the role of climate change? https://t.co/pWx5AvPzFR https://…",963207 +"RT @SafetyPinDaily: “Wayne Tracker”: As ExxonMobil CEO, Rex Tillerson used an email alias for discussing climate change | @taylorlink_ +htt…",292792 +"RT @Brunothegrape: For the first time on record, human-caused climate change has rerouted an entire river https://t.co/CQkY1HCq8T https://t…",715826 +To me that would interfere in climate change for the worst. This is probably what climate change monies r all about… https://t.co/hZgfFQqjeD,901330 +"RT @nytimes: World leaders are moving forward on climate change without the U.S., declaring the Paris accord “irreversible” https://t.co/nb…",658591 +"David Attenborough on climate change: 'The world will be transformed' + +https://t.co/noj8qaAM63",700745 +"RT @ABCPolitics: .@realDonaldTrump vows to cancel 'billions' in climate change funds to UN, adds 'I'm an environmentalist' https://t.co/P1H…",684686 +@KaldrKate @OathKeepersMO @AVestige1 @lsarsour Ahhh ... more 'corrected' data? You do the same with climate change… https://t.co/qdAe2c2nih,585044 +"RT @dsquareddigest: Like climate change, there's no 'debate'. There's no interesting questions, it's just that some people don't like t… ",72912 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,292080 +"RT @tveitdal: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change…",775106 +"RT @SenSanders: Yes Mr. Trump, climate change is a 'hoax.' It was just a haphazard occurrence that that 13 of the 15 hottest years… ",429183 +"Global climate change has already impacted every aspect of life on Earth + https://t.co/sEqCQ9s6N3",79809 +RT @SallyDeal4: #EPA #Trumplies #EPA #ClimateChange Why Trump's EO on climate change won't help coal miners. It's abt OIL! Conjob! https:/…,710041 +"Trump’s chief strategist is a racist, misogynist, #climate change denier. We must #StopBannon. Sign on & share: https://t.co/3qnpAmN7DH",359322 +"Putting climate change deniers aside for now — even if you say after Trump’s over they can sign again, the momentum will be lost.",558178 +"RT @SenSanders: We need a cabinet that will take action to combat climate change, not deny that it exists and is caused by human ac… ",883974 +it's 7:07am and i have been crying for 25 minutes about polar bears losing their habitat because of global warming... happy thursday,796425 +Now Hollywood understands the impact of 'Climate Change' ....As we wait for those low budget movies on climate change ..,792125 +We are screwed if we don´t stop climate change,603149 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,412743 +RT @TheDemocrats: Trump's nominee to lead the EPA thinks his opinion on climate change is 'immaterial.” https://t.co/IEF2mC5LX0,899120 +The Muslim Mayor who said climate change is a bigger worry than ISIS. The same mayor who said big cities just have… https://t.co/d8elZ1NKHW,77176 +"RT @PopSci: If you live in the South, climate change could kill your economy https://t.co/JERitlWhug https://t.co/N23dWj0w6x",48054 +"RT @rvlandberg: In break with Trump, his pick to lead the Interior Department says climate change is no hoax https://t.co/CmcQGwrN9u via @b…",744133 +"RT @miel: one of the BIGGEST contributors to global warming is animal agriculture, specifically cattle. you can help by reducing beef & dai…",792380 +RT @CAFODSchools: 'I have seen with my own eyes the realities of climate change.' Here's Sophie's new blog from Ethiopia:…,450463 +"RT @mitchellvii: Phoenix just broke a heat record set in 1905! OMG, climate change! But wait, so it was just as hot in 1905? Sounds more l…",923478 +RT @brhodes: Some of us have children who live on planet Earth and would like it to not be ravaged by climate change https://t.co/q8nM0Kd1Df,825217 +@BigJoeBastardi This past week the left have been on a rampage over climate change. A full stop campaign. I wonder… https://t.co/KWKFecDjkW,92054 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,455204 +"@jenniferx007 Exxon has known about global warming since 1960's and part of their plan is to have genocide which + M… https://t.co/p9ub94Kfs2",166549 +RT @PatriotForum: Global warmists brace for snow dump on climate change narrative - #News https://t.co/uiTFZAahs9,864815 +RT @guardian: #GlobalWarning: 97% of academic science papers agree humans are causing climate change https://t.co/3n8F5fS2EE https://t.co/O…,736961 +When will people understand this about globalism & not global warming. Enlist ----> https://t.co/rRZgBcCxBO. Act!! https://t.co/sQACOxm7kl,495799 +"RT @whomiscale: ahem, ahem, [coughing on smog] sorry. anyways, global warming isn't real",988766 +"RT @verge: Fighting climate change isn’t a ‘waste of money’ — it’s a good investment +https://t.co/NtdNw19oRZ https://t.co/jMjkrzk0ko",440864 +@IkedaKiyohiko What would it be if there's anything we should be more concerned about the earth other than global warming?,7273 +Know anyone in need of a climate change denial “vaccine”? Hint: initials are DT https://t.co/nq90dd85vT https://t.co/tC5KFs4rsx #ClimateC…,114016 +"RT @impressivCo: @SenSanders Let's not forget that climate change is real, no matter what we hear in the media. Save our planet! https://t.…",713565 +@tinycarebot what if u afraid that nature is getting fucked up by global warming,713129 +"RT @UberFacts: President-elect Trump has selected Myron Ebell, a climate change skeptic, to lead his Environmental Protection Agency transi…",681654 +@tzeimet21 sounds depressing. 8/10 would recommend taking a 3hr class for a month about climate change bc we gotta save earth but also hw://,633587 +"RT @summerbrennan: Graham openly supports climate change science, and is vocal about defending it. https://t.co/V1hhU9578q",489731 +RT @SenSanders: Join me tomorrow on Facebook Live at 11:30 a.m. EST for a conversation about the movement to combat climate change…,71236 +RT @Fusion: 'Do what you can.' Actor and climate change activist @MarkRuffalo gives tips on how to become an engaged ally: https://t.co/2uc…,954902 +"America’s youth are suing the government over climate change, and President Obama needs to react - Salon https://t.co/z41TXOysfW",608676 +RT @Vaptor365: @GDamianou @ccdeditor It's not climate change. It's global warming. Or maybe it's something else now? Like huge BS?,841621 +@StJohnsTelegram It's amassing that anyone can remotely entertain the idea that we do not need to sit up and pay attention to climate change,938387 +"At the DOE's climate office, words like climate change, emissions reduction and Paris agreement are not welcome… https://t.co/dhzQgtows0",96791 +"RT @joanjuneau: Despite Trump’s threats, Obama administration announces bold plan to fight climate change https://t.co/4juWMHxTob via @Huff…",336255 +"RT @GaryLamphier1: It's not about climate change, it's about $: Vivian Krause on the US players who fund the anti-oilsands crusade: https:/…",654234 +RT @Varneyco: Eminent Princeton physicist says climate change scientists are 'glassy-eyed cultists'.. who will potentially harm t…,568095 +RT @nytclimate: The NYT obtained a draft federal report on climate change that sounds the alarm on warming. Will Trump release it? https://…,297199 +RT @NRDC: 'Our children won't have time to debate the existence of climate change. They'll be busy dealing with its effects” —POTUS #ObamaF…,63520 +Corals tie stronger El Niños to climate change,146672 +"RT @ardenrose: I can't believe anyone thinks climate change isn't real. You have to be either very stupid, or in the pockets of big busines…",156613 +RT @NPR: Honduras ranked No. 3 in the world on the list of countries most affected by global warming between 1996 and 2014. https://t.co/wE…,209688 +"What do you think? +George Monbiot suggest we say 'climate breakdown' instead of ''climate change'. We've been... https://t.co/ftWRXGTzUo",233240 +"RT @etonmessuk: You can draw a Venn diagram that links anti-feminists, climate change-deniers and people who voted for Brexit #nomoreboysan…",635250 +"RT @iansomerhalder: VOTE VOTE VOTE!!!! +;) VOTING for a candidate that believes climate change is a hoax is the… https://t.co/kaLLCio8eo",818370 +"RT @Tomleewalker: its not like 'oh, my grandma doesn't believe in climate change'- the man in the highest position of power in the globe do…",250804 +RT @WorriedCanuck: Hey Al Gore what the hell happened to global warming? We're going into an ice age U lying prick. How much R U worth…,472432 +RT @Aiannucci: The US elected Trump but the rest of the world didn't.So what do we do if US policies ( e.g. climate change) threaten the re…,526619 +RT @petefrt: Confirmed: NASA invented global warming by tampering raw temperature records. https://t.co/9on0KbSwnI #tcot #p2 https://t.co/6…,932140 +RT @OCTorg: Fed court has ruled rights of @octorg youth threatened by climate change. Help them proceed to trial!…,678223 +RT @Dali_Yang: U.S. cedes global leadership role to China on fighting climate change. https://t.co/clLImNOHQ2,499800 +RT @hfairfield: China's coastal megacities — which grew from small towns in the last 30 years — face megafloods from climate change…,94093 +"Some customer: The weather outside is so weird!! It's hot!! +Me: yeah, climate change has affected us +Them: Maybe + +The fuck?? Maybe?? No BIH",975989 +Rise in Arctic Ocean acid pinned on climate change https://t.co/7NvfHCXgli,546488 +RT @kaatherinecx: we need to do more about global warming �� https://t.co/xMvskSJUXK,823328 +It's 90 degrees and dry as your skin leather bound skin @realDonaldTrump . This ain't no hoax this is global warming,83230 +RT @libbyliberalnyc: Explain to him there is no such thing as climate change. https://t.co/wQ8AotlL4Y,613657 +RT @ReutersUS: JUST IN: EPA chief Scott Pruitt disagrees that CO2 is primary contributor to global warming: report https://t.co/bVPVRkaYpY,465639 +RT @hockeyschtick1: In light of recent events – a possible United States climate change action plan https://t.co/Kd83HwgkGX,37735 +RT @vikramchandra: After a complete 19-1 isolation on climate change? #MakeAmericaAloneAgain. https://t.co/AMycDZOZUi,508126 +Please RT #health #fitness Is it too late to reverse global warming&quot; This is what scientists have to...… https://t.co/OPo688QxBs,338723 +"RT @SenBobCasey: 300M children breathe highly toxic air per @UNICEF report, we must act on climate change - https://t.co/KtIX5FdAN2",216769 +"RT @faaitthhhhh: Facts: There are 2 genders, global warming is made up, the pay gap isn't real, women have equal rights, guns save lives &…",924616 +"RT @SenWhitehouse: How do we know climate change is real? Just take a quick, 5-minute look at what’s happening in our oceans. https://t.co/…",128444 +Who knows what Trump could mean for global warming 😱😰,781378 +@realDailyWire @DineshDSouza 'Do as I say but NOT as I do' seems to be the theme for these climate change lovers #Gore #mattdamon,161766 +RT @CloudN9neSyrup: if global warming isn't real then explain this https://t.co/VSrczpUQKs,629937 +RT @AnonyOps: CDC’s canceled climate change conference is back on — thanks to Al Gore https://t.co/KadaCwSWEr #resist,448114 +RT @MikeBloomberg: #ClimateofHope is out today – read the preface to see why we're optimistic about the fight against climate change:…,337455 +"You want climate change? +I will melt the earth. +You want love? +I will melt your heart.",928110 +RT @Reverend_Scott: how can climate change be real when we still have ice cubes?,348665 +RT @vegan_mum: 'Trump’s position on [climate change] is disgraceful…totally ignorant…we’ve got to make him change'—Bernie Sanders https://t…,925085 +"@KimHenke1 @EPAScottPruitt Al Gore made millions of dollars on Ozone fear, now it's global warming; Al Gore want more money, carbon Credit!",350345 +RT @NRC_Norway: We hope to see concrete actions to reduce loss and damage associated with climate change from the #COP22…,255901 +RT @brevamo: The world turns off the lights for Earth Hour to raise awareness of climate change #EarthHour https://t.co/iUaCsQlsAw #earthho…,798119 +"RT @Bentler: https://t.co/5TvARPUmgh +Meet 9 badass women fighting climate change in cities +#climate #women #women4climate https://t.co/1Y2A…",649555 +Has anybody seen Before the Flood? It's really good. Leonardo DiCaprio Documentary about global warming/climate change. 👌ðŸ¾ðŸ‘ŒðŸ¾,678457 +"RT @ClimateChangRR: Schwarzenegger and Macron team up to fight climate change, troll Trump in video https://t.co/mKwQXIHFwS",127945 +"RT @GreenPartyUS: There's only one political party calling climate change what it really is. + +An emergency. 🚨 + +#VoteGreen2016✅ https://t.…",306053 +"@jaimessincioco Sad to say, Caribous are starved to death in the environment that are being effected by global warming of recent years.",429997 +RT @9GAGTweets: Solution to global warming https://t.co/zhELRBsDYC,84686 +"RT @12voltman60: @fernando_carm @newburnb @VICE +That's nice. Before the libs branded it climate change it was better known as weather.",178031 +@POTUS Why is your administration curbing efforts to prevent climate change regulations? I'm dumbfounded at your decisions Mr. President.,433817 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",727081 +#TAKE2forVic – I've pledged! - All Victorians can TAKE2 to act on climate change. https://t.co/zfnB0JY2yS So Children Can Breathe. Please,92555 +RT @karstnhh: https://t.co/xnx3XpxLxv Squid are being drawn into UK waters in large numbers by climate change--similar phenomenon reported…,736073 +RT @350: The only hope to save the world's coral reefs is to take immediate action to stop climate change:…,684291 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,208436 +Why do people trust the government to manage climate change when they couldn't even manage the national debt?,631966 +SpaceX will launch a satellite for NASA to monitor climate change in 2021 https://t.co/oajivdbsNt https://t.co/3wK4sBXUdL,632170 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,552169 +RT @anhz00: 'if global warming isnt real then why did club penguin shut down' https://t.co/jsDSPBYrQF,700411 +RT @climatelinks: Limited access to clean water as a result of climate change is among the greatest threats to human health in #Jordan http…,398682 +#Science #Cool New research suggests a carbon tax is the most economic way to tackle climate change. https://t.co/AxdMCzUE1R #Tech #Retweet,864408 +RT @afreedma: EPA chief says more 'debate' is needed before concluding CO2 is main driver of global warming. Uh....…,791122 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",311939 +Coalition of 17 states challenges Trump over climate change policy | The Guardian https://t.co/jP1bE9o2hi,212992 +RT @pewinternet: Many Americans expect negative effects and life changes due to climate change https://t.co/wWU4tRqkZa https://t.co/0riYM8D…,439770 +RT @iyadabumoghli: The map that shows who climate change really hurts https://t.co/zUZfeHk3AN,888670 +RT @IfHillaryHad: DAY 73: Signed new climate change legislation. Told McConnell to fuck all the way off. Sent Bill out to tend to the White…,246648 +RT @PaulEDawson: The science of climate change is leaping out at us like a scene from a 3D movie. #climatechange #KeepItInTheGround…,52909 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",185340 +"RT @ddale8: Former Trump advisor Stephen Moore says on CNN that the election was a referendum on the global climate change agenda, which is…",954861 +RT @ISETInt: Mapped: How climate change affects extreme weather around the world | Carbon Brief https://t.co/uKsOSldnKF https://t.co/DZrOuo…,312141 +"RT @NRDC: Sorry President-elect, climate change is not a Chinese hoax. #ActOnClimate https://t.co/WGpX51ooBB",779676 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,501230 +Sea levels 'could rise higher than a three-storey building due to climate change' https://t.co/ECDkFEtUFr,655913 +RT @thebradfordfile: EASY TOM: There's only one Al Gore! He's got cashing in on 'climate change' down to a 'science.' �� https://t.co/fXC24E…,869690 +"RT @Trvmpepe: If global warming was real it woulda sank my shitty state by now. Yet, CA is still here + +#thefive",692291 +RT @ajplus: Arnold Schwarzenegger has lots to say about climate change and President Trump. https://t.co/f8CENxjfXR,7733 +RT @papiwilber: what the fuck is wrong with people and not believing in global warming,323305 +"RT @wurlyburgh: Theresa May now keeping company with Trump's notorious climate change denier Myron Ebbell + +https://t.co/Q8PabM7Bsv",522534 +Someone tell @realDonaldTrump to get busy. Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/RJCiqWWOPx,255257 +RT @idiskey: So most farmers are facing failed crop this season. Irrigation in light of climate change should be a national agenda.,342294 +Probably the scariest thing you'll watch this Halloween. Leonardo Di Caprio's climate change documentary https://t.co/yOYFB5Oi2P,336712 +If only climate change voted. https://t.co/orQRpawt7m,847143 +New post: Computer models show how ancient people responded to climate change The findings could help us de https://t.co/Ik7ZX6JPPY,958883 +"RT @SimonBanksHB: 3 years into LNP's energy & climate change policy, what have we got? +* higher prices +* more blackouts +* less investment +*…",32011 +@cristinalaila1 @AlwaysRedPillin global warming being caused by humans is a hoax. Lol the rainforest make up 90% of greenhouse gasses.,645444 +RT @Imusually: @PolitiBunny @smartgirls4gop @PersianCeltic too fn funny. Ahole macron blames terrorism on climate change. ice cra…,591370 +RT @KevinHurstLIVE: Y'all want climate change but yet most of you chomp down on the number one thing causing pollution...meat!,921487 +"RT @GovInslee: The West Coast will continue to lead on stopping climate change, and more clean power is a big part of our efforts. https://…",213184 +"#WorldNews Half the melting Arctic sea ice may be due to natural weather cycles not global warming,…… https://t.co/1Y0qSeUOfR",191035 +RT @wef: Why China and California are trying to work on #climate change without Trump https://t.co/TR0b9sg1ck https://t.co/7NIMEcsgRE,486019 +RT @chicagotribune: EPA Administrator Scott Pruitt denies climate change science and angry Americans are flooding him with phone calls…,967576 +"Architects in Florida aren't debating climate change. They're debating how to build for it. + +We don't have time... https://t.co/bG8LUmYQwB",485397 +RT @latimes: Another consequence of climate change: A good night's sleep https://t.co/JX3JPjfgr0 https://t.co/Kicscs4La4,274091 +One thing that is scary is Trump doesn't believe in climate change.....is not a belief it's a fact,971373 +RT @earthhour: Your photos hold the power to tell inspiring stories behind our fight against climate change. Join our Photo Quest:…,80530 +"Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges… https://t.co/sN0TaTXrn2",441388 +A century of climate change in 35 seconds https://t.co/bSSowB62Sd,219687 +I’m joining millions of people to show my support for action on climate change. Join me and sign up #EarthHourUK https://t.co/q4qzhSIbUJ,589095 +RT @roche_casey: @1401bonniek @SteveRattner @nytopinion disbelief in global warming and overall personality.,717337 +Mashable: Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/SGca3gKY1V,309919 +RT @allyjworthy: some still wanna say global warming is a hoax 🤔🤔🤔 https://t.co/NAfeDE4f4I,624761 +"RT @hale_razor: One hurricane proves climate change is a threat that will kill us all, but a 12-year gap since the last major one h…",538959 +"RT @wilw: Trump's gonna accelerate Earth's destruction by climate change, but a few jobs in a dying industry will temporarily come back, so…",933506 +RT @Voice_OT_Orcas: Overfishing could be the next problem for climate change - commercial fishers in jeopardy https://t.co/w3uVwVT3uo http…,255735 +RT @IOM_ROSanJose: 2016: IOM meets the people of the Carteret Islands clinging to their homeland affected by climate change.…,960885 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,547227 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,955114 +RT @PrisonPlanet: Trump to pull U.S. out of anti-western Paris climate deal. Good. Man-made global warming isn't a thing.,490235 +#Teens sue United States over #climate change; ask for Secretary of State’s #Exxon… https://t.co/QqIZNBQdWr https://t.co/E2jrLIwj08,30625 +nytimes: A majority of people agree that climate change is harming Americans. But they don't believe it will harm them.… …,344466 +"RT @dougsimply: Two great legends coming together, to inspire the masses about climate change. Terrific. +@zachbraff @BillNye…",352351 +but..... how................. the fuck do you deny global warming? HOW ARE THE BEES DYING MOTHER https://t.co/ftxa7hdmVA,91361 +RT @SierraClub: Trump’s EPA pick recently called climate change a ‘religious belief’ https://t.co/bYMG7NCdFw (@ngeiling) #pollutingPruitt,644448 +45 is undoing everything President Obama to protect our environment. He thinks climate change is a hoax It's not. H… https://t.co/QqW6A7DeZh,321910 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,294122 +Storms linked to climate change caused more than £3.5m worth of damage to UK cricket clubs… https://t.co/9LUrHklaXq… https://t.co/CIVkBoBd0Z,502744 +@ezraklein @MichaelEMann Scientists don't 'believe in' global warming. Can we say they recognize it? Acknowledge it? Discovered it?,450547 +@SamSeder i guess we should just give up on climate change now since we're not even gonna try. its over. the world is done.,952430 +"RT @TheEconomist: Some environmentalists now see businesses as allies, rather than adversaries, in the fight against global warming https…",917415 +RT @WWF_Australia: Scientists discover coral species that may be resistant to climate change-induced bleaching: https://t.co/oXXJtNSoak Via…,546639 +"RT @annetrumble: Civil rights, climate change, and health care scrubbed clean from White House website. Not a trace. https://t.co/Nc9zNIyN3d",498408 +RT @RealMuckmaker: EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/oRBKk3Pagk,19737 +@kylegriffin1 @thepoliticalcat EPA top priority is scrubbing 'climate change' from its website and documents. Super… https://t.co/vcsaNs7t2p,89008 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,401448 +According to Taylor apparently global warming is entirely my fault,117558 +"RT @bradplumer: Even before Trump, we were falling far short of stopping climate change (or anything close to 2°C). So any deceleration is…",713838 +RT @ClimateChangRR: Experts list out challenges in agri sector due to climate change https://t.co/OoKC7N2heP https://t.co/XvPfRsw8i2,52888 +RT @violentkittie: @nicmyhipsdntlie @neiltyson Other countries ackn climate change & are greener than US. But US is one of top CO2 polluter…,692934 +"With climate change, Trump may send the USA on a one way ride to true and permanent decline.",211232 +"@mgurri + #navydronechina +#SouthChinaSea + +#China cures global warming + +https://t.co/LHcq2AKiTF + +@realDonaldTrump +#gotthecodes +#MAGA",738012 +RT @nytpolitics: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/xLSRpq99zr https…,430717 +"RT @iansomerhalder: VOTE VOTE VOTE!!!! +;) VOTING for a candidate that believes climate change is a hoax is the MOST dangerous person to…",429013 +"Niggas asked me what my inspiration was, I told em global warming, you feel me? #Cozy",622733 +"Re-imagining energy supplies', but not a word about global warming - utter lack of vision https://t.co/PqVQscZib5 via @BBC_Future",175296 +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/FliJkNboaB 😞,208540 +"RT @DrCraigEmerson: Until youse people at the ABC point out the positive side of racism, bigotry, sexual assault & climate change denia…",341637 +RT @thehill: Scientists to Trump: You must act on climate change https://t.co/ZGtSAkC9IM https://t.co/9eFdqg7fAi,980407 +RT @bridgietherease: Seeing a lot of people confused re: #OrovilleDam & climate change. Drought in late summer + flooding rain in spring wi…,747972 +The world will fight climate change with or without the U.S. – Kofi Annan https://t.co/whnHXlViGt https://t.co/UmKNdJbdbP,10675 +"RT @VanarisIV: If global warming isn't real, why did club penguin shut down?",413483 +"Westpac's new climate change policy is bad news for Adani's Carmichael mine in Queensland #noadani +https://t.co/iPiLo10YYt via @abcnews",492601 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,440868 +"RT @SteveSGoddard: 3 different civilizations were wiped out by climate change in Greenland, over past 4,000 yrs +https://t.co/aluNa551Wk htt…",179308 +Idk what global warning is but global warming is real https://t.co/3DUQsUvdrh,850302 +@CNN there's a link between climate change and BS ��,994884 +"There will be no funding nor discussion of climate change in the Drumph administration. Meanwhile, #Trujillo, Peru… https://t.co/o8aYUjwlq6",280069 +"#dumpTrump ... by denying climate change, Donald and his team of Delusionals have declared themselves the enemies... https://t.co/fPPiCnOJB4",225213 +RT @TR_Foundation: Is climate change driving #childmarriage in Bangladesh? How can we fight back? https://t.co/PvMWW94OnG #climate…,383465 +"#Manifest US investors, companies back Paris climate change agreement. Read Blog: https://t.co/3d6jNVT1gu",495245 +"RT @TIME: The U.S. is already feeling effects of climate change, report says https://t.co/RYNdA1xfYs",457142 +The case for optimism on climate change https://t.co/keP9ltqDXf,918082 +RT @ICRW: Great read: #Indian farmers fight against climate change using 'secret' weapon: Trees https://t.co/nLuRIhOQ2p,850665 +"RT @timkaine: If Scott Pruitt rejects science on climate change, I suspect he will ignore other science as well. I will oppose hi… ",119798 +@Garrett_Love Damn global warming causing snow!!,197624 +RT @lologarcia1047: @willpbassett you think global climate change is pretty?,419286 +RT @nature: Endangered African penguins are at risk from overfishing and climate change #ResearchHighlights https://t.co/d07jZUBcVM,66539 +RT @nijhuism: The nat'l parks and climate change photos by @keithladzinski for @NatGeoMag are haunting + freaking gorgeous…,937594 +Geez: the question about hacking was okay but apparently @TeviTroy needs 'more evidence' about how serious climate change is as a disaster.,458056 +"RT @AntisocialJW2: Postmodernist gender studies journal publishes hoax 'The Conceptual Penis' blaming penises for climate change +https://t.…",391586 +"Today, one assures client that global warming is just a hoax used as a ponzi scheme to line Al Gore's pockets! MORE PROOF EVERYTHING IS FINE",537905 +RT @GadSaad: Oh yes. @billnye & @sensanders having a chat. Let me summarize: All ills are caused by climate change. Everything s…,940773 +RT @spaculor: President Trump 'dangerously wrong' on climate change: @JeffDSachs https://t.co/HV16CHKHPe,63636 +White House calls climate change funding 'a waste of your money' – video https://t.co/COb0bThso8 https://t.co/MPEhzYRqVs,350290 +"Fuck if climate change 'is real'; glaciers are melting, water level is rising. If this is occurring naturally, we're still all going to die.",399262 +RT @Dory: Literally every state knows this struggle it's called global warming https://t.co/07hzXOZI4R,879570 +next you're gonna blame oil companies for global warming!' 'yes because they are to blame' @caroisradical https://t.co/qN3UUEZpKA,242644 +Obama administration gives $500m to UN climate change fund https://t.co/LLX77PQg3p,360419 +"@icarustrash and he appointed someone who does not believe in climate change, planned parenthood AND funds conversion therapy for LTBG+",702569 +"RT @SteveSGoddard: - @NASA has tripled global warming since the year 2000, during a time when satellites show no temperature increase.…",195816 +"RT @Realityshaken: Trump doesn't understand, or care about, climate change, Paris Agreement, or the future. #parisclimateagreement +https:…",757711 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",927763 +RT @NRDC: Scientists say that human-caused climate change rerouted a river. https://t.co/WdOSrwiGzF via @grist,709644 +"I know the @WhiteHouse deleted pages pages on civil rights, LGBT rights & climate change today, but who deleted the… https://t.co/mF5DRzgnHN",713965 +"Help scientists understand how cicadas are responding to climate change. +https://t.co/Fa9oOs3QJY",645834 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,917740 +"RT @NannanBay: Still in chaos. + +Wife of Liberal Party powerbroker quits over lack of action on climate change https://t.co/d8GNkVWKmp via…",102859 +"Professor examines effects of climate change on coral reefs, shellfish https://t.co/K67r7v7mWB",302987 +@exxonmobil how about climate change study suppressions / misinformation what about that?,533731 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,989796 +"RT @evanhalper: Trump seems ready to fight the world on climate change, and it could cost the U.S. https://t.co/FNH9fYR3FA",998974 +"Business as usual then? +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/8QGUcg8aZ0",238041 +UN: Paris deal won't be 'enough' to avoid worst effects of climate change https://t.co/r1aQSSGZQU via @HuffPostGreen,849413 +#College Academics urge Trump to endorse Obama climate change policies https://t.co/36XuQivadC,277751 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",42975 +RT @LFFriedman: Trump reportedly taps Rep. Pompeo for CIA. For a sense of whether he will consider climate change a national securi…,243718 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,993297 +"RT @SkipperClay: Hey Florida, if you go trump, and trump ignores global warming, and the ocean EATS YOU, YOU HAVE NO ONE TO BLAME BUT YOURS…",162328 +"RT @hboulware: To be clear, if you lecture me about the dangers of climate change and then deny a human fetus is human I’m going to mock yo…",341635 +RT @andrea_illy: Coffee must adapt to climate change and requires industry wide coordination. https://t.co/RvbFcU3cR8,650311 +RT @CarnegieEndow: Join us in DC on June 21 for a discussion on combatting climate change through innovation: https://t.co/laeHNDc3IZ…,244956 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,203918 +RT @BroHumors: if global warming doesn't exist then why is club penguin shutting down,474921 +@missdanascully we're all gonna die bc of global warming i need to drop school and travel,111066 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,706768 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",701078 +RT @PlanB_earth: @GeorgeMonbiot See it and believe it George - Trump demands action on climate change for humanity and the planet: https://…,469942 +RT @SenGillibrand: The @EPA must be our first line of defense in protecting air and water and combating global climate change.,396077 +".@NeilGrayMP Congrats on being elected. Please don't let the DUP call the shots on sectarianism,abortion, gay rights climate change #DUPdeal",930734 +RT @mailandguardian: Fynbos and climate change: A relationship where South Africa's famous ecosystem is losing out.…,769160 +@carriecoon And there is just a general bias problem because these scientists NEED global warming to exist in order to get their funding.,324 +RT @ClimateRealists: Christopher Booker: It’s the facts the BBC leaves out about climate change that are important…,685392 +@Artistlike @BenSaunders @DrJudyStone Much like climate change! People don't think it's real until their standing in the Tsunami! Stand Up!,195255 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/FQTRmp06h5,132265 +RT @JuliusGoat: I hope we're all getting used to the idea that climate change is real and real challenges are worth facing together.,232617 +I love how some petitions on https://t.co/Dme1CozA7L r like 'fight climate change' & others r like 'bring back my fav Panera sandwich!1!!1!',671491 +"Growth rings on 500-year-old clams reveal 'hugely worrying' evidence of #climate change +https://t.co/Lz8MqYnX6J… https://t.co/flNEs8WLYf",24200 +@samsheffer Oh you know a little thing called global warming.,670870 +"Imagine the 8th grader learning about climate change in science class, and asking the teacher how the government is fighting it.",187081 +RT @thinkprogress: Repeat after me: Carbon pollution is causing climate change https://t.co/9OsnNl6nGe https://t.co/pNxMXvRzB5,740680 +RT @VoxNihili86: @annepearl1 @CNN @AKimCampbell Pervasive willful ignorance. They think God would never allow climate change as a co…,183014 +"@the_geographer I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",1002 +Yep. The exponential phase of climate change starting to show. https://t.co/qTrKuNMVy3,437581 +I swear global warming is gonna make pale-skinned people go extinct!,13562 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,525771 +"RT @Colorlines: POC who live through climate change-induced disasters can suffer from alcohol & drug impairment, traumatic stress &…",484704 +How can we trust global warming scientists asks David Rose https://t.co/siJAOSrj1c via @MailOnline,435190 +"RT @GirlPosts: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https://t.co…",563240 +RT @nytimes: Most of Donald Trump's cabinet and top staff have doubted that climate change is caused by human activity https://t.co/8R1mim0…,980945 +@brandonkam_3 global warming 😂😂😂😂😂😂,71688 +RT @JustinTemplerSr: @luisbaram & neither will 'fix' climate change. Closest thing that has any potential ATM to replace fossil fuels is nu…,43993 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,674237 +"RT @sugarbbnick: Happy #EarthDay from Paris Hilton, advocate for global warming https://t.co/aoMYoWKrgE",609692 +Military experts warn of 'epic' humanitarian crisis sparked by climate change https://t.co/VRo802np6O,994995 +"RT @BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is at stake. https://t.c…",17950 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,660705 +RT @Env_Pillar: UCC Biochemistry professor William Reville calls for the media to reflect the 95% majority view on climate change…,488065 +"RT @NatGeo: In recent climate change news, an advisory panel studying the health risks of coal mining sites has been disbanded https://t.co…",718541 +"@GiannoCaldwell I mean you have to honest tho Gianno, his climate change denier pick for the EPA is literally a danger to every American",789782 +"there's literally no snow in anchorage, ak & some ppl believe climate change ain't real... https://t.co/oz8DqT6kLL",774504 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,942387 +No offence to climate change skeptics or whatever but it is way too hot. #LoveIsTheAnswer,913856 +RT @350: A new study shows over 1 million people have been forced to move by climate change and millions more will be soon:…,68822 +RT @pewresearch: Polarized views on climate issues stretch from the causes & cures for climate change to trust in climate scientists…,498872 +@nattbratt67 @ShaunKing and thinks climate change is a hoax,282396 +"RT @UN: There is optimism in the fight against climate change, but the best time to act is now. @WMO chief explains more in…",607114 +I'm waiting for Trump to appoint a climate change denier as head of EPA... oh wait @AGScottPruitt https://t.co/8CpyvPkfKu,293524 +@ajplus can this be contributed to by climate change and global warming? I think this has a direct correlation.,67727 +RT @ClimateReality: You don’t have to be a super activist to act on climate change. Here are four ways that anyone can make a differenc…,926215 +"RT @davrosz: Abbott/Turnbull policy on climate change and energy caused current mess, writes John Menadue https://t.co/ycqVl7YRt4 @Indepen…",237135 +RT @AbeRevere: What assholery to treat action on climate change like a cliffhanger on a 2-part episode of Apprentice. He's a moron…,13937 +..current #climate change is not abnormal and not outside the range of natural variations..' #yyz #onpoli #uk #yeg https://t.co/LdSuXnIbXx,105223 +EPA chief: Trump to undo Obama plan to curb global warming https://t.co/YMhk0bAjxf,989572 +"Stopping global warming is only way to save Great Barrier Reef, scientists warn https://t.co/0HbKWyshve",548324 +A new vision for architecture: How the Heal-Berg would be set to counter climate change https://t.co/uf1mpeWZp0 via @Pionic_org,565886 +RT @pippa_pemberton: Excellent panel on putting climate change heart of political agenda @WalesGreenParty agm @WWFCymru @centre_alt_tech ht…,319852 +RT @jb1148: Don't ever think climate change deniers are stupid.They know exactly what they're doing.Taking the money to ignore science. Pro…,958100 +RT @thinkprogress: Trump's EPA pick recently called climate change a 'religious belief' https://t.co/JOeH6LmJJ7 https://t.co/06YnhJAL2i,343719 +RT @Mariselenee: If you don't believe in global warming don't talk to me,731863 +RT @CelsaCKIC: @ClimateKICspain #CKCIS2016 rolls-royce highlights the importance of new competences addressing climate change,603466 +"RT @MelissaA_Ward: Hi, I'm Melissa! An #actuallivingscientist studying climate change in the ocean and potential solutions! Oh, and I… ",119608 +Weird how we got WWE announcer Howard 'The Fink' Finkel to write a report about climate change,692785 +RT @MarkLandler: Donald Trump at the NYT: Says he has ‘open mind’ on climate change accord https://t.co/hPSBiI6Vba,764412 +"RT @mmfa: From the Iraq war to climate change to sexual assault, the NY Times' new op-ed columnist is a serial misinformer:…",853757 +#DailyClimate Trump victory deals blow to global fight against climate change. https://t.co/xpHDbw8NxR,822612 +"RT @aliotta_joe: Dear climate change suckers! You are the butt of a worldwide joke. @realDonaldTrump + +MUST WATCH. + +https://t.co/kq4yCO0wRq",400706 +RT @EnvDefenseFund: Scientist goes at it alone on climate change to save his state. https://t.co/g48dsRH06c,506377 +"BP calls for tougher action in #climate change, e.g.carbon tax https://t.co/lt7GGCXOku",676465 +@StJohnsSE19 climate change comments from #candidates2017 https://t.co/B9z2XxgXoS,528708 +I'm loving all this sunshine and warm weather but like global warming? Lol,426419 +"RT @Greenmetrics: The curious disappearance of climate change, from Brexit to Berlin | Andrew Simms https://t.co/WnA4EQCcxC",540054 +RT @zapdawn: please hire camila cabello it will stop global warming @CalvinKlein https://t.co/vqZqhc855v,912100 +RT @guardianeco: Maine lawmaker seeks discrimination protection for climate change deniers https://t.co/Hg5jnbjEhw,274630 +Strong defense of the numerical climate models that are crucial for projecting future climate change & impacts https://t.co/KbbILrzBWZ,554174 +Donald Trump on some nut shit if he think global warming not real,905680 +RT @AJEnglish: 'Protecting the Earth's lungs is crucial if we are to defend the planet’s biodiversity and fight global warming.' https://t.…,418450 +RT @morganewill: Transformers 4 (which you probably didn't even see) cost almost 6 TIMES more to make than the actual EPA's climate change…,418141 +RT @ezralevant: The electric car 'charging stations' at the UN global warming conference are fake. They're not even connected to an…,307012 +Focuses on climate change and current events. https://t.co/qpMhiVFyYV,890324 +RT @Independent: Emergency campaign launched to convince Trump climate change is real. Failure risks 'planetary disaster' https://t.co/Vwyl…,682705 +Judge orders Exxon to hand over documents related to climate change https://t.co/O32wUaWH2t #WYKO_NEWS https://t.co/3UhSLwLvhZ,379783 +Republican who reversed his position on climate change thinks Trump will too https://t.co/tq7etbkEvq,843593 +"RT @_mistiu: The curious disappearance of climate change, from Brexit to Berlin + +https://t.co/uVBDQDMvxY",22034 +RT @Michell52640560: @dcar205 @Kimberlygmack His bank account told him to scam people with global warming!,616085 +RT @sciam: Trump's defense secretary cites climate change as national security challenge https://t.co/PGLooPiWx9 https://t.co/uzWaLPIR7s,672236 +"RT @House_Kennedy: Trump supporter: Give him a chance! + +Trump: chooses creationist and global warming denier as Secretary of Education + +No…",440264 +"RT @SydesJokes: The curious disappearance of climate change, from #Bre ... https://t.co/GjFM7jcjD0 #CleanTech #Environment #Green…",162520 +Another great animated chart of global warming up to the new record high: https://t.co/ySvkyLmccG,571452 +Rogue Twitter accounts spring up to fight Donald Trump on climate change https://t.co/s96NDOj1tp,178299 +I was like do you believe in global warming,187726 +Lots of fruitful discussions had today at the EC JRC on future directions for research into climate change risks to… https://t.co/XVBGn65JZ2,162956 +"RT @qz: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change https://t.co/vBOS2lxk6u",650239 +RT @morgfair: Scientists just published an entire study refuting Scott Pruitt on climate change https://t.co/EtNh3v8jPX,285695 +@mmfa Is there evidence that climate change regulations hurt higher economies? What about helping the third world? Is that intent or effect?,62508 +Opinion: McKenna has few allies in Washington for the climate change battle - Edmonton Journal https://t.co/SjT0OlmSSu,601101 +"RT @tattedpoc: Everytime Namjoon breathes, he slows down global warming. He re-aligns the Earth. Animals recover from extinction. Deforesta…",888833 +RT @tramarie: Donald Trump's pick for EPA Admin is a climate change denier. He's picking destroyers of our future not leaders.,452911 +"Now that Trump is gutting what little climate change regs we had, media is actng like they care. Theyve hardly coverd climate change AT ALL.",532091 +"RT @williamlegate: Is it just me, or are the climate change marches today way YUGER than Trump's inauguration? https://t.co/g63AsFsvCQ",647934 +@resisterhood read all the papers that prove global warming is real!,205997 +"RT @shannonrwatts: Experiencing the fallout from climate change in Boulder this morning. One canyon over, the #SunshineFire fed by zer…",376530 +RT @rharris334: Arnie @Schwarzenegger & Labor leader @billshortenmp to chew the fat today on renewable energy & climate change https://t.c…,491158 +"RT @umairh: US should be debating 21st century issues. Basic income, climate change, etc. Instead, rewinding to Dickens met Orwell via Leni…",670340 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,63710 +RT @statesman: REPORT: Lamar Smith visits Greenland with lawmakers to see climate change effects up close https://t.co/RrM7BHuozg https://t…,373166 +"RT EconomistRadio: Listen: Poverty, health, education or climate change: where should governments spend their mone… https://t.co/B4GHiOrXWi",123762 +RT @GRI_LSE: Mass migration could become the ‘new normal’ due to climate change warn senior military figures https://t.co/XKDqxxHP8t Via @d…,949504 +"How's is they a whole in the ozone, but the ozone is holding is all these emissions, heat & etc causing global warming?",282697 +RT @KEEMSTAR: 2017 the end of global warming. https://t.co/nzetMkYfL9,796241 +"RT @derektmead: Not only does climate change screw over the poor, it's making MORE people poor: https://t.co/MKdxy2KZgt",968995 +RT @iansomerhalder: Speaking of climate change-TONIGHT Is another killer episode of @YEARSofLIVING ! 10/9c on @NatGeoChannel https://t.co/T…,114369 +"Prepared for the worst': Bolivians face historic drought, and global warming could intensify it https://t.co/GmHN8E8k4s",505454 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,804838 +RT @PolarBears: Action on climate change is important to polar bears and people too! #VoteForClimate in every election:…,254338 +Trump administration dismisses climate change advisory panel - CNN https://t.co/Cw3CtvPj5G,357839 +Why Greenland matters: Rapid climate change on world’s largest island will affect us all https://t.co/WiJtBlLn6e via @scroll_in,356216 +"RT @GreenpeaceAu: The Adani mine, Big Oil companies in the Bight, & non-existent climate change policies. The future appears bleak… ",27874 +RT @GenAnthropocene: So they say you can't use the words 'climate change'... We have a solution! | https://t.co/hQbdbYesai…,985071 +"If a climate change report falls in the White House, does anyone hear it? https://t.co/FouEiukFNH",718353 +"@GigaLiving @KTHopkins and the old chesnut climate change theres no ice for the polar bears, theres ice 3 miles thick by several miles long",10863 +RT @CNN: Exxon has been ordered to turn over 40 years of climate change research https://t.co/pnQPtncGd2 https://t.co/3DYO35wf78,519963 +"RT @ericgarland: How am I so confident of that? + +I'm a strategic intel analyst. Ten years ago, I was running scenarios on global warming f…",398011 +RT @CiccioRatti: @beppe_grillo Quindi non volevate le trivelle ma esultate per uno il cui vice presidente afferma che il global warming è u…,858431 +RT @voxdotcom: Only 13% of Americans know that more than 90% of scientists believe in global warming. That’s not good. https://t.co/4ecMm9M…,781976 +@RogueNASA Mickey Mouse would be more qualified. Jim Bridenstine doesn't believe in science or climate change.,647740 +News: Bangladesh struggles to turn the tide on climate change as sea levels rise | Karen McVeigh https://t.co/27DvGvMOxR,509315 +RT @IndianExpress: Eiffel Tower lit green in honor of Paris climate change deal https://t.co/zsA5cNDiGV https://t.co/gGCVrw8xB4,180805 +Ermagerd it's 70 degrees. Ermagerd it's December. Ermagerd winter wtf ermagerd global warming,153440 +"In Kansas, politics make it hard to talk climate change. “People are all talking about it, without talking about i… https://t.co/28dCsafuNt",721700 +RT @openinvestco: American Meteorological Society advises Scott Pruit to not 'mischaracterize the science' of climate change - https://t.co…,665905 +Climate denialism in action: President’s budget takes strike at those hit hardest by climate change https://t.co/v2GZseYzF6 @OxfamAmerica,425155 +RT @MSchleifstein: Are human-caused carbon emissions contributing to climate change? https://t.co/h4XsXaK76I,592618 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,604000 +"@realDonaldTrump Check out this amazing TED Talk: + +We need nuclear power to solve climate change",706419 +RT @batoolaliiii: global warming is catastrophic and needs to be taken more seriously!! that being said i wouldnt mind a snow day tmrw👀,626332 +@NolteNC @WesleyLowery @nytimes subscribing to The WaPo and NYTimes also causes global warming through cut trees and vast amounts of hot air,675525 +RT @Circa: Trump's EPA pick says his personal views on climate change are 'immaterial' to the job https://t.co/1jB10Q6xKZ via…,35335 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,879999 +"It s/n b a crime 2 discuss global warming strategies bc u don't believe they exist! Obama & Libs want it 2 b, but i… https://t.co/Mo9q7l5JWw",695422 +"Finally, Paris climate change agreement designed by crooks- #Trump is not buying this crap https://t.co/XVro1oANs1",282559 +RT @styIesactor: Polar bears for global warming https://t.co/G2T62v5YXD,347486 +"RT @kentwelve6: If you don't believe in global warming at this point, kys",237897 +Bakit parang lalong tumatangkad yung mga sunod na generation. May kinalaman ba rito yung global warming.,83693 +"RT @CNN: Polar bears will struggle to survive if climate change continues, according to a new US government report… ",434463 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,936349 +RT @simon_reeve: Even Bangladeshis – hugely threatened by climate change – search google for ‘Kim Kardashian’ in English more than 'climate…,467990 +RT @DRUDGE_REPORT: UPDATE: 'NOAA cheated and got caught' on 'global warming'... https://t.co/S3CMlsDXgl,339981 +"RT @theSNP: First Minister to sign climate change agreement with California +https://t.co/mLuHbg0IkW",998342 +RT @EcoInternet3: RFK Jr. issues warning about #Trump's #climate change policies: CNN https://t.co/0w5ltsmIvG #environment,769234 +"RT @RachelleLefevre: Pollution is the Night King, climate change is the white walkers & if we don't stop waging war against each other to f…",812406 +if climate change is real then why is it cold in my room??!!?!?! #WOKE https://t.co/48NGxQbZH6,325242 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,274653 +Don't listen to these liberal scientists who believe in climate change. Look up and experience this wonder for yourself #MAGA,141806 +When is the last time climate change held a title belt? https://t.co/czkjeFL0by,239144 +RT @ABC: EPA head Pruitt expresses doubt as to whether carbon dioxide from human activity is main cause of climate change.…,537273 +RT @people: .@MRodOfficial talks about the ‘ecological disaster' of climate change and how it’s affecting baby seals…,147807 +Could geoengineering be the key to curing climate change? https://t.co/4tIIGV6OXi,207974 +"Bangladesh did not cause climate change, so the country does not need “aidâ€; instead it needs compensation for the… https://t.co/ecGXgRNROP",357314 +@yywhy @LiberalJaxx @realDonaldTrump Another climate change kook speaks.,789590 +RT @climatehawk1: North Pole above freezing in sign of 'sudden' and 'very serious' #climate change | @Independent…,752831 +"RT @Alex_Verbeek: How climate change is already dramatically disrupting all elements of nature + +https://t.co/6Ltvl0Ok5i #climate…",719483 +RT @reviddiver: @DVATW @heather_venter I remember when climate change was called weather.,717031 +Great conversation on climate change and the science behind it. Pretty eye opening. https://t.co/tSWnRdypYj,744804 +RT @jp91306: @ChangeTheLAUSD @realDonaldTrump We have whoever called it 'global warming' to thank for the confusion. It is increasing weath…,912022 +"@RCheeBunker I can see you're smarter than the average bear ;-). w/ climate change, the winters here are 6 mos. lon… https://t.co/kVJVeQxU66",541124 +And people thought we would die by climate change or nuclear war... PSYCH! It's #Trumpcare!,999263 +"@mattmfm So should I defend the intelligent woman they called a prostitute, +Or the climate change deniers at @DailyMail ? +Tough one",986822 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,397991 +RT @vikramchandra: This @nytimes article is the perfect answer to Donald Trump's rant against India on climate change. India is doing…,819649 +"@enjohnston @nytimes today, sustainable development is a top major at Columbia... cool kids know climate change is real",917021 +#videos of big bootty sexy girls having sex global warming sex https://t.co/rdmnKE2N2G,742017 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",68689 +You elected someone who doesn't even believe in climate change you know how stupid you have to be to not believe in climate change,233448 +RT @Grantham_IC: Can we still limit global warming to 2 degrees C? @Grantham_IC's Prof Sir Brian hoskins and Prof Jo Haigh comment: https:/…,391815 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,625916 +"RT @rcooley123: What Can Donald Trump Do to Screw Up the Planet? | Bring back big coal and keep denying climate change. +https://t.co/WprqF…",602874 +"New trending GIF tagged 2016, world, global warming, run away, josh freydkis, on fire, globey, current news, set m…… https://t.co/4rqP0RoLVh",384242 +"RT @nytpolitics: Within moments of Trump's inauguration, the White House website deleted nearly all mentions of climate change https://t.co…",248317 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,597775 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,505736 +"Save the bears.... & humans. +Without action on climate change, say goodbye to polar bears https://t.co/fmR8Xjrke6 https://t.co/BfibdZDKL3",830762 +RT @Uber_Pix: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/RcvwDVlYO2,268977 +"RT @FoxNews: Federal scientist cooked climate change books ahead of Obama presentation, whistle blower charges https://t.co/gZcWlk2XFs",169209 +The island is being eaten': how climate change is threatening the Torres Strait https://t.co/ph8tzb6Phg,674056 +RT @HattMall_69: I don't see how someone could honestly not accept that global warming is an immediate problem https://t.co/XD614FJtU3,303834 +"RT @SarcasticRover: Going to try a calm, reasonable rant about carbon and climate change for a minute… look away now!",893012 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,950264 +@SkyNews Not global warming cannot be so. Trymp says it a con.be advised https://t.co/yIhtSG1jK1 that is where fox… https://t.co/9CAzoprRI6,155098 +"@sierraclub No poltician can solve the inferior tech issue of climate change using a different, yet clean inferior… https://t.co/J8HpSJrCJt",643801 +"RT @Independent: Mar-a-Lago could be submerged by rising sea levels, thanks to climate change https://t.co/ckC91JnJJi https://t.co/73wdK16a…",37382 +RT @darkwave_duke: Snow men for global warming https://t.co/ZtSMgXtf47,239109 +How a rapper is tackling climate change - Deutsche Welle https://t.co/f1AG2sY6nj https://t.co/bM4ZydbASv #Bluehand #NewBluehand #Bluehand…,811745 +RT @Jackthelad1947: Government facing legal action over failure to fight climate change | The Independent criminal negligence #auspol https…,307324 +@nytimesworld @maggieNYT And according to 'Predisent' Trump they invented global warming.,651589 +$V #TreeH:Here's one effective solution to climate change: Put a price on carbon. https://t.co/S2T7O5IPBT https://t.co/HLJfx8XYkO,728961 +"@darshandtaxes Is climate change real? Debatable. If it is, can my super cum fix it? Definitely.",995965 +Stopping climate change is now the only way to save the Great Barrier Reef https://t.co/unH21MrCv8 via @mashable,32617 +I hate this global warming talk. It's all so doom and gloom' -Farmer I met in Manitoba- https://t.co/MrxzH4SBrQ,345264 +RT @DeanLeh: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/sJgFxxC16C,670510 +RT @greenpeaceusa: Did you miss the premier of @LeoDiCaprio's climate change documentary #BeforeTheFlood yesterday? Catch up here >> https:…,187322 +RT @SSludgeworth: Yeah...about that 97% human cause global warming Consensus...not so much https://t.co/Ror6XQiTni,643839 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,656403 +😑😑 Of course this idiotic cheeto puff thinks global warming is a hoax. #trumpisanidiot https://t.co/zZMtLtpvQP,407063 +"RT @davidmweissman: My response to climate change, Summer, Spring, fall and winter, any questions? https://t.co/hUT09x7Ohr",456801 +EPA chief Scott Pruitt doubts carbon dioxide the key culprit in global warming https://t.co/zhAiTgtxaC #breakingnews https://t.co/2BkKCWZMMm,279241 +RT @BelugaSolar: The complex world of climate change governance: new actors; new arrangements https://t.co/kflzE5JNKz,173656 +"RT @Sustainable_A: #ClimateChange #GIF #New #earth, weather, planet, vote, climate change, environment, climat… https://t.co/QmxXD5zbC0 htt…",140144 +COP22/OceansDay/Mauritius: Africa needs to develop ocean economies and factor in climate change impacts #envcomm #cop22_ieca @theieca,695410 +RT @ClimateCentral: Here's how climate change will affect sea level rise (and flood cities) as the world warms https://t.co/btLitj44uU…,342379 +"RT @EricHolthaus: Do you live in Kansas—and worried about climate change? What's your hope for the next 30yrs? What changes, what remains?…",904821 +RT @ETGilmour: Why would a government supposedly committed to fighting climate change cut the transit pass tax credit #budget2017,102149 +@tomfletcherbc I am getting tired of shoveling snow. When is that global warming choose to kick in?,315058 +"RT @ChiOnwurah: Popped into new #gimmeshelter exhib @tynesidecinema exploring linking migration, war & climate change. Highly recom…",443380 +"Not, say, climate change. How the Japanese PM’s convoy merges onto highway.",328359 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,822742 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,363827 +"RT @WWFCanada: This #EarthHour, let's shine a light on climate change. https://t.co/PfMFZoEbwX #ChangeClimateChange https://t.co/sMQ0DE3ht7",369444 +RT @COPicard2017: Hey @EPAScottPruitt we are affecting climate change. 202- 564-4700 is the number we will keep calling to let you kn…,15004 +World leaders duped by manipulated global warming data https://t.co/LYvwIY1AJN,425757 +RT @ReutersUS: Teens suing U.S. over climate change ask for Exxon's 'Wayne Tracker' emails https://t.co/RydtxYesfU https://t.co/CM2dfyj3vx,795670 +RT @TheWiseBook: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/ngoqtGVVA1,994106 +RT @nobarriers2016: .@HillaryClinton is the only candidate with a plan to combat climate change. https://t.co/eVXkpYxiut #ImWithHer,521233 +@molly_knight @seanhannity Liberals ride around in jets while whining about global warming! Just like you a lying l… https://t.co/uw24GMR2Na,629606 +Prediction: Republicans will soon shift from denying human-caused climate change to endorsing its continuation. https://t.co/4UInk4024C,428345 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,376182 +RT @AMZ0NE A SciFi author explains why we won't solve global warming. ▶https://t.co/YsvIEkLWWA https://t.co/UtilSIpZdM #amreading,557421 +RT @SRehmanOffice: For how long is the govt going to ignore the threat of climate change? #ClimateChangeIsReal https://t.co/884wFJh5sc,351678 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,566520 +"If you still don't believe in global warming come to Michigan for a week, it's supposed to be spring rn but IT'S ALSO GONNA SNOW FUCK",951080 +Global climate change action 'unstoppable' despite Trump https://t.co/Snz9N0ooDf https://t.co/Ql2vBJPZv4,431383 +RT @iangwalters: Allen leading the discussion on climate change resilience and response #FSB2017 @Ethical_Partner @SLCPropertyUK https://t.…,164681 +RT @Liz_Wheeler: Why can't climate change scientists answer THIS question? #MarchForScience https://t.co/obzLHSZFQk,711690 +RT @jonkudelka: Oh FFS nobody cares what the IPA thinks about climate change you are a right wing think tank not a science faculty. #qanda,487536 +"RT @riyasharma266: climate change is another way to screw money from the poor suckers the whole thing is a hoax +#climatemarch",12892 +@DRUDGE_REPORT @KurtSchlichter What do CNN and global warming have in common?,93856 +There's a link between climate change and immigration. https://t.co/J0dAntyxp2,616594 +RT @NYMag: EPA removes almost all references to climate change from its website https://t.co/V2WIwvRbWZ,55340 +"RT @emmkaff: Scientists: Don't freak out about Ebola. +Everyone: *Panic!* + +Scientists: Freak out about climate change. +Everyone: LOL! Pass m…",977890 +"RT @Greenpeace: Tropical plants & animals are most affected by climate change, and almost half have experienced local extinctions… ",767055 +RT @esterlingk: @oren_cass changed the way I view climate change with his latest piece in @NationalAffairs https://t.co/gHjkm2UO01,449932 +"When water is lapping at the doorstep of Floridians, the Republicans will suddenly become environmentalists and proponents of climate change",916728 +RT @TheEconomist: Can Europe carry the Paris agreement on climate change forward now that America has left? https://t.co/kY9AUqgVFr https:/…,116029 +RT @GNNGoodNews: #GoodNews #Environment Bill Gates launches $1 billion clean energy fund to fight climate change…,385866 +climate change isn't real' 'bitch tell that to the weather',560183 +"RT @leepace: At #COP22 to take a stand against climate change. +Stand with me. Take @ConservationOrg’s pledge. +https://t.co/Irgg87dNWj +#Eart…",264529 +"RT @JonRiley7: Pence says climate change is part of a 'liberal' agenda. No Mike, everyone IN THE WORLD but y'all think we must act. +https:/…",410097 +"RT @wwf_uk: BREAKING: Polar bear on a Scottish island, showing the real effects of climate change https://t.co/H7GrMd0uhv…",759381 +RT @planetmoney: Why rats love global warming. https://t.co/oqex8zkmMD,846166 +@FoxNews Well climate change has been proven with factual science that its real & is not 'horribly wrong'. Take he… https://t.co/Pss0cUcUAA,975978 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,73908 +Walmart: This was our 'ah ha' moment on climate change https://t.co/2pMyj29Em3 #EnergyNews,564366 +RT @davecclarke: The Trump administration just disbanded a federal advisory committee on climate change https://t.co/SSggVio65i,218212 +"We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. Trump, you are dead wrong.",774290 +"RT @nottsgreenparty: We'd love to hear from more local organizations involved with human rights, climate change, social justice and democra…",468930 +RT @SwiftOnSecurity: What if global warming is a conspiracy by the solar panel industry to make the sun come out more 🤔,692526 +RT @AIANational: We understand that buildings contribute to climate change and architects play a vital role in combating it:…,425303 +RT @davidsirota: It’s almost as if both parties & DC media will do anything to distract attention from stuff like climate change and the ec…,907670 +Congrats to those who voted for Trump&got the results they wanted-Scared what his presidency will mean for the fight against climate change,345212 +"AIA urges architects, federal government to tackle climate change - Curbed https://t.co/Hp4EGvd763",686682 +"RT @Radio702: It's official! Inequality, climate change and social polarisation are bad for you! For the latest from #WEF2017 -… ",130895 +RT @jamestaranto: Trump turns out to be much more knowledgeable about 'climate change' than anyone was giving him credit for. https://t.co/…,78847 +"RT @ReillyRick: If you care about climate change, religious freedom, gun sanity, women's rights + racial harmony, this is a terrifying nigh…",813529 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,512340 +"RT @CollinRugg: Dems fight 'climate change' + +Repubs fight Radical Islam + +Climate doesn't run over innocent people in the streets of London…",643621 +RT @CherMarieSmith: Biggest #climatechange threat to #health = #FoodInsecurity. Project will study food systems & climate change: https://t…,492385 +The Guardian view on climate change: bad for the Arctic | Editorial https://t.co/38gfJ17Q9F https://t.co/hCLiddFKyi,105981 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/tZ0uJH8oKZ,106267 +"We did it, America. We beat global warming. https://t.co/BbZqC4J6zF",395551 +RT @AP_Interactive: Immerse yourself in a #GlobalWarming #360video experience on how the green house effect impacts global warming.…,133092 +RT @CatherineForNV: I believe in science. I believe in climate change. Let's protect our precious resources including the air we breathe &…,62304 +Bill Nye is roasting Trump so hard that he finally might believe in climate change #billbillbillbill,773877 +"What does a community orgainizer from ganstra Chicago, know about climate change ? Surely he'll donate fees to Gore. https://t.co/waxSHN75VM",261474 +Radical realism about climate change https://t.co/SbqnmIs7no,2066 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,880642 +"RT @GlblCtzn: Obama rejected the pipeline, saying it would diminish the global leadership of the US in fighting climate change. https://t.c…",168822 +@Taxpayers1234 @NortonLoverPNW @SteveSGoddard Say goodbye to the raptors of Maui. They must be sacrificed to the god of climate change...,291414 +RT @nybooks: An Exxon scientist warned that “hard decisions” would soon need to be made about global warming. That was in 1978. https://t.c…,518500 +RT @CNNPolitics: Donald Trump meets with Al Gore on climate change https://t.co/8RuTHy2stv https://t.co/lSLFK2ozrS,474278 +"RT @KTLA: Ralph Cicerone, former @UCIrvine chancellor who studied climate change, dies at 73 https://t.co/M9naFI4aqm https://t.co/bl1nOMdpJd",250041 +RT @livingarchitect: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/6afuPcUouS,369792 +"RT @chrstphr_woody: First that sinister request for info on Energy Dept staffers who worked on climate change, now this. https://t.co/c8dar…",549105 +RT @IrvineWelsh: Putting a climate change denier in charge of environmental policy is like putting somebody who believes the Earth is flat…,735919 +"RT @H2AD: Renewable energy with or without climate change #renewableenergy #wednesdaywisdom +https://t.co/SwTklbNGRv",415660 +New study points to ‘global cooling’ on Antarctic Peninsula contrasting fears from climate change hysteria https://t.co/1wf4vd3mBZ,390548 +@michaelmocciaro @kurteichenwald Its about climate change.,586365 +"@cnni Trump did not say climate change is a Hoax, it was a trade agreement where china is exempt from climate rules that he was pointing out",801663 +"China’s ‘airpocalypse’ a product of climate change, not just pollution, researchers say https://t.co/ktxUyb2zSs",21444 +RT @ClimateCentral: Here's how climate change could flood cities (and states) as the world warms https://t.co/YDgShYKusq #BeforeTheFlood ht…,429715 +So apparently what global warming means for me is spending a lot of time being furious that it's warm & sunny #iwantFALL,485778 +RT @WernerTwertzog: The very rich will be able to hide from the most dire consequences of human-made climate change for generations.,353052 +RT @SenWhitehouse: WATCH & RT: Dark money -- funds that can't be traced -- is the reason Congress is failing to act on climate change. http…,39102 +Looking forward to #ssnconf16 tomorrow? Us too! Get in the climate change mood with our new newsletter MORE >> https://t.co/k1W3mpTM0G,874377 +RT @Independent: Emergency campaign launched to convince Trump climate change is real. Failure risks 'planetary disaster' https://t.co/Vwyl…,582519 +Kids are taking the feds -- and possibly Trump -- to court over climate change https://t.co/NR5VgjZ66h by #CNN via @c0nvey,714029 +RT @hannaseidel: it's 80 degrees in the middle of february but 😊 global warming 😊was a hoax 😊created by 😊the chinese 😊 right 😊,562887 +"global warming is real, and caused by humans",161206 +RT @weshootpeople: Leonardo DiCaprio is on a mission to fight against climate change. 'Before The Flood' [whole film] https://t.co/R1vioIia…,242518 +@_mackenziemaee @FieldNigra @Southergirl76 polar bears for global warming,333341 +RT @Reuters: Secretary of State Kerry urges countries to treat climate change as urgent threat despite uncertainty he says creat…,526794 +"RT @amywestervelt: List of things removed from WH site as of 11:59 last night: climate change, civil rights, LGBT rights, various mentions…",862925 +RT @SydPeaceFound: . @jessaroo If we want peace with justice we can't ignore climate change #sydneypeaceprize,964831 +RT @UberFacts: A study found having a teacher who believes climate change is real is a strong positive predictor of students' belief in glo…,141282 +RT @sciam: The U.S. electric industry knew as far back as 1968 that burning fossil fuels might cause global warming https://t.co/TkGxR5Dn2q,642970 +Humans are set to witness ‘dangerous’ consequences of global warming in this lifetime https://t.co/BzLkrXtJin,437390 +Sounds like climate change! Archaeologists Investigate Eroding South Carolina Shell Mound - Archaeology Magazine https://t.co/fd8bEJGYbe,251594 +RT @LWV: The EPA deleted any mention of climate change from its website. This is unacceptable. #DefendClimate https://t.co/aR3qGxQ0Cp,3947 +RT @DavidWohl: It could rain for a year straight and they'd say the same thing. It's all tied to the politics of global warming…,782071 +"RT @opurra: What climate change deniers, like Donald Trump, believe https://t.co/GoA7JTPANg",876155 +Expert on climate change policy she held position of the country manager of the BMU CMD/JI Initiative #TEDxMICA #Panorama,518691 +RT @realamymholmes: This is *real* commitment to 'global warming': Leonardo DiCaprio sunning himself on a 450ft. superyacht in Cannes. http…,571034 +@GhostPanther Facts: 'man made' climate change is the hoax. No macro evolution only micro. Sexual identity developed between ages 3-7.,57352 +RT @CNN: .@SecretaryRoss on budget cuts for climate change research: “My attitude is the science should dictate the results” https://t.co/m…,444558 +RT @ryanlcooper: Donald Trump will take office at the worst possible time for climate change https://t.co/EvlNz9L8Uc https://t.co/RW9RRrJsC0,44613 +RT @ForecasterEnten: College educated GOPers are most likely GOPers not to like Trump. They're also most likely to think climate change eff…,583126 +"RT @World_Wildlife: Irresponsible food production drives climate change, which drives more irresponsible food production. Time to break…",516278 +RT @ReutersWorld: China still committed to Paris climate change deal: foreign ministry https://t.co/XlADjomFIa,599097 +"@spacebull4000 @TradrofTheNorth lol, another propaganda sponge. Your religion is climate change, and it’s fucking pathetic.",144626 +climate change deniers blaming the sun. Say what?! https://t.co/okONWpzdaB #hocus #potus,362282 +"#morningjoe +#msnbc +Don't worry #Heartlanders the coastal blue bubble will fall off into the ocean with climate change + +Ahaaa aaaaaaaaa",465505 +"Indigenous rights are key to preserving forests, climate change study finds https://t.co/wMLlp1LAap",781993 +RT @teroterotero: LOL people in Louisiana swampland don't think global warming will hurt them https://t.co/smkBpiA1Qs,840724 +RT @WenonahHauter: Some hope for the future. Judge rules youth can sue over climate change. #NoDAPL #BanFracking https://t.co/2lpXTE2S4k,385584 +"RT @theblaze: Anti-Trump actor fights global warming, but won’t give up 14 homes and private jet https://t.co/183dh8BYBh https://t.co/HSvBv…",332709 +RT @EnvDefenseFund: Scientists say these 9 cities are likely to escape major climate change threats. Can you guess where they are? https://…,913766 +RT @Ede_WBG: Master plans that help #buildresilience need to consider uncertain futures due to climate change: ROBUST designs https://t.co/…,49767 +"#DailyClimate As Trump heads to Washington, global warming nears tipping point. https://t.co/5uqTbY7uuC",416908 +RT @postgreen: These stunning timelapse photos may just convince you about climate change https://t.co/kmiKMejHiw https://t.co/BA8OAE8Gy8,607640 +"RT @pewglobal: Europeans say ISIS is top threat, but worry about climate change & economic instability too https://t.co/mv0Rlbfr9X https://…",642312 +We got your climate change right here @realDonaldTrump @VP https://t.co/T20ehlcllW,66809 +@BBCWorld Merkel wanted it to be about 'climate change'. Trump used it to talk about important issues. And stole the show.,55451 +"RT @Alex_Verbeek: Polar vortex is shifting due to climate change: extending winter + +https://t.co/MB3jpJY3Mn #climate #weather…",776252 +RT @RacingXtinction: Today may be one of the largest protests in history asking world leaders to act on climate change…,146193 +RT @climatehawk1: Economists agree: economic models underestimate #climate change https://t.co/0VmQxA6ish via @drvox #globalwarming…,839366 +"RT @KimWeaverIA: #StepsToReverseClimateChange Vote out climate change deniers like @SteveKingIA who says, climate change is more 'a…",579210 +@dailykos But there is no global warming. Ha!,597687 +"If Smash Mouth believe in global warming, how can people doubt that? It was in a song! Has to be true https://t.co/0uA7kCoHdb",619476 +"RT @thehill: GE CEO vows to ignore Trump, continue to fight climate change: https://t.co/NyKPM34zwY https://t.co/4V9XGapy7M",414013 +RT @BhaskarDeol: Watch this beautifully articulated film on why we must act on climate change: Three Seconds https://t.co/VGBFk4pC1c,380700 +How do you save Lady Liberty from climate change? https://t.co/3dXgrrhl3D via @climate @ladylibertybook,896367 +"RT @s_rsantorini630: Apparantly Bill Gates (who doesn't listen to GOP geniuses who deny climate change) starts $1B fund to combat it + +http…",334698 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,314624 +RT @davidsirota: WOW: “You and your friends will die of old age and I’m going to die from climate change.â€ https://t.co/tFswYjwczQ,991473 +RT @jilevin: Is climate change a massive hoax or not? Which makes more sense? #green https://t.co/7TEqYEJr2t,549413 +"RT @IndieWire: Watch Leonardo DiCaprio's climate change documentary #BeforeTheFlood for free online +https://t.co/g3iUV8yU0u https://t.co/L…",242209 +"From heatwaves to hurricanes, floods to famine: seven climate change hotspots https://t.co/Ki5IIY15Ip",969368 +Obama talks social media and climate change in final address - Engadget https://t.co/whCIbgTXdD,348883 +World leaders duped by manipulated global warming data https://t.co/1NGvTMliIt via @MailOnline,418492 +RT @missxeroxes: Do you believe that global warming is a hoax?,470540 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,458378 +RT @teague: only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scientists,109266 +Report helps scientists communicate how global warming is worsening natural disasters | John Abraham… https://t.co/94mCqWxBSL,796016 +RT @TeamTrump: .@realDonaldTrump will cut taxes & cancel billions in global warming payments to the UN so we can use that money to…,146189 +Why the Democrats need to get radical on climate change https://t.co/LCNyr2lZuD,908598 +RT @cbxhuns: people blame exo for everything. your faves losing? exo's fault. global warming? exo's fault. the world ending next month? exo…,305829 +RT @davidsirota: How does the NYT write a story about Tillerson's appointment and not even once mention the term 'climate change'? https://…,150626 +"This new movie on climate change is well done, and now free online for a couple more days https://t.co/Mn52WUoDL9",314295 +@Megancats Maybe climate change will take us all out first. 😢,785092 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,349953 +"Stop the madness: the plight of climate change, the responsibilities and hope for change @YebSano #Greens2017 + +https://t.co/0EHMwmZ3VE",315604 +Theresa May admits climate change is not on the agenda as she meets Trump at G20 https://t.co/uQMsBdhA4f,719053 +RT @guardian: Finland voices concern over US and Russian climate change doubters https://t.co/MyyFMFZPMr,625475 +"RT @IOMchief: Mary Robinson’s call to action that climate change must inform the Global Compact on Migration +https://t.co/StEPM803KL",904281 +"RT @Alex_Verbeek: �� + +New coalmines will worsen poverty and escalate climate change + +https://t.co/SA7laCEPv7 +#climate #coal…",864899 +RT @deathyeezus: Desiigner learns about climate change �� https://t.co/O545iDuXV1,98191 +"RT @ClimateReality: Globally, women are often more vulnerable to the effects of climate change than men https://t.co/TouOd4AGyZ…",393935 +@ScottAdamsSays isnt 'climate change' @ broadest level a checkmate of confirmation bias: temp up = confirmation. Temp down = confirmation,976682 +@UNICEF A solution for poverty and global warming https://t.co/htrWOJws1K in less than 30 pages,115902 +@cnn its v worrying that science must find a mechanical way to pollinate flowers & fruit trees. Pollution & climate change 😔 killing bees,714477 +@AchmarBinSchibi @anagama #DonaldTrump and #HillaryClinton need to get the message that the answer to global warming is not nuclear winter!😆,904871 +RT @JacobWhitesides: I think that's global warming not christmas https://t.co/VVAzjVXH6w,40002 +RT @MatthewACherry: What climate change? https://t.co/QC0yIrbVpo,196167 +Is there a link between climate change and diabetes? https://t.co/sUekMB3vux #awesome,876677 +RT @first_affirm: Public-private partnerships key for cities to invest $375B over the next 4 yrs to avoid catastrophic climate change https…,639041 +Palau: on the frontline of climate change in the South Pacific https://t.co/Fj8fA4rMIE,658238 +RT @DontBlowItTrump: The biggest threat to mankind is NOT global warming but liberal idiocy👊🏻🖕🏻 https://t.co/UDEt6fs9gr,118538 +RT @adetigoal1: @ukblm biggest load of rubbish climate change does not look at colour or creed numbskulls just for your info city airport i…,585684 +RT @thehill: EPA spokesman: No plan to take down climate change webpages https://t.co/2wLV2DRc1W https://t.co/nxQp9A16SI,212373 +"RT @ajplus: 'You might as well not believe in gravity.' + +Leo slams climate change skeptics. https://t.co/kdzZbcZHCL",439871 +RT @AJEnglish: 'Protecting the Earth's lungs is crucial if we are to defend the planet’s biodiversity and fight global warming.' https://t.…,372248 +RT @BernieSanders: Some politicians still refuse to recognize the reality of climate change. It's 2017. That's a disgrace.,808291 +"If global warming isn't real , how do you explain Club Penguin shutting down?",740677 +RT @Gizmodo: Donald Trump: Maybe humans did the climate change after all https://t.co/yZcprfdjBH https://t.co/XPUoMGs0to,286600 +This is just plain nuts: 50 minutes spent on talking about climate change by Networks. Watch @NewsHour… https://t.co/SWTQRKE7UH,39137 +"RT @GeorgeBludger: Economy stalled, NBN ruined, climate change policy non existent, emissions up, debt doubled with nothing to show fo… ",242134 +RT @rebleber: What does a climate change denier wish for when everything seems possible? https://t.co/7ysDMUSFEy,789533 +RT @RogueNASA: NASA is defiantly communicating climate change science despite Trump’s doubts #resist https://t.co/b1bhtvnYsN,974607 +Care about climate change? Sign up for the Speak Up Week of Action now! https://t.co/u3bBTydNkI #speakup,121892 +RT @hblodget: 73% of Americans believe climate change is real https://t.co/bTMTETlPgI @danbobkoff,925466 +On the list of least surprising things to learn about Philly sports figures: climate change deniers https://t.co/PDAE399pym,659381 +@Agriculture_Neo #watertable please share ideas to bring up ground water level and reduce global warming,71947 +RT @BioSRP: GMO super plants will save us from global warming says German scientist! (No mention of ordinary plants. Like trees) https://t.…,619589 +RT @DhakaTribune: #Trump's win #boon for climate change #sceptics? https://t.co/HXthlbYivl via @DhakaTribune #DT #World #Climatechange,538261 +RT @DebDay1958: @marcorubio #blockPruitt. He is a climate change denier unfit to head EPA.,401624 +RT @WIRED: What a Trump presidency means for the global fight against climate change: https://t.co/JhDmByNpNP,592687 +Watch Phoenix's @MayorStanton discuss how mayors of cities across America stepped up to fight for climate change po… https://t.co/58C8TGf8PN,770681 +Harry is introducing someone to the dangers of global warming tomorrow,655254 +"Important conversation here, not just on science of climate change but on its rhetoric: how best to convey/dramatiz… https://t.co/5s5Rv8kYFK",803295 +"Pope, Orthodox leader make climate change appeal to 'heal wounded creation' https://t.co/wr1gUxK4TR",770982 +RT @nytimes: President Trump’s proposed EPA cuts go far beyond climate change https://t.co/WmNMC9MtQm,841939 +Macron teams up with Schwarzenegger to troll Trump in climate change video https://t.co/XeJ4B06zvo https://t.co/0AdvG1wGLy,773430 +"RT @YungKundalini: Also the owner of #Coachella, Philip Anschultz, actively supports anti-gay and climate change denying groups.",910369 +"RT @sandiesvane: climate change is real, lgbtq+ people deserve human rights, racism has no place in politics, and donald trump is a piece o…",529946 +Scientists just published an entire study refuting Scott Pruitt on climate change https://t.co/IVW5y17TmZ https://t.co/m9DDZcFoKo,453960 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,199412 +@MrsBrandhorst REI frames their story around global warming and how it's in our hands to make sure our votes protec… https://t.co/6ycPkWO0eZ,928138 +RT @climatehawk1: Here's how #climate change is making Americans poorer | @Sojourners https://t.co/Z0kesnHZVs #globalwarming…,89026 +"@washingtonpost Like global warming regulatory crap, increasing the poor's expenses by $2,700/year?",936076 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,48194 +"A cyclone has been ripping through Queensland, Australia. It's not due to man-made climate change -- Queensland has always had cyclones.",543968 +@telesynth_hot @Earth10012 you don't debate liars. Deniers are idiots that know SFA about climate change,428811 +#BreakingNews Weather Channel storms at Breitbart over climate change video - CNET https://t.co/hJ9I1e4WF9,199176 +Or maybe global warming???? Lmao https://t.co/nBvNU1nJoy,308647 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,472164 +RT @washingtonpost: Trump says 'nobody really knows' if climate change is real https://t.co/FQZAhTMLM4,14347 +This is why we are rightfully scared of Trump. First a climate change denier as head of EPA and now this guy go do… https://t.co/7MW3HedFV8,792863 +"‘Stop lying to the people,’ on #climate change, Schwarzenegger tells Republicans: Sacramento Bee https://t.co/i23YyoEeGq #environment",730475 +@JoyVBehar SHUT UP joy....climate change is a hoax & if ur dumb enuf believe its a problem...ur really stupid #ClimateChangeHOAX,302030 +RT @susannareid100: Brighton's @ivanka responds to President-Elect mistaking her for @IvankaTrump by advising him on climate change (wh…,729730 +"American fears about climate change hit record high, poll finds https://t.co/gYUvM5cwWB # via @HuffPostGreen",355810 +"Save water,grow tree than less global warming",520559 +"@Harlan @LouiseMensch This is all because of global warming. Methane blast from Soros's donkey ass. $50,000,000. Ouch����",116986 +"If scientists can't convince the US that climate change is real, how can its citizens convince eachother to change?",242175 +@eoghanmcdermo @Dermiemac That's ME!! I'm mad into climate change these days. I'm thinkin of starting a club,214431 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,627510 +Germany tells World Bank to quit funding fossil fuels | Climate Home - climate change news https://t.co/CQwzUzbUW0,372797 +Investment key in adapting to climate change in West Africa https://t.co/zJ3pozUcvx,821047 +RT @latimes: How will California battle climate change? A new proposal revs up debate over cap-and-trade program https://t.co/vJgcgoGpqF,859883 +RT @UNHCRUK: How many people are already displaced by climate change? Check out our climate change FAQs for these & more answers…,184039 +@NewDay @MarshaBlackburn How does CNN find these Blonde Bimbos. She is living proof of climate change. Mind is polluted with Trumps Farts,575649 +"As Alaskans head to the polls, climate change is threatening to transform all aspects of life https://t.co/1TRjwSXtcc",406507 +"RT @CBDNews: New data: 'Long-distance migratory patterns of #birds follow peaks in resources', disturbed by climate change @UPI… ",208568 +"#Science - Nuclear warhead could trigger climate change, The researchers from the Univer... https://t.co/wLUkreSGzf https://t.co/AunUZI3lRq",371985 +"“Trump, Putin and the Pipelines to Nowhere” by @AlexSteffen +Delay addressing climate change is their game. +We lose https://t.co/XfDqIVjGpg",440835 +Are these the innovations that will save us from climate change? https://t.co/WuaXpTMoWY via @wef,647629 +Ngl global warming kinda made me forget about snow,897754 +EPA boss says carbon dioxide not primary cause of climate change https://t.co/VykSCZEry3 https://t.co/AiWMIbHsRr,802877 +RT @IndyUSA: Scientists explain apocalyptic effect of Trump pulling out of the Paris climate change agreement https://t.co/7opo7NhjjD,254620 +RT @anylaurie16: The kids suing the government over climate change are our best hope now: https://t.co/0sX7TfRgSy,306648 +"RT @iyad_elbaghdadi: Trump's CIA pick is Mike Pompeo, who is pro-NSA, pro-guns, pro-Gitmo, pro-GMO, a climate change denier, and staunch…",80762 +"RT @nycjim: In Florida, Trump pledges to stop sending money to the United Nations aimed at fighting climate change. https://t.co/G7kNkbrNM8",65253 +How embarrassing will it be when the non-science-challenged foreign leaders have to deal with how @realDonaldTrump perceives climate change?,221872 +The fact that we are all enjoying global warming 😫 it's 55 degrees in MN in November,655251 +RT @TheSocReview: How a Swedish biologist is forcing people take responsibility for their own part in climate change https://t.co/nAdhycXb…,400521 +"RT @ClimateCentral: February’s record warmth, brought to you by climate change https://t.co/cWuMQk8e23 https://t.co/k2RJ7ItxC1",899111 +"Climate change is happening now – here’s eight things we can do to adapt to it + +https://t.co/iTyQnCgnkG + +Adapting to climate change.",213627 +RT @nytopinion: China and India are doing more to fight climate change than they promised in Paris https://t.co/1QpwWV5RCW https://t.co/8M6…,32882 +"@longwall26 Hell, with Antarctic ice shelves breaking off due to climate change, a Titanic fate would be an irony none too rich!",127013 +.@johniadarola This is turning into the left-wing version of climate change denial-and it's equally dangerous. THAT… https://t.co/TfuNAggdGw,296021 +RT @emmalherd: Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/9kfxJZCbEH,246508 +RT @charlescwcooke: Writing “none of this is to deny climate change” and describing “human influence on that warming” as “indisputable” mak…,881303 +"@marie_dunkley arseholes couldn't predict tomorrows weather in a 4 month heat wave, yet we trust them on climate change! narrr",877621 +RT @WhyNomii: Have a stake in businesses that would profit off of global warming 💁 https://t.co/KNBpW8y4e2,913736 +"Supreme Court, building on healthcare, climate change...#ButHillarysEmails",28168 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,616816 +"RT @Bwdreyer: You'd think POTUS could take a moment to call for calm & peace in his own country? No Obama, talks climate change.…",337927 +RT @ReutersPolitics: Trump to roll back use of climate change in policy reviews: source https://t.co/dqiy3y0GNP,60850 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",382625 +RT @ChadBown: Scientists from 13 federal agencies draft a report concluding Americans feel the effects of climate change right now https://…,306424 +"Trump's pick to head EPA is climate change denier. Good job, Florida voters. Hope u enjoy being under water. https://t.co/HWkzf7Sydl",125916 +US Defense Secretary says climate change poses national security challenge https://t.co/KifAMJ5roa https://t.co/j21Bvs3tHk,887268 +PENELITI: Pemakaian hot pants berkontribusi besar pada dampak global warming,646241 +"RT @Mikel_Jollett: The Entire Scientific Establishment: Save the planet from global warming! + +Some Random Reality TV Show Host: nah.",833300 +RT @Watchdogsniffer: Fossil fuel use must fall twice as fast as thought to contain global warming - study | Environment | The Guardian http…,640993 +RT @davidsirota: WOW: “You and your friends will die of old age and I’m going to die from climate change.â€ https://t.co/tFswYjwczQ,185928 +RT @ClimateCentral: 'Trump is wrong — the people of Pittsburgh care about climate change' https://t.co/RtNZBMfb03 via @voxdotcom,723717 +RT @Keylin_Rivera: Not surprised they (Donald's EPA appointees) forgot to take down the Spanish climate change page https://t.co/kYJeJtmkWX,161924 +Rethinking cities 4 the age of global warming suggests 2 replace 'sustainability' with 'survivability' https://t.co/yHwxKFvxxp #architecture,653426 +So u say climate change is hoax? Here is a picture from Saudi desert this morning. https://t.co/AePzbKJAG7,326871 +"RT @Independent: Earth's worst-ever mass extinction of life holds 'apocalyptic' warning about climate change, say scientists https://t.co/I…",23219 +RT @KHayhoe: I couldn't agree more. What's one of the best things we can do about climate change? Talk SOLUTIONS. https://t.co/zY9qjyheU6,694941 +RT @PopSci: How we know that climate change is happening—and that humans are causing it https://t.co/8Z9EhVR2eM https://t.co/fzljpWBfGF,511624 +"RT @Greenpeace: Sorry deniers, climate change hasn't slowed down this decade https://t.co/13IBWRSeN4 https://t.co/lxhfQsYTqE",713841 +"End coal by 2030 to meet Paris climate goal, EU told | Climate Home - climate change news https://t.co/afckM4lu5T via @ClimateHome",757148 +RT @paulkrugman: The climate change story just keeps getting more terrifying https://t.co/6YNcdKhcUQ https://t.co/rasgN6NOZd,233609 +RT @asamjulian: Angela Merkel seems more offended over Trump disagreeing on climate change than she's ever been about terrorism in her own…,481699 +RT @washingtonpost: Meet the rogue Twitter accounts created to fight Donald Trump on climate change https://t.co/jGKyNMlK0y,788178 +What are they smoking? Green Party blames World Series rain delay on global warming https://t.co/OEPjDMdgp2 via @twitchyteam #climatecon,258840 +"RT @Energydesk: Without the Congo Basin rainforest, efforts to tackle climate change are dead in the water https://t.co/Z7A0F0hKxu https://…",180910 +"And for their win, Va Tech gets the black diamond trophy, which is an ad for coal. Includes black lung and global warming for everyone.",143846 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,397187 +"RT @agripointglobal: To curb climate change impact to farmers, knowledge and intelligence is key. @CICCA_CSF @SDGsClimate @weathernetwork @…",735956 +"Anybody want to tell @washingtonpost that being against global warming doesn't sell well in WI, PA, MI, IA, OH in J… https://t.co/stjXT5eQXf",697066 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,398754 +RT @NRDC: Trump’s denial of catastrophic climate change is a clear danger. Here's why: https://t.co/ig2noyUP1x #ActOnClimate,159756 +@jonlovett I'm terrified. I work for a DOE contractor and know global warming is real. Just waiting to see my name on a list come January.,583833 +RT @brady_dennis: Paris accord nations resolve to push ahead on climate change goals — with or without the U.S.: https://t.co/JTyUGSuecf,347170 +"@washingtonpost Oh for Christ's sake, why not say border walls will make climate change worse? For cryin' out loud report on REAL NEWS?",840626 +"2016 warmest year in UK since 1850 https://t.co/9r2QUN9WUC global warming at alarming rate, cooperate everyone",976083 +RT @Slate: China very kindly explains to Trump that it didn’t invent climate change as a hoax: https://t.co/wqQuPCgbeH https://t.co/2bFJ4wL…,936082 +It's going to be 81 degrees today...in the middle of November... and Donald trump still doesn't believe in global warming,707118 +People who don't believe in climate change are the scariest types of people,230817 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,647480 +"RT @SteveSGoddard: Your SUV was causing disastrous climate change in the 1870s too +https://t.co/8noB4LSkEm https://t.co/3kr6qcfPlG",886880 +RT @NBCNews: U.S. Secretary of State Rex Tillerson used an email alias as Exxon CEO to talk climate change…,669722 +Why land rights for indigenous peoples could be the answer to climate change https://t.co/krvS2D7ACJ,89211 +RT @COP22: In 4 days the most ambitious climate change agreement in history enters into force. Have you read……………… https://t.co/KqFyyWF8uD,965203 +RT @cbcasithappens: ICYMI What a Trump presidency could mean for climate change: https://t.co/cEFRJAPVT3 https://t.co/4bHJgk6R7p,205053 +"RT @CNN: From urbanization to climate change, Google Earth Timelapse shows over three decades of changes on Earth… ",792494 +@chweaver96 Omg sometimes I hate being home bc I got in a fight with my dad earlier bc he tried saying global warming isn't real ����,810157 +RT @FAOclimate: 'We need a Gender & #ClimateChange Strategic Plan' @UNFCCC gender/climate change negotiator Winnie Masiko https://t.co/kJl2…,244378 +"#CredibleElectionsKE @AfricaTrees Grow trees, make cash as you help improve climate change https://t.co/eAiY2j1D47 https://t.co/EiRi0rmuMK",953700 +@realDonaldTrump A 2012 report by the Union of Concerned Scientists found that 93% of global warming coverage by Fox News was misleading.,823363 +"RT @realJakeBailey: Since Trump proposed the Solar Wall, the Democratic Party has started to systematically deny climate change- they now s…",643295 +RT @DclareDiane: World leaders duped by manipulated global warming data https://t.co/rgLBJEBwdh via @MailOnline,844388 +"RT @HashtagJones1: Treat climate change as the biggest threat facing the world today, because it is. #StepsToReverseClimateChange https://t…",111866 +"RT @ConversationEDU: 20 million climate change refugees? It may even be far more than that in the future: +https://t.co/LLPcLfVyDN #qanda",891158 +"RT @Independent: Manhattan Project-sized effort is needed to prevent 'catastrophic' climate change, say scientists https://t.co/Hv1rcW0Djq",658186 +President Trump's rollback of environmental protections leaves China poised to lead fight against climate change… https://t.co/BvvGLAfGfb,376161 +"RT @michaelwinn7: As it snowed in Denver, Alynski Marxist Coloradans stood around w/ global warming placards toking state weed https://t.co…",733882 +RT @timkaine: Tillerson for Secretary of State! What's next -- climate change deniers for EPA & Energy? Oh wait....,524949 +@travisjnichols @realDonaldTrump Here dumbass here's the truth Read It and Weep you climate change little bitch https://t.co/0kIKpIoQkk,754796 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",747068 +"thats alarming for the climate change alarmists .... +(see what i did ?) +the worlds lungs were created to use up c02… https://t.co/wGKGB33Nk5",260344 +"What will kill us all first? Trump/WW3 or global warming? + +Idk but I'm gonna double down on enjoying life as much as possible, Just in case",341280 +RT @OG_Threee: It was nice as shit out today thank you global warming,833793 +RT @jurtice: How long before climate change deniers and flat earthers take a stand against trees for causing allergies?,456224 +"RT @supertaschablue: On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/O4PCRy0a1g",942777 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,813648 +"RT @9HUrne5nPVQ7p5h: Because of global warming, their habitat is decreasing. https://t.co/lkLPAy6axb",703664 +RT @EnvDefenseFund: 5 ways climate change is affecting our oceans. https://t.co/ejLx0v5j7D,454700 +"@glynmoody @guardian It's ridiculous, even if you put global warming and killing off the planet aside, it still doesn't make economic sense",774633 +RT @ProfTimStephens: Study: the Paris carbon budget to avoid dangerous #climate change may be 40% smaller than thought https://t.co/uaYaE7l…,713981 +Donald Trump repeatedly publicly stated he believes climate change is a myth invented by the Chinese. What 'side' d… https://t.co/VsHgOeR0Uz,439771 +RT @StevePasquale: 99 percent of the world's climate scientist agree. And climate change doesn't give a fuck what you think. https://t.co/f…,877051 +"If you're looking for good news about climate change, this is about the best there is right now https://t.co/sMOthWDGDF",557810 +RT @achimdobermann: Barack Obama on food and climate change: ‘We can still act and it won’t be too late’. https://t.co/wPcnv1qvct,999361 +Six -#irrefutable pieces of evidence that prove #climate change is real | Popular Science https://t.co/QC4Jg8MCv9 via @PopSci,541390 +RT @FlyOnTheWallPod: NEW POD--check out episode 2 of #FlyOnTheWorld a convo w/ @AmbWittig of @GermanyinUSA on climate change! LISTEN HERE h…,843489 +RT @tan123: Name one person who has ever lost a job because of CO2-induced climate change https://t.co/wIAJrAIL6o,864943 +RT @Sierra_Magazine: Republican state senator Scott Wagner suggests that climate change is caused by humans’ “warm bodies.” https://t.co/gw…,624938 +RT @ABC: Sec. John Kerry becomes highest-ranking U.S. official to visit Antarctica; he's there to learn about climate change…,672160 +"Laying here at 4:30am wondering if nuclear winter will fix global warming. +Cause even my insomnia has a bitchy, smartass side.",651084 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,657393 +RT @CommonWhiteGirI: Only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scienti…,730399 +"RT @CSLIT_TCDSB: 'You can't stop climate change on your own. But, you can take a chip off of that concrete wall, that is climate cha…",507652 +Hey let's leave science to the scientists while we completely disregard scientists and science' - GOP on climate change,836399 +Indian Ocean’s widening current to impact climate change | https://t.co/4SfgKkWEOx,231 +RT @TrueFactsStated: The incident at Trump's rally was an assassination attempt in the same sense that climate change is a Chinese conspira…,141372 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,67600 +"RT @afreedma: Remarkably, Trump never once acknowledged reality of global warming in his Paris Agreement speech today https://t.co/5Fwa9E4X…",486188 +RT @Soniasuponia: Octopus in the parking garage is climate change’s canary in the coal mine #tentacleloveclub https://t.co/Zld0QrmsFR https…,788413 +Everyone's caught up with North Korea and Trump. Dead silence on dangers of unregulated A.I and climate change lately.,163707 +RT @nowthisnews: These women are leading the global fight against climate change https://t.co/tELaEsa0jk,175537 +RT @pewresearch: A minority of the U.S. public sees consensus among climate scientists over the causes of global warming…,899924 +@Patbagley you forget the no climate change.,387467 +RT @FastCoIdeas: This machine just started sucking CO2 out of the air to save us from climate change: https://t.co/byIGbX4kWO https://t.co/…,300294 +RT @jorgiewbu: This is climate change. This is the struggle island communities have been facing for years. This is what's to come…,263648 +"RT @TheScarceFiles: 2010-2017, so sad to see what climate change has done to the Grand Canyon �� https://t.co/0lwReM2k8k",546601 +RT @thehill: CO2 levels in atmosphere hit new high as EPA head denies its role in climate change https://t.co/It24SxLeq7 https://t.co/QoCo6…,208409 +"RT @steven94117: he did...said man is NOT responsible for climate change! ... in so many words! no Texan will ever, ever admit oil i…",988785 +RT @WIR_GLOBAL: GOP candidate for Pennsylvania governor thinks climate change caused by Earth moving closer to the sun https://t.co/EOwYyhd…,460408 +"@erikvandenwinck I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",596290 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,152927 +Too late now to stop climate change. @TheOnion absolutely nails it: https://t.co/VPXYfBSvLc,330596 +RT @CBSNews: Bernie Sanders: 'What astounds me is that we now have a president-elect who does not believe climate change is real…,813049 +"RT @rileyisokay: Actually—my uncle, Dr. Jonathan Patz, co-winner of the Nobel Peace Prize for his work on climate change, DOES know.… ",29924 +"RT @inafried: In contrast to Mnuchin and Trump, @benioff says climate change and AI actually big deals, require societal shift. +https://t.c…",966487 +RT @VickiGP1: Global warming data FAKED by gov't to fit climate change fictions #ClimateHoax #FakeNews https://t.co/q4cmkCRj9y https://t.co…,211780 +RT @insideclimate: New climate change evidence could affect legal fight over Trump’s revived #KXL permit https://t.co/xtfZOu5W5G,934971 +@PropertyBrother @MrDrewScott @MrSilverScott @hgtvcanada ' r u climate change Denier',396644 +RT @kmac: Australia just ratified Paris Agreement on climate change,389863 +How will Trump administration treat climate change? Why it's so hard to know. https://t.co/GtQdGcR4ob https://t.co/FIy4tLRUG0,151900 +Nothing worse than a climate change explosive device. Enlist with us at https://t.co/GjZHk91m2E. Join our patriots. https://t.co/bgnuD35fvk,529295 +Trump falsely claims that nobody knows if global warming is real https://t.co/pTeU8xZewZ via @Mashable,197911 +Climate change sceptics suffer blow as satellite data correction shows 140% faster global warming. https://t.co/MTI8ZqZBn2,795755 +I sat next to two Penn frat brothers last night at a climate change forum and the one guy was reading Taylor Swift/Zayn Malik gossip.,826090 +‘Bombshell’ climate-change study could totally dismantle the claim humans are causing global warming https://t.co/5yM3wP3qrm,10291 +RT @YEARSofLIVING: Celeb-packed 'Years of Living Dangerously' wants to make climate change a voting issue https://t.co/JLCns044m3 via…,827586 +"RT @business: Stopping global warming could make the world $19 trillion richer, report says https://t.co/cqwRZTGYSF https://t.co/jIVmFcrPyD",342303 +"RT @RiffRaffSolis: While you're in those booths today keep in mind one thinks climate change is a hoax, the other acknowledges it's reality…",467556 +"RT @bomani_jones: climate change has a factual basis that one side tends to ignore. which...yeah, not ideological. https://t.co/1T69ZLR029",237893 +Americans are even less worried about Russia than climate change.,182715 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,523321 +US budget broadside on climate change https://t.co/Z1av64FY05,363106 +RT @RedShiftedOne: @Seasaver PLEASE EXPLAIN how Canada's seal hunt contributes to biodiversity loss and climate change? Best to point to ev…,23004 +"Despite fact-checking, zombie myths about climate change persist - Poynter (blog) https://t.co/r9e2apdFDF",928252 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,391847 +@AbbakkaHypatia But govt does subscribe to the idea of climate change. And that idea says that you have to incentiv… https://t.co/poeagsLjRY,675665 +RT @citizensclimate: It's about security: The White House doubts #climate change. Here's why the Pentagon does not…,348827 +It is suggested by American officials the climate change has to be considered when thinking about instability. #4corners #ujelp17,729449 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,232059 +One relatively undocumented consequence of climate change - the impact on political parties https://t.co/taXusDIqxq by @murpharoo,171354 +RT @SciForbes: Think Trump is right and climate change is a hoax? It's time to have a serious discussion about this:…,161420 +RT @SheilaGunnReid: TFW the spenducrats take cabs to the climate change meetings while telling you to walk to take the bus https://t.co/aUv…,920419 +#Moraltime Pacific countries advance regional policy towards migration and climate change https://t.co/SFAJE0wEFn… https://t.co/Fk8pDi3k3x,125728 +RT @GartrellLinda: Gore & his money making scam of global warming is now known as climate change. The 70s warned of coming ICE AGE. YE…,529144 +RT @CDP: Want to be $19 trillion richer? Then start acting on climate change. It makes business sense says @BloombergQuint https://t.co/RG6…,38443 +CityConnect shows you how climate change will impact your own home https://t.co/m4TFu2aBFQ #disneyworld #Broward… https://t.co/s81Z63iPOp,923595 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",281501 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,755722 +"RT @HuffingtonPost: Why so many Americans don't 'believe' in evolution, climate change and vaccines https://t.co/pYQW8pv63k https://t.co/4G…",34877 +"RT @DennisvBerkel: How climate change battles are increasingly being fought, and won, in court @tessakhan https://t.co/FrVRS6epzV",948297 +"Any of these people who take private jets should never, ever complain about climate change !!",655292 +RT @VanillaThund3r_: Where's good ol global warming when you need it?,624662 +What a Trump presidency means for the global fight against climate change: https://t.co/jV7jDVsOhq by #WIRED via @c0nvey,617813 +Scott Pruitt may sound reasonable on TV — but Trump’s EPA nominee is essentially a climate change denier… https://t.co/fOc4CoV8SG,872665 +RT @Aquanaut1967: What can robot shellfish tell us about climate change's impact on marine species? https://t.co/sqo7opKShj via @Smithsonia…,251854 +RT @CalumWorthy: A5. Those who deny climate change. There is no debate. Denying climate change is like denying 2+2=4. https://t.co/sOGmhT…,836359 +RT @washingtonpost: Analysis: Here’s just how far Republican climate change beliefs are outside the global mainstream https://t.co/PQqSPiDg…,798768 +RT @archpaper: This company is designing floating buildings to combat climate change disasters: https://t.co/1cMOL1Plb7 https://t.co/YsaWUo…,922488 +A farm in Mexico is growing a solution to climate change https://t.co/Tq8Gz1ftPH,446131 +"people always talk about how asteroids or global warming, etc will destroy the earth when in reality, it's mankind doing all the damage",711942 +@ProfBrianCox If you want to convince people of climate change just show them the unnatural toxic molecules being produced.,132672 +A trillion-dollar investment company is making climate change a business priority https://t.co/lJWFRdCq2D,117315 +RT @Plfletch: The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/bBEQNLNPBj,786925 +Yay yippe trump fan ur big boy gonna make everything great again but what about global warming ! :O,88937 +RT @business: The climate change skeptics are taking over https://t.co/P5Dy8BVyQB https://t.co/XGOb0HwyKv,841709 +RT @jewiwee: This is what global warming has done to polar bears. https://t.co/zJh17H72eY,764509 +RT @astroehlein: Good to see public outrage forced a retreat here - but what about Trump's gagging of EPA & climate change info? https://t.…,263838 +@_wintergirl93 Sally Krohn is not qualified to make climate change policy,903611 +RT @yiffpolice: the new bill nye tv show is getting me all riled up about global warming. we have the technology to stop using fossil fuels…,135121 +RT @HuffPost: Federal scientists leak their startling climate change report to keep Trump from burying it https://t.co/83cZF2aLkl https://t…,144821 +https://t.co/S9ioOOk9jW Do aliens exist: Martians may have been wiped out by global warming on Mars #mars,632162 +@adroops46 @POTUS I don't believe in fake global warming.,360173 +EPA removes climate change information from website https://t.co/o6Jpl63eAR,448103 +"Ecumenical Patriarch blasts ‘disgraceful’ inaction on climate change, says ‘survival of God’s creation’ is at stake https://t.co/uWT8BhHUk1",678866 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",415234 +RT @ChristopherNFox: Great to see National Association of Corporate Directors tweeting about #climate change - sharing new…,724647 +RT @kykymcd: yet you side with someone who denies the legitimacy of climate change,665309 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,957065 +"Acknowledging the growing impact of climate change on the nation, https://t.co/lFKKgRQ9Pe",224939 +RT @WSCP1: U.S. & Europe tried to get climate scientists to downplay lack of global warming over last 15 years https://t.co/AWaEHPeKJ5 #tco…,133760 +"If you are a Christian stand for the truth of climate change, God wants us to protect and save creation. Stop being ignorant",402953 +Bản in : Mekong Delta seeks climate change adaptive techniques for rice farming https://t.co/FIUxFUgb04,647958 +I do not understand how people still don't believe in climate change,973496 +"RT @Carbongate: Physicist - CO2 does not cause climate change, it RESPONDS to it - Video #climatechange #environment +https://t.co/lySZb7gClh",211487 +RT @GeorgeTakei: Even the Pope is calling on Donald to acknowledge the reality of climate change. When the Vatican is telling you to get wi…,970549 +RT @whitneykimball: Michael Shank's cold open: 'Can we just start by agreeing that climate change is real?' *huge applause* town hall #Bro…,322361 +RT @ClimateReality: Idaho has dropped climate change from its K-12 science curriculum. Science class should teach science. Period…,758055 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",34105 +RT @see_thereverse: i do not understand how people can totally dismiss climate change but then wonder why it's 70 degrees in Wisconsin in N…,684967 +"RT @Middleditch: Just to be clear, the president-elect of the United States of America @realDonaldTrump doesn't think that climate change i…",167784 +"RT @AdamBaldwin: “Skeptical Climate Scientists: Here’s to hoping the Age of Trump will herald the demise of climate change dogma…” +https://…",645719 +"RT @AynRandPaulRyan: Other conspiracy theories not about Obama: +❌ Vaccines cause autism +❌ 3 million illegal voters +❌ climate change a ho…",183603 +RT @ClimbCordillera: The Peruvian Andes on the front lines in the fight against climate change #projectcordillera #inspiredbymountains... h…,644988 +"RT @femaleproblems: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https:/…",417921 +"Effects of climate change, fourth water revolution is upon us now https://t.co/ygdqaGipc0 https://t.co/V8wnWzI5H7",634015 +RT @SVChucko: How a professional climate change denier discovered the lies and decided to fight for science https://t.co/q46AxMBWLL by @fas…,855655 +This is just the tip of the denied melting global warming iceberg. https://t.co/xeHfcbDEcs,364166 +"RT @highimjessi: If you're even more worried about climate change after Trump started destroying efforts made to fix it, don't suppo…",818184 +RT @WarariJK: Good to know that global warming hasn't affected July,637913 +LMAO global warming ��������������,584433 +RT @wherami: https://t.co/dzAq5VvqZa - now the SWISS get it. global warming was a scam,54701 +"RT @ItalyMFA: Today is #WorldEnvironmentDay��| #Italy stands #withNature to protect the environment,mitigate climate change,promot…",417381 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",883513 +EPA chief clings to his own fantasy by denying overwhelming evidence on CO2 and climate change via /r/worldnews https://t.co/P0sxAJI8Md,518360 +RT @LangBanks: Sad!... Donald Trump signs order undoing Obama #climate change policies https://t.co/g9AyVjEst3 https://t.co/bEcwFxDXyI,599938 +We can limit global warming to 1.5°C if we do these things in next 10 years https://t.co/cTA9aLguJb #feedly,638621 +RT @RachelAzzara: @realDonaldTrump because you irresponsibly deny climate change and threaten the regulations that protect us and our plane…,961715 +"RT @skywalkertwin: this picture alone just added 50 years to my lifespan, cleared my skin, bumped up my grades, cured global warming a…",697302 +ILoveBernie1: RT rachy36: And why are Labor and the greens not supporting Liberals that are trying to get action on climate change?? #Krist…,167532 +The Sundance Film Festival created an entire section of climate change films https://t.co/uq0lwPzUeL,65065 +"In order for us to meet the threat of climate change; we want action and legislation passed at the federal, state, and local level- Joel",872916 +WATCH: Al Gore refuses to give direct answer when confronted over bogus 2006 claims on climate change https://t.co/wcejO0CdGI,199128 +"RT @SolarAid: “Human-caused global warming continues at a dangerous pace, and only human action to slash carbon can stop it.”…",977732 +Satellites help scientists see forests for the trees amid climate change https://t.co/hPoBLqQO2F,387630 +RT @PopSci: A comic-book cure for climate change https://t.co/w8l51nB9ce https://t.co/vRc2RrMVTE,42462 +RT @marykissel: Slippery language. No one disputes that climate changes. The dispute is over manmade impact (if any) and complex mo…,349811 +Dr Kaudia the environment Secretary and MBA alumni taking the Agri MBA students through climate change. @E4Impact https://t.co/kSL428dOxD,534173 +David Letterman turns global warming reporter https://t.co/xnoj4ji0uB via @Newsday,785799 +Great Barrier Reef just the tip of the climate change iceberg https://t.co/SyMUCx1wkd,403726 +mashable : Weather Channel shuts down Breitbart over 'misleading' climate change story https://t.co/LOtTju98pU … https://t.co/6ZqvxSn9Js,504476 +"âš¡ The Paris Agreement on climate change comes into action + +https://t.co/JDM8RQQynw",32252 +RT @PiyushGoyal: World Bank recognises that India is a now a global front runner in the fight against climate change.…,440593 +my science teacher is a woke king he told us gender is fake and climate change is real,892685 +RT @mlcalderone: Journalists getting to interview Trump keep failing to ask about climate change and actions damaging the environment https…,536460 +RT @thehill: 'Business must lobby Congress in order to get action on climate change' https://t.co/0fgkHYy67E https://t.co/cUa7csXfBF,806307 +RT @SenKamalaHarris: I wholeheartedly disagree. Exiting this deal to combat climate change would truly be a “bad deal” for generations o…,670875 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,681122 +RT @micahdjohn: youre a dumbass if you dont believe in climate change. this shit is happening fast unless this generation does something ab…,781879 +"RT @LOLGOP: The risks of taking climate change too seriously include better public transportation, cheaper power & less funding for feudal…",247068 +RT @lilflower__: If u aren't vegan u don't have a right to complain abt global warming/endangered animals bc if u aren't vegan ur a part of…,112810 +Importance of climate change emergency prep work https://t.co/0KqhUtei3u,603763 +"RT @NewsHour: A big finding of a major new study, @milesobrien reports, is that 'climate change will hit different socioeconomic…",340383 +RT @LoveOceanMtnSun: @tenajd @Cyndee00663219 so global warming is good for Exxon?,401550 +Knowing that your hometown is teaching climate change in school makes this struggle of spreading awareness totally worth it,397696 +RT @jpbrammer: poor communities and communities of color are dealing with the ramifications of climate change in the present. it's a 'right…,292460 +"RT @nytimes: In the Netherlands, climate change is not a hypothetical or a drag on the economy. It’s an opportunity. https://t.co/LY3B69zh8n",46055 +"11/3/17,mark the date when media will tell us,how punjab results wil impact global warming and politics worldwide @rahulroushan @mediacrooks",922725 +"RT @stevesilberman: 50 years from now, if we're lucky, people will look back at this statement on climate change by Trump to @nytimes a… ",420119 +RT @cnnbrk: Judge orders ExxonMobil to turn over 40 years of climate change research. https://t.co/qFDBZ5w3cG https://t.co/TyyQ2uo3Dv,345844 +"RT @RISETogether_NC: Tweets from @BadlandsNPS , which they were forced to delete. @EPA can't tweet about climate change anymore. What's… ",495305 +@ABCPolitics So Hawaii will send Billions to the UN to bribe China and India to address climate change by 2030? Mahalla,575462 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,353591 +"RT @Rich9908: Discussions about Messi being best ever remind me of climate change arguments. It's not a debate, it's not up for discussion,…",697999 +@CTVNews so what do u all think about climate change now. Nothing more then tax grabbing. Trump truly is smarter then the Punk and Premiers,645309 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,775388 +"RT @JoshNoneYaBiz: I guess CNN considers #Gatlinburg to be fake news. You know if it was caused by 'climate change' and not an arsonist, th…",616411 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,137885 +RT @4everNeverTrump: The USA is the ONLY country where global warming is still being 'debated' and is subject to partisan chicanery https:/…,451960 +How are there really people who don't beilive in climate change.. Like what they think is going on????,789115 +Children win right to sue US government on climate change inaction (Video) https://t.co/WiUA8ffrur #DSNGreen,477120 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,471531 +"RT @NYGovCuomo: With or without Washington, we're working to aggressively fight climate change and protect our future. https://t.co/aoGdPrb…",643397 +RT @HuffPostCanada: Trump set to kill Obama's climate change policies: environmental chief https://t.co/7D8AliQCYM https://t.co/yekmwQPRQy,981119 +@KevinJCoupal1 @b_ashleyjensen I guess we should leave climate change to Arm chair scientists like yourself?,905720 +"BBC - Climate talks: 'Save us' from global warming, US urged https://t.co/2IZuHJfzlk",527327 +RT @EricIdle: I think that denying climate change is a crime against humanity. And they should be held accountable in a World Court.,214262 +RT @Tristan_Kidd: Titanic wouldn't sink in 2016 because there's no icebergs to hit (thanks global warming) https://t.co/q2cCwZdhfl,764356 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,285265 +"RT @NPR: Trump will roll back climate change policies today. In a symbolic gesture, he'll do it at EPA hq. +https://t.co/ZMavwtrcfB",109031 +RT @monkeybeach: Electing a fascist is terrible enough. But putting a climate change denier on the throne now literally threatens our survi…,889920 +Beware a zombie Paris Agreement: Stopping climate change now depends on trusting Donald Trump - https://t.co/eomCTBAB1K,918544 +"RT @Attitudega: Stop global warming, the animals are melting! ภาวะโลกร้อน…เป็นเรื่องจริง ร้อนจนละลาย ภาพจาก: reddit/bwt2017/varric…",345862 +Who gets the climate change risk? The Navy! Ray Mabus shows how businesses can learn from its steps to mitigate risk https://t.co/t3DyCQzV7u,626861 +@ClarkeMicah That strike me as misguided - to prioritise the economy is to ignore the expert consensus on the reality of climate change.,407425 +Students shoot climate change video for PBS project - The Daily Citizen https://t.co/6RCjnmY2EW,112891 +@ryanpendleton @winterlongone @MinoltaXKUser lol im not saying I believe in that or that global warming is fake. Just saying other views,892965 +RT @BraddJaffy: Trump budget director on climate change funding: “We’re not spending money on that anymore. We consider that to be…,500622 +RT @JohnStossel: Trump’s election won’t stop deceitful climate change propaganda: https://t.co/KDfK3N97AD,359206 +RT @ThePatriot143: #AndThen =>German Chancellor Angela Merkel characterized climate change talks with Trump as “very unsatisfying.” https:/…,132398 +How can people still deny climate change?,141932 +General Keys: The military thinks climate change is serious https://t.co/bYudpxm6D8 https://t.co/62PHi1sjTP #ClimSec2016,27158 +@robpertray thats the definition of climate change. there is no difference on that info graph that says its worse now than 1000 years ago,312699 +RT @heynottheface: How does San Diego manage to dodge any major impact from climate change? https://t.co/1hHDINpLPc,641045 +@LeoDiCaprio 'Before The Flood' opened my eyes to the horrors of global warming. Keep making these documentaries until the world is aware,548793 +"Unfortunately the global warming hysteria, as I see it, is driven by politics more than by science. + -Freeman Dyson +.,",614023 +RT @jilevin: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/1hgEfWhO8j https://t.c…,195809 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,462314 +@davidaxelrod So true but @realDonaldTrump is a climate change denier. He is doing everything he said would to the environment.,505590 +RT @TomFitton: Great speech by @RealDonaldTrump. Calls out climate change corruption and cronyism.,475827 +"RT @realJakeBailey: Mankind's impact on climate change. What say you? + +Vote and Retweet",347787 +High level #climate change adaptation panel discussion ongoing. Prof Shem Wandiga says no 'silver bullet for adapta… https://t.co/ONjfzrgTi8,246778 +Man has no significant effect on climate! Hence the name change from global warming hoax to climate change hoax! https://t.co/7G1rtaES9H,974119 +RT @audubonsociety: Nearly half of all North American birds—314 species—are severely threatened by climate change.…,585186 +The Groundhog is a Hollywood construct used to teach young snowflakes about climate change and healthy school lunch… https://t.co/N1v6RZ5d0Q,76203 +RT @CNN: Sanders: I agree with 'overwhelming majority of scientists who believe that climate change is real' #SandersTownHall https://t.co/…,637597 +"If you know where someone stands on abortion or masturbation, you'll know where they stand on climate change' @Brooks_Rob #nswwc",999983 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",465780 +@brianstelter @jimsciutto what does climate change have to with CIA - ZERO just another piece of Corrupt News Network dishonest & fake news.,735013 +"discursive use of climate change to justify the provision of new +military hardware and advanced biofuels' https://t.co/74YQJXL4FW",290151 +"RT @nytimes: The U.S. used to push China to meet climate change goals. After Trump undid Obama's policies, the roles may reverse https://t.…",347870 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/OeFVESAcju,446311 +"socio- media is key in addressing climate change #JustWrite @ ceackenya @paulakahumbu @vcuonbi .It affects us all, let us fight it jointly",408612 +Beautiful #dataviz by @nytimes on future of climate change under trump. https://t.co/7GIxk6maAj #eabds,196509 +@StefanMolyneux dude u think climate change is a chinese hoax. that's all you need to know about yourself,129739 +RT @BetsyRubin: Tune to @WBEZ at12:40pm (Central Time) to hear scientist Michael E Mann who boldly stands up to climate change deni…,624840 +People don't believe in global warming because it's more convenient for them to not take responsibility for their actions😊,806364 +RT @jamestaranto: I blame global warming. https://t.co/tN1jnNYS3P,616197 +RT @ABC: Biden urges Canada to fight climate change despite Trump https://t.co/a55uP6ouFh https://t.co/1RDuWYS7yt,376651 +7 things NASA taught us about #climate change https://t.co/DHIPMK4QT6 https://t.co/gqy6g9Kk8t,568226 +RT @thehill: Trump set to dismantle Obama climate change agenda: https://t.co/PSQmZCn8YQ https://t.co/OTUFU6bAXB,51453 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,646773 +"RT @arguertron: global warming is real, and caused by humans",462459 +"RT @telesurenglish: To curb climate change, we need to protect and expand US forests https://t.co/hSXtGqqdNN https://t.co/Egl5whkrDi",932633 +RT @USFreedomArmy: Or maybe it is just that the global warming nuts are being given a sign. Enlist with us at https://t.co/oSPeY48nOh.…,420183 +RT @Medact: Record-breaking climate change pushes world into ‘uncharted territory’ - WMO figures released today https://t.co/LkQz47uxB2,992903 +"RT @narendramodi: Talked about issues such as avoiding conflicts, addressing climate change and furthering peace.",968742 +RT @CNN: Judge orders Exxon to hand over documents related to climate change for probe into whether company lied to public…,345859 +@destiny_113 @GMA Crazy for believing in the truths of climate change and the lasting repercussions?,890862 +@marcusbrig But what do they have to help repel fascists? Does bug spray work? Do solar panels work on climate change deniers?,674121 +RT @ajplus: Indigenous activist Xiuhtezcatl Martinez is suing the federal government to demand action on climate change. https://t.co/PnjHO…,268219 +RT @kurteichenwald: Conservs can keep pretending climate change is a hoax but other countries arent gonna be putting up with it anymore. ht…,7655 +RT @wef: Are these the innovations that will save us from climate change? https://t.co/Ll3k7tYxKy https://t.co/Yctc9jcCiR,497236 +@JennyForTrump - Aren't these the same folks always yelling about climate change and protecting the environment?? LOL,186163 +Everyone should go watch Leonardo Dicaprio's documentary 'before the flood' it showcases extensive research on climate change,706987 +@Newsday he should walk to German. I guess he doesn't give a f*<k about carbon footprint and global warming.,128531 +Trump's energy staff can't use the words 'climate change': https://t.co/CDkCs7vf7L,315675 +@RY_dinDiiRtY some people are color blind 😳😳 (I believe in climate change btw),746780 +RT @rosellaphoto: Ignore global warming & we're ALL FIRED #marchforscience #marchforsciencesf https://t.co/ohDYQfvdUc,968654 +"China eyes an opportunity to take ownership of climate change fight https://t.co/Vfw0rrinFZ #itstimetochange #climatechange, join @ZEROCO2_;",252133 +RT @KirstySNP: DUP MP says their climate change position is in their manifesto. There's no mention of climate change in their manifesto...,53344 +RT @relatabledinahj: Dinah with puppies could cure global warming https://t.co/6sNyzvHJF8,933095 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",161392 +Unamshow awache kujinga na iko global warming https://t.co/mhIflU7M1X,694317 +RT @yourlru: Our next president is a rapist that steals money from children with cancer and thinks global warming is made up :),682757 +@BlackPsyOps did you know Rothschild stole $67 trillion from Barack Obama climate change in 2012.JEWISH MAFIA ROBBED ALMOST 50% OF U.S.,583969 +Join @Ecotrust this Thursday to learn about Paul Hawken's plan to reverse global warming! https://t.co/kRAIRLk1gt https://t.co/SHBJy1HUD0,230320 +Some Trump supporters just went back in time and caused global warming making this Samurai sweat https://t.co/INGLJCzJH4,927233 +Australia's military has been training for climate change impacts for years. Conservative politicians denying clima… https://t.co/l0OmXcTAm5,702609 +RT @guardianeco: Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/nalBHXyaKY,449579 +Now 'climate change' blamed for causing PTSD... https://t.co/JxEp87XY42,52493 +"RT @Education4Libs: The only climate change there is, is the climate that has changed in Washington. We now have a President who is putting…",275488 +"Catastrophic storms, once rare, are almost routine. Is climate change to blame?: LA Times… https://t.co/IUk0FWbv9x",308521 +RT @jjvincent: trump's position on climate change will kill the planet (faster) https://t.co/U5jiKHXZkQ,960368 +RT @NewYorker: The U.S. government’s meaningful participation in the fight against climate change appears to be at an end:…,275530 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/bv4ov9FWZc,833217 +"if global warming doesn't exist, HOW AM I STILL ABLE TO WEAR A TANK TOP AND SHORTS WHEN ITS ABOUT TO BE DECEMBER ???!!?!!!!!?!$)!!?):&&3:929",800449 +Washington Post editorial board has it right: There’s no conserving nature without tackling climate change… https://t.co/mCxpUgcSTt,244138 +RT @WhipHoyer: Alarmed by questionnaire from Trump transition team seeking names of civil servants wrking on climate change policy…,642606 +RT @altNOAA: The Bernie Sanders/WV town hall on MSNBC this evening was interesting. Coal miners extremely concerned about climate change. G…,370237 +"For the first time on record, human-caused climate change has rerouted an entire river https://t.co/z1O54kD0xm",36966 +".@Juliansturdy Please don't let the DUP call the shots on abortion, gay rights or climate change. #DUPdeal",12748 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",465047 +RT @USFreedomArmy: Man-made global warming is still a myth even though they now call it climate change. Enlist ---->…,688977 +RT @TheNewThinker: I just wanted to post this and remind everyone that we are putting a climate change denier in the White House https://t.…,843598 +Even Donald Trump will not have the power to change the laws of physics. He will have to accept climate change.'#COP22,790157 +"When POTUS does not believe that climate change is real, it is very chilling. Pun intended..#ParisAgreement https://t.co/0KUnioO68V",242160 +#OurWild can’t wait while Washington denies climate change. Join the #ClimateMarch April 29. https://t.co/rZ08IdlY0N https://t.co/SBLPEUZMPS,628826 +This photographer is documenting the unparalleled beauty—and effects of climate change—in America's national parks https://t.co/eZF4TmcsRB…,446288 +RT @thelollcano: Your MCM denies climate change despite empirical evidence,322424 +630 of America's biggest companies are pleading with Trump to give up his climate change denial https://t.co/CJyvdWMHKr,803087 +"RT @thinkprogress: Trump's latest proposal eliminates all spending on clean energy and climate change +https://t.co/yAWZ3sdxwT https://t.co/…",634079 +some law prof. from UMich tried to tell me that climate change was an 'elitist problem' & that 'real people aren't… https://t.co/V7ZmRd8BGq,825627 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,961667 +"RT @PattyMurray: I'm very concerned w/ the nomination of Rick Perry to lead the Dept of Energy w/ his past statements on climate change, ti…",33808 +"RT @Conservatexian: News post: 'Trump scrubs climate change from https://t.co/w7krTPN3Nl, replaces with 'America first energy plan'' https:…",198272 +"$XOM: New York, probing #Exxon on climate change claims, says Sec. of State Rex Tillerson used alias as @APBusiness https://t.co/0Tezwxo8bP",990123 +"Two major conferences on corporate governance, climate change to be held https://t.co/jCulaA5zmj",469488 +"THE INDIPENDENT - Unsung heroes of 2016: An escaped sex slave, an LGBT rights campaigner and a climate change poet https://t.co/BOVJpcIXpU…",463957 +"Trumps head of epa, Mr pruit, doesn't believe in global warming so why is vw paying anything in damages in america,",880361 +"RT @Water: 'water security is closely linked to migration, climate change risk, and economic development' https://t.co/pC2buYcMpB via @circ…",584773 +RT @GadSaad: I hope that @BillNye will soon weigh in on the #manchesterattack & explain how it is plausibly linked to climate change & sola…,374553 +@theblaze The global warming crowd are the same people who deny that an unborn baby is a human being so science and… https://t.co/vRrdU39XtW,183275 +"RT @Renee_Brigitte: Crippled Atlantic currents triggered ice age climate change +@j_cherrier #bc_ocean2017 +https://t.co/GwQOz55nqX",113375 +"Physicist - CO2 does not cause climate change, it RESPONDS to it - Video https://t.co/lySZb7gClh",190844 +My riding's MP is giving a talk at my school today on climate change. Such a joke. This ocean protection initiative is just a distraction.,795230 +"RT @PeterGleick: Some don't like scientists talking re #climate change during disasters, so before #Irma strikes: Caribbean water te…",444102 +"RT @decentbirthday: [camping] + +me: why can't i find any animals + +wife: the wildlife is very conservative here + +deer: climate change is a my…",259635 +"RT @SteveSGoddard: To be fair, @algore has made a fortune pushing his global warming scam. Leo may be on to something. https://t.co/k2MK56w…",497056 +"RT @BoF: The world has 3 years left to act on climate change, say experts. How could this impact fashion? https://t.co/VmMKE71LwZ",205201 +Philippines' Duterte signs Paris pact on climate change - Reuters https://t.co/gMWQynpVt2,830570 +"Weber-Davis environmentalists group hopes to encourage citizens to push Congress for action on climate change. +https://t.co/hPWpeSbLoG",177632 +Switzerland wants to save a glacier from global warming by literally throwing cold water on it https://t.co/xtezxfITfC,874661 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,204768 +RT @tweetskindeep: Do you work in food and climate justice? We want to hear from you about the impact of climate change on out food cu…,426709 +@LucasHadden i'm saying the new york times saying climate change is a leftist idea is.,666101 +I swear if y'all could blame LeBron for global warming y'all would,728666 +RT @WorldfNature: Bloomberg urges world leaders to ignore Trump on climate change - Chicago Tribune https://t.co/28bqezZV9B https://t.co/j3…,622683 +Vice president Al Gore at NetRoots 2017 talking climate change https://t.co/c5Hee9QnNG,539304 +"@CurleySueView Indeed,due to global warming...! ��",490246 +RT @anipug: If you don't believe in climate change please unfollow me,862832 +"Duterte:After much debate, 'yung climate change (deal) pipirmahan ko because it's a unanimous vote except for one or two. (via @ABSCBNNews)",91092 +"RT @ImranKhanPTI: President Trump's decision to pull US out of the Paris Accord on climate change reflects a materialistic, selfish & short…",629284 +Glad more of the coast can be swallowed up by coastal flooding as we allow our environment to deteriorate further and deny climate change 🙃,581779 +@ichiloe @KHayhoe scary. just scary when large masses of people cannot understand simple things like climate change,767922 +RT @FijiPM: PM invites President-Elect @realDonaldTrump to visit Fiji and see effects of man-made climate change for himself…,207825 +RT @YEARSofLIVING: Scientists highlight deadly health risks of climate change via @CNN https://t.co/X1IYWkUy6D #ClimateChangesHealth,488877 +RT @MsMagazine: Women of faith are mobilizing for renewable energy and environmental protections that slow climate change:…,290673 +"meanwhile, climate change https://t.co/MmCMZQvBlM",587933 +Here's what President Trump's climate policies could mean for global warming https://t.co/9Wzl3vzVKc https://t.co/S1inc66aZV,12343 +RT @businessinsider: National Park deletes factual tweets about climate change amid Trump crackdown on agencies https://t.co/uGpirOjEjn htt…,991667 +RT @bertieglbrt: this evening's activities: i tickled my girlfriend while pretending to be leonardo dicaprio explaining climate change,366178 +"RT @alfonslopeztena: Even @FoxNews is ripping into Trump's EPA chief for denying the basic science of climate change. +Watch—> +https://t.co/…",990370 +China takes more of a lead with climate change efforts in the Pacific .. https://t.co/rWcDCrqRSC #climatechange,345018 +RT @RaheemKassam: World leaders duped by manipulated global warming data https://t.co/Lx7phvN17F,900182 +RT @Crof: Oh boy: Trump’s Climate Contrarian: Myron Ebell Takes On the E.P.A. https://t.co/JhAxWaoQos #climatechange? What climate change?…,23133 +Fabulous! Leonardo #DiCaprio's film on #climate change is brilliant!!! Do watch. https://t.co/7rV6BrmxjW via @youtube,813652 +"The issue offers our liberal shepherds no opportunities for virtue signaling on capital punishment, global warming… https://t.co/1zob4zK6Bz",155474 +RT @backpackingMY: Negara paling rendah di dunia adalah Maldives. Dijangka akan tenggelam kerana global warming pada suatu hari nanti. Jom…,265814 +"Tens of thousands #marchforscience, against Trump's threats to climate change research https://t.co/B1gDFMLzBo via… https://t.co/XTzNBTmpWP",976781 +"Exxon played us all on global warming, new study shows https://t.co/F2pin7rUn7 #media #articles",853893 +RT @Greenpeace: 7 things you need to know about climate change: https://t.co/yvrSubXBk2 #ClimateFacts https://t.co/9Nu2HRvSNj,125784 +"RT @PublicHealth: How climate change affects your health, in one graphic: https://t.co/Bd4DfhRUww #ClimateChangesHealth https://t.co/99j3W0…",722067 +"RT @actionskills: Communicating climate change: Focus on the framing, not just the facts @ConversationEDU + https://t.co/iECoV6FOMI https:/…",203641 +"Chilling: +1. Trump wants to divert NASA $$$ from climate change to space exploration +2. Thiel wants to colonize space for libertarian utopia",455687 +pls don't tell my global warming isn't real when the high today is pushing 90 degrees 🙃,21780 +"RT @APWestRegion: California Gov. Jerry Brown & predecessor, Arnold Schwarzenegger, hail climate change plan while condemning Trump…",739736 +RT @PakUSAlumni: How does climate change affect economies? Debate underway in @ShakeelRamay session #ClimateCounts #ActOnClimate…,663336 +@IvanTheK I did get duped into climate change denial twitter... never going to do that again!,669160 +"For the first time on record, human-caused climate change has rerouted an entire river - The Denver Post… https://t.co/yKV9cIFWwh",99220 +RT @PolticsNewz: Donald Trump actually has very little control over green energy and climate change https://t.co/wVzo7RzD1Z https://t.co/OT…,736519 +"After 4 great talks at #AfricaIn2017, Q&A begins. Regional cooperation, role of cities, and consequences of climate change discussed.",162533 +"RT @VABVOX: Yaass queen. + +Ivanka from Brighton sends climate change reply to Donald Trump https://t.co/MgpVFt7iZf",272392 +RT @jimsciutto: .@JustinTrudeau mentions US-cooperation on climate change - perhaps a subtle message to new POTUS?,809568 +"RT @AMKlasing: El Niño on a warming planet may have sparked the Zika epidemic, scientists… https://t.co/9p8NmcKPgP",408446 +"RT @washingtonpost: Steps to address climate change are 'irreversible,' world leaders declare in Marrakech https://t.co/ca9MfMSnXO",293618 +RT @BobTheSuit: Adult me must concede that a major contributor to global warming was kid me leaving the front door open and heating the who…,614427 +"RT @postgreen: In Greenland, a once doubtful scientist witnesses climate change's troubling toll https://t.co/1opgXzLdch https://t.co/cvSL6…",448949 +RT @Picswithastory: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/rgj37bMaRQ,434123 +Australia PM.s adviser: #climate change is #UN #hoax to create new world order https://t.co/EMrSUJPoOu #global #warming #NWO #newworldorder,694186 +RT @austincarlile: Maybe all of you that don't think climate change is real will disagree with this one too: https://t.co/qYAyKysi84,480120 +"AI will make farming immune to climate change by 2027, say Microsoft researchers https://t.co/bMARTDx9yI https://t.co/gTdHHTnA2m",343589 +@patrick_winderl I just heard just now that Trump has named a climate change denier from Oklahoma as head of the EPA. Name is Scott Brewer--,595575 +@chaamjamal When eco-warriors blame Bangladesh flooding on climate change they fail to recognise part played by cut… https://t.co/6yNFMCVUqx,880717 +RT @THEHermanCain: Slipped into unrelated story: AP labels Trump EPA choice Scott Pruitt a 'climate change denier'…,302744 +"RT @robreiner: Stops Nat'l parks from informing on climate change,lies about the election. DT is a sick childish embarrassment destroying o…",631761 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",706535 +"RT @antonioguterres: I call on world leaders, business & civil society to take ambitious action on climate change. https://t.co/wl19gZYecm",121619 +Sea levels 'could rise higher than a three-storey building due to climate change' https://t.co/Hee8NeKOtl,177940 +"RT @ClimateTreaty: Without action on climate change, say goodbye to polar bears - Washington Post https://t.co/8C3JHS7v9m - #ClimateChange",94004 +"RT @ClimateRevcynth: February’s record warmth, brought to you by climate change https://t.co/Gz7cVqOOSA @ClimateCentral https://t.co/Hh4Lrc…",300637 +RT @Lisa_Palmer: A new app helps you make connections between NASA satellite data and global warming in your backyard. https://t.co/IndG7EQ…,324458 +Sadly my parents are those people who think climate change isn't a problem and voted for trump,336980 +@GolfDigest I'd love to see Trump 'scuffing' at global warming! #golf #proofread,3151 +RT @HuffingtonPost: China to Trump: climate change is not a Chinese hoax https://t.co/3DVlIwAqjb âž¡ï¸ @c_m_dangelo https://t.co/y1ZqEW8Hcv,390611 +@guardian The failing of renewables will boost the finite unrenewablies contribution effect on climate change bigly. Enjoy @realDonaldTrump,336024 +"RT @CulinarianPress: This is how technology can help us fight climate change + +Swedish supermarkets replace sticky labels w/ laser marking h…",811013 +"RT @jasonnobleDMR: Make no mistake: this is a tough crowd for @joniernst. Many of her talking points on health, climate change are being me…",920143 +"RT @StopTrump2020: However, since Trump tells us climate change is just a #ChineseHoax I guess I don't have to worry #LiarInChief… ",824716 +"RT @CECHR_UoD: An ingenious solution to climate change - turn CO2 into fuel +https://t.co/L5woHlHLjO HT @zeekay15 https://t.co/FgRduedKLa",453544 +Ice age climate change https://t.co/7WWPUQQ6Lf,368830 +@sendboyle @realDonaldTrump nuclear war is a bigger danger than climate change https://t.co/8rY6PJxQci,556824 +"RT @MLCzone: 'France, U.N. tell Trump action on climate change unstoppable' - https://t.co/y6AR72MDvw",744397 +@RogerPielkeJr ... seeing what you have gone through in the climate change world has been eye-opening and disheartening,647697 +"climate change deniers, young earth creationists #madasaboxoffrogs https://t.co/oaM1aEBlxb",539985 +"The new normal of weather extremes On World Meteorological Day, DW provides an overview of how global warming is…… https://t.co/4oJ5aYhKUq",399389 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,715168 +"RT @jonaweinhofen: Reminder- eating meat means you fund animal cruelty & slaughter & deforestation, global warming, species extinction…",784741 +NY Attorney General uncovers email alias used by Rex Tillerson to discuss climate change at Exxon https://t.co/Ne9HWaYFE9,117318 +"Estados Unidos: Elite US universities defy Trump on climate change, , https://t.co/L81zn0aS3B",568817 +I still have a hard time understanding that some people do not believe climate change is a thing,377392 +RT @Fusion: Peru is suffering its worst floods in recent history—and some scientists say global warming is to blame: https://t.co/y2yJcShEOl,111643 +RT @LanaDelRaytheon: ⠀ ⠀ ⠀ �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� howdy. i'm the climate change sheriff. yo…,8723 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,262101 +Sure doesn't feel like global warming out there today.,551225 +"By 2030, half the world’s oceans could be reeling from climate change, scientists say https://t.co/heH1nBMhE4",377121 +RT @JGale363: Thomas Stocker technology is necessary to solve climate change- CCS is one of those technologies #GHGT13 #ccs https://t.co/8m…,388278 +RT @GlblCtzn: The mayor of Paris has a simple solution to ending climate change – put women in charge. https://t.co/tI44nqnudE,387855 +"RT @HarvardChanSPH: Watch live on February 16 as @HarvardGH, @ClimateReality discuss climate change and health https://t.co/M7sIJxu3k0… ",396758 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,821375 +"@DemocracyNow Correct!!! +How many ideas on combating climate change been offered from either of these poor candidates? +Neither Dares Address",307577 +Amazonians call on leaders to heed link between land rights and climate change - The Guardian… https://t.co/OcuiDZ38IF,11874 +RT @BraddJaffy: 'You and your friends will die of old age and I'm going to die from climate change.' https://t.co/Yl2oSriNbs,152947 +physorg_com: New research predicts the future of #coralreefs under climate change https://t.co/GVM16vPpAE,373196 +"RT @GeorgeTakei: 1 day before the #climatemarch, Trump administration removed climate change pages from the @EPA website. + +This is y…",681799 +RT @Destroyingvines: When you accept climate change and move on with your life ⛷️ https://t.co/8MvqkGySHc,195033 +& the ones who care about all of these mass animal extinctions/global warming/world hunger yet won't do the one bes… https://t.co/IT02GFQ1FK,470515 +"@DC_Resister_Bee @realDonaldTrump Kind of like 'nobody really knows for sure' if climate change is real. + +Welcome to the world of #LowT.",542193 +Invention News(6)-New virtual Reality Games/Nose shaped/Mushrooms/global warming...Must watch: https://t.co/wi6CG2hUT9 via @YouTube,786188 +Scientists in search for 'Goldilocks' oyster to adapt to climate change https://t.co/UXTDEA7dZ9 via @ABCNews,952036 +@ClimateReality @KHayhoe I agree but your framing is bad. Saying clim change is fact only reinforces the 'truth question' of climate change.,782706 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,232723 +RT @FreeFromEURule: @onusbaal2015 @can_climate_guy Dear climate alarmists. The sun is the driving force of climate change.always has be…,443670 +RT @motherboard: New simulations predict the United States' coming climate change mass migration: https://t.co/DkxlOtgNlk https://t.co/pY4J…,685079 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",276015 +RT @TLDoublelift: if global warming isn't real why did club penguin shut down,373750 +"@doncollier predjudice? That he feels that Brexit, climate change and lack of privacy are bad? Where's the predjudice there? @arusbridger",956265 +"RT @MichelleBanta3: @attn @billmaher It's global warming that the Republicans think doesn't exist , yet they believe Jesus made blind men s…",847491 +RT @Pete_Burdon: Trump given short shrift over climate change threat https://t.co/nkOHA1dEu4 via @FT #COP22,511736 +This whole winter weather debacle is only further proof that going with the name 'global warming' was a very poor branding decision. #pdxtst,301549 +RT @RheaButcher: People who think climate change science is a hoax out here screaming about biology-defined sexes,491260 +Biodiversity loss shifts flowering phenology at same magnitude as global warming #ResearchAndDevelopment https://t.co/KBWWgiIwCy,502197 +Was super excited about the @BillNyeSaves series but turns out it's just his soapbox for political views and climate change. #Disappointing,972927 +RT @Davidxvx: Great to hear @jacindaardern describing #climate change as this generation's equivalent of the fight to go nuclear free. Trut…,740869 +"RT @siddharth3: Do you have any questions on energy and climate change that you'd like answers on? I'm compiling questions for writing. RT,…",519113 +Trump names climate change skeptic and oil industry ally to lead the EPA https://t.co/AhStZnMVcz #ImWithHer,573875 +RT @MrAlan_O: @GeorgeTakei @attn @GeorgeTakei Trump will get global warming when his ice cream melts faster than his hot dog cool…,858962 +"RT @LindaSuhler: Left loves Everlasting Gobstoppers like climate change they can tax/regulate in perpetuity. +Bad water in Flint? Eh. +It too…",528969 +"I don't like this whole global warming thing. If you're going to destroy a planet get a Death Star and do it, don't make them suffer. +-Vader",570551 +RT @KHayhoe: Has Trump made people care more about climate change? This May @ecoAmerica survey suggests the answer is - MORE! https://t.co/…,883034 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,169392 +Jerry Brown: California 'ready to fight' Trump on climate change https://t.co/fYEHB86b5u,269695 +RT @EnvDefenseFund: Is global warming real? A 30 second answer. https://t.co/dNGbBcBk6Y,47454 +"I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood +https://t.co/NGGY8jVtVC",391822 +"#Wisconsin people, climate change is real Vote #democrat Stand against @PRyan and show him actions speak louder https://t.co/sic6JdCyTw",628083 +"RT @washpostbiz: Record-breaking climate events all over the world are being shaped by global warming, scientists find https://t.co/LNTDTh8…",644328 +RT @pferal: That's his most palatable quality! He's a hunter pal of the Trumps who denies climate change+is a glutton for oil d…,436950 +Trump poised to undo Obama actions against climate change https://t.co/yVnAcyMH2J,26551 +RT @FAOstatistics: Norway to boost protection of Arctic seed vault from climate change https://t.co/6fvmfH8JcD,647139 +"Record-breaking climate change pushes world into ‘uncharted territory’ + +https://t.co/3Yem7OZjIO",179680 +@marcherlord1 Bird shit and tree sap is global warming?,363692 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",483048 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,540983 +@TheFacelessSpin Both carbon emissions and non-climate change air pollution drive health impacts. Both of which are… https://t.co/ekev462Wgo,788092 +What global climate change may mean for leaf litter in streams and rivers: … greenhouse gas… https://t.co/xw6kRtO6zs,205106 +RT @wittier: 'Where should you live to escape the harshest effects of climate change?' https://t.co/fFNVgTIF4m #SCIENCE @cindyc… https://t.…,785011 +@pestononsunday @jeremycorbyn Do you think Climate Change is our biggest challenge? What should UK's role in tackling climate change be?,33426 +"RT @BethR_27516: LOL!! 😂😂 +Hint: if u don't get the joke, u should STFU about climate change being a 'hoax'. And take a damn physics… ",338299 +RT @thehill: Energy Dept. tells employees to stop using the phrase 'climate change': report https://t.co/YWH82assdW https://t.co/ARsk0LFF2g,240223 +"RT @Ch2ktuuWX: Majority of Alaskans believe climate change is happening, according to a Yale report. Check out the interactive map…",514220 +"@realDonaldTrump Please reconsider your view on climate change. Global warming is a serious issue, and cancelling our deal with 160 other(1)",767021 +RT @MotherJones: Donald Trump's interior secretary pick doesn't want to combat climate change https://t.co/GfdXNzADYl,458376 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,871950 +RT @TheMarySue: The EPA has apparently been ordered to pull climate change data while their gag order is in effect. https://t.co/QzVufTpmjE,648034 +RT @thehill: California signs deal with China to combat climate change https://t.co/IL7NU32w0H https://t.co/eVDR3t5XdS,302254 +"New head of the EPA is disputing climate change scientists over the cause of climate change. +The head of the EPA +Who denies climate change",638987 +RT @FastCoDesign: Donald Trump can deny global warming; cities can't https://t.co/LgvHdgL1cI #cityoftrump,543051 +Koalas don't like water but they're being 'driven to drink' by climate change https://t.co/tj3NDWFHr1,518964 +RT @EricBoehlert: fighting climate change has become the new background check bill: everyone supports it except GOP members of Congress,205963 +"BlackRock to put pressure on companies to focus on climate change, boardroom diversity https://t.co/Md35lKtODL",895438 +RT @HuffingtonPost: Swedish politicians troll Trump administration while signing climate change law https://t.co/zGy9jrVL6c https://t.co/n9…,838812 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,396598 +RT @Picassokat: Rex Tillerson's ExxonMobil is planning for global warming but he will do everything humanly possible to stop his country fr…,9385 +Is this what global warming feels like it's the middle of dec where's the cold? it's 75 out wtf mate #globalwarming,53503 +"We don't need a wall, we need actual...maybe walls around Houston, to make sure that climate change doesn't swamp it...!!!' @JamilSmith ☝��",857881 +Nature-based solutions (i.e. managing watersheds) can provide ~30% of the solution to limiting global warming to 2°C https://t.co/3zQVTaWD2A,899149 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,983942 +"RT @EnvDefenseFund: If you’re looking for good news about climate change, this is about the best there is right now. https://t.co/ludJsGUlJm",717325 +business: Bison returned from the brink just in time for climate change https://t.co/QNMtfnjrWv via climate … https://t.co/h7bEu2GEGb,193613 +But global warming isn't real right? #fools https://t.co/3Ru7Cts5Id,287333 +@catrincooper @leahmcelrath climate change is affecting us NOW and I fear the president elect doesn't take any of it seriously.,242144 +"RT @stillawinner_: - why are you naked? +- global warming",966042 +@plough_shares You should buy Honest Howie Carbon Credit to stop global warming,167148 +i will shut up about climate change once we stop electing anti-science politicians,3451 +...it's ok don't worry @realDonaldTrump says climate change is not real! https://t.co/LDDEYPuBs8,223188 +RT @jimalkhalili: Global mean sea levels have risen 9cm in my children's lifetimes. But probably just some climate change conspiracy…,571929 +"If you're looking for good news about climate change, this is about the best there is right now - Washington Post https://t.co/Mt8V1ksRZs",484537 +That's global warming for you! https://t.co/Cn7BpMnzoy,261371 +"RT @Snitfit: @TIME mag's 51 climate action suggestions in 1977 were so effective, they caused global warming in 40 years. �� https://t.co/jm…",333480 +RT @World_Wildlife: Saving forests is crucial to fighting climate change. WWF's Josefina Braña-Varela blogs for #BeforetheFlood: https://t.…,717182 +"RT @CECHR_UoD: Eating less meat essential to curb climate change +http://t.co/J3gbSv5HDU not veggie - just less will do http://t.co/jakVKabE…",18369 +"@lisaschroder21 considering science unanimously agrees that climate change is happening, that's a ridiculous and baseless statement",239212 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,713047 +"@karengeier @DolanEdward @IzzyKamikaze Well ACTUALLY Paul I think what's more concerning is run away global warming, rising sea levels and..",896499 +"Google, Amazon, Facebook, Microsoft and Apple all commit to Paris Agreement on climate change -... https://t.co/ysh23Plfub",19234 +RT @WorldfNature: Great Barrier Reef is A-OK says climate change denier as she manhandles coral - Mashable https://t.co/BfBSalv3bF,576063 +RT @DebErupts: California is a global leader on environmental issues. While other states debate whether or not climate change is real. #Cal…,865976 +RT @NYTScience: This is one effect of climate change that you could really lose sleep over https://t.co/aVFdK0MvFc,865858 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,214133 +"@Jrhippy @VP @POTUS @GOP and even if climate change were a hoax, do we still want the pollution that an upsurge in coal will bring?",7500 +RT @thehill: JUST IN: Trump admin refuses to sign international climate change pledge https://t.co/IMyC8QCbky https://t.co/pbTshtz1ru,461792 +and Trump doesn't think climate change is real!!!!!!!! https://t.co/ukUycBkpBS,909060 +RT @thehill: Trump EPA chief calls for televised climate change debate https://t.co/1CfnpHuwXB https://t.co/hDfSNgUSMA,896636 +@ciccmaher @AbbyMartin Number of people screwed by climate change - -9 billion+,923236 +I support the fight to prevent climate change disaster. Will you join us? https://t.co/i6qbH0kQ0b via @nextgenclimate,363209 +RT @UWE_GEM: Talk on 15 June - Society vs the Individual: focus on air pollution & climate change. Book tickets here https://t.co/Eg1Kfnvzm…,943350 +RT @PolitiFact: Energy Secretary Rick Perry wrongly downplays human role in climate change https://t.co/n5Zh144CPa https://t.co/GHxyIgjnnO,23718 +@stevebloom55 me too I 'm in panic about climate change then I m searching for consistent market driven solutions… https://t.co/cLzHkCmeCe,732753 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,436406 +Did a “landmark paper that exaggerated global warming” trick 195 governments into signing the Paris climate deal? https://t.co/R7WW2b3KyA,226552 +"RT @JamesMelville: Pro fox hunting & death penalty +Denies climate change +Opposes gay marriage & abortion +Paul Nuttall: Poundshop Trump htt…",995707 +"RT @tomgreenlive: This sucks - In executive order, Trump to dramatically change US approach to climate change @CNNPolitics https://t.co/9wD…",860633 +I'm genuinely concerned that we let a man into office that doesn't believe in global warming and thinks it's a Chinese scam??????,283389 +RT @EBAFOSAKenya: #Ebafosa through #InnovativeVolunteerism is changing Kenya's climate change adaptation & economic landscape by inve…,828750 +@HealthRanger the earth is flat and climate change is not real and does not matter.,750985 +RT @NRDC: He claims the planet is cooling and questions climate change. Who is...our next energy secretary? https://t.co/h5aTqEFbUg,10691 +RT @newscientist: Trump could land fatal blow to the fight against climate change https://t.co/zPo0wntgIb https://t.co/FBIaQwPsur,968989 +"RT @erasmuslijn: You can't dispute science. We know for a fact that: +- global warming is real +- trans people exist +- the proletariat will b…",283169 +RT @Anthony1983: A poem I wrote for @TheCCoalition on climate change. Directed by Ridley Scott Associates with @Elbow & Charles Dance https…,479441 +"RT @BadAstronomer: Deniers gonna deny, but new research puts the last nail in the coffin of the global warming “pause”.… ",49000 +"While global warming has affected the whole planet in recent decades, nowhere has been hit harder than the Arctic. This month, temperatures",895112 +RT @KimKardd: We have to face the reality of climate change. It is arguably the biggest threat we are facing today.,89198 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,731498 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,873492 +RT @harvestingco: Adapting agriculture to climate change https://t.co/J10Z89ebfZ @FAOclimate https://t.co/2cAdYghyZb,748686 +RT @guardianeco: Shareholders force ExxonMobil to come clean on cost of climate change in 'historic' vote https://t.co/AG77Gz1dbG,493732 +"RT @LloydDangle: I was honored to do two days of scribing about climate change for @InstituteatGG, #teachclimate! http://t.co/D2fkAxis5w",666504 +Thick girl weather damn near nonexistent thanks to global warming,291794 +"RT @SeanMcElwee: Everything is on the line in 2018. DACA, climate change, voter suppression and healthcare. + +Turnout rate in 2014 by age: +1…",591070 +RT @ringoffireradio: Did @Scaramucci really just compare believing in man-made climate change to believing the earth is flat?…,399545 +"RT @MattLax21: That's why global warming isn't real, it's just distracting us from the love of Christ - kb",898448 +"RT @prageru: What do scientists actually believe about climate change? #ParisAgreement +https://t.co/46dSJuTPmK",655033 +https://t.co/VYDzfKDQUr China delegate hits back at Trump's climate change hoax claims - CNN https://t.co/NSVR794ZMq,653524 +"RT @AgorasBlog: Nigeria, Biafra, Shi'a, expect this from Buhari & APC: + +Ibrahim Zakzaky, Nnamdi Kanu, climate change and too much rain cau…",933765 +"Well at least climate change is really, really pretty. https://t.co/SdhcmIdlv4",98740 +RT @rawstory: These photos force you to look the victims of climate change in the eye https://t.co/nGWMHaRCZc https://t.co/dUlBydx5gx,701254 +@Orwelldone @thefinn12345 @Toure @nytimes That's why it's called climate change?,460181 +New research points out that climate change will increase fire activity in Mediterranean Europe - Science Daily https://t.co/rv49wquzJ0,750030 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,745890 +"Coral reefs may yet survive global warming, study suggests - https://t.co/O3YYGB0fvs",633094 +RT @JamilSmith: A climate change denier is now in charge of the @EPA. It’s worth noting what employees there did to resist. https://t.co/n8…,885609 +When someone behind doesn't want to go to class because they might 'talk about something stupid and controversial... Like climate change',642211 +RT @AndrewLSeidel: Same guy who said we don't have to worry about global climate change bc in the bible God promised Noah he wouldn't…,893929 +RT @KevinJacksonTBS: So #Obama hid $77B in climate change funds! https://t.co/KAAr0mw7vW #TeamKJ #tcot #teaparty,233330 +RT @PakUSAlumni: Hunzai shares how GB practices collective action for climate change #ClimateCounts #ActOnClimate #COP22 https://t.co/sI72A…,187583 +@matthaig1 @realDonaldTrump climate change doesn't exist.,1778 +RT @Dayofleo57: if global warming isn't real why did club penguin shut down,468742 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",757706 +"@Nonya_Bisnez @wildscenery @iamAtheistGirl LOL, that's not fucking climate change, you simpering baboon.",197401 +"RT @UberFacts: President-elect Trump has selected Myron Ebell, a climate change skeptic, to lead his Environmental Protection Agency transi…",145207 +RT @SeanMcElwee: Here is the column Stephens wrote denying global warming. He should either retract it or NYT must rescind its offer. https…,969010 +Badly misinformed lawmaker thinks our 'warm bodies' may cause climate change https://t.co/P8SLdG6L6e via @HuffPostPol,93645 +We're joining @ClimateEnvoyNZ to hear his presentation on NZ's climate change action. #NZpol. Livetweeting from now.,262801 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",874333 +BBC News - Prince Charles co-authors Ladybird climate change book,593952 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,874815 +RT @BBCParliament: New Labour MP for Leeds North West @alexsobel talks about climate change in his maiden speech. #MaidenTweets…,792528 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,96606 +"RT @UNICEF: Inaction is not an option. We need to act NOW on climate change. RT if you’re with us. #foreverychild, a safe plane…",104081 +RT @MetalcoreColts: Hey its november and its 83 degrees. Continue to tell me that climate change is a myth pls,951844 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,240191 +"RT @MatthewDicks: @POTUS Your action today will pollute our rivers and steams, poison our air, and accelerate climate change. You’re like a…",741518 +@jack_thebean I'd look into @MobilizeClimate. A lot of scientists estimate earth can't sustain 4 years of climate change denial. Scary shit,490704 +RT @skgjnr: A president who sends family members to represent kenyan meteorologists at international climate change forum in Pa…,787476 +"RT @jon_bartley: ‘Flash’ cash for Hinkley, HS2 and Heathrow but not to keep people safe in their homes in the face of climate change: https…",356997 +"Whether or not you believe global warming is real, don't you think we should be taking better care of this beautiful planet we inhabit? 🤔",804006 +RT @UNEP: #DYK about 80% of Greenland is covered by the Greenland Ice Sheet which is rapidly melting due to global warming?…,873876 +RT @tmsruge: Thing is: climate change doesn’t care wether you believe it or not. It’s not a religion. It’s going to happen. Nay.…,623346 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,987897 +"Trump picked Scot Pruit as head of the ENVIRONMENTAL PROTECTION AGENCY this guy doesnt believe in climate change, our planet is fucked",914419 +My latest blog - U-S fossil fuels trumps climate change debate - https://t.co/uZZ0B15Ww8,412157 +RT @TheZachJohnson_: Mugs asked me what my motivation was I said global warming,2028 +"RT @TimBuckleyIEEFA: Fiduciary duties of directors & trustees post Paris COP21 ratification re climate change, a clear legal risk https://t…",605102 +RT @Gizmodo: We're finally going to learn how much Exxon knew about climate change https://t.co/KMum8qmRPf https://t.co/SzORKaDgKg,749238 +"Hear about how youth are leading the fight to prevent climate change at Climate Outloud, Saturday at 2 pm https://t.co/CYQ4zrWJUp",307392 +"I do not believe climate change is a hoax,' Pruitt said. https://t.co/QElh8HsO4c #news #carbondioxide #carbondioxide",397422 +"Canada, let’s fund an archive of Inuit knowledge to help communities adapt to climate change https://t.co/vjUBylZ4Xr https://t.co/WhpV0V9mUb",338237 +RT @4for4_John: Today I argued about the existence of climate change with someone with “skinfluteâ€ in his Twitter handle.,80541 +@billmaher Just watched #Before the Flood...on climate change. Invite Leo DiCaprio on your show.,449512 +"RT @MattBracken48: Next, the libtards will blame too much rain in Cali on man-caused climate change. +It's a religion to the Social... https…",294833 +Heatwave in India due to human induced climate change https://t.co/YbuEE2BJJl!,413620 +"RT @AstroKatie: If you were going to be a single-issue voter, not making global warming even worse would be a good issue to choose. https:/…",387693 +RT @GCCThinkActTank: 'Nobody on this Planet is going to be untouched by the impacts of climate change'. ~ Rajendra K. Pachauri…,450373 +@globeandmail This climate change agenda is being sponsored by the very oil companies who they seek to harm - cap and trade taxation scam,589886 +RT @wef: 7 things @NASA taught us about #climate change https://t.co/Vbwazfhx12 https://t.co/8XA0Yz5WUQ,516932 +"RT @satanicpsalms: Vatican believes humans contribute to climate change: scofflaw exorcists whose pact with Satan raises global temps +https…",581483 +"RT @GYFHAS: @CanadianPM #cdnpoli Isn't @georgesoros the guy who used climate change fear mongering to devalue coal mines, then bought them?",346955 +@donaltc @BirbEgg @mary_olliff @BernieSanders It's from solid state physics. Man-made CO2 causing global warming at… https://t.co/DtV0ycH5D8,734933 +RT @K_Phillzz: I'm baffled by those who consider climate change to be a 'political debate' and not a legitimate concern,288357 +RT @TheGladStork: Maybe baby boomers would take global warming seriously if we told them it was like letting a millennial control their the…,303455 +RT @edwardcmason: Another tremendous @FT piece from Martin Wolf. We need these reminders of seriousness of climate change threat & ur…,224575 +"From Trump and his new team, mixed signals on climate change https://t.co/nc5NuuZc6L",576795 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",15284 +RT @EU_Commission: #COP22: EU strengthening efforts to fight climate change in Marrakesh https://t.co/SEko1T0KcC https://t.co/XDP6ejti18,573941 +If global warming continues at the current pace it will change the Mediterranean regi ... #Tattoos #Funny #DIY https://t.co/w2MCVii09L,919384 +I cannot believe that in this day and age there are still people denying that climate change is a reality. #BeforetheFlood,719494 +RT @WIR_GLOBAL: 630 of America's biggest companies are pleading with Trump to give up his climate change denial https://t.co/ANl7SdKcXy,24551 +"RT @UN: In Lake Chad Basin, Security Council hears of Boko Haram terror + survivors' needs, sees impact of climate change… ",183366 +What does Trump believe about climate change? @CNNPolitics https://t.co/HVLOyyHMwd,336178 +RT @JuddLegum: 2. The argument boils down to: Hillary Clinton lost so climate change might not be a big deal. Excuse me?,634250 +RT @sunlorrie: Remember: We can only save our planet from global warming by giving our governments hundreds of billions of dollars…,609196 +The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/guGttj9fm3,974078 +Energy Department climate office bans use of phrase ‘climate change’ https://t.co/4Xukxp67fR,839965 +"RT @millennialrepo: With lots of talk on climate change, our contributor brings up some good points. +Trump on Paris Climate change https://…",232062 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",924312 +@ruairimckiernan try @ThinkhouseIE who did @BenandJerrysIRL climate change college campaign,575336 +"RT @350Mass: 350 Mass MetroWest Node 'gears up to fight climate change' writes @metrowestdaily #mapoli #peoplepower +https://t.co/JBIgO7entL",124851 +"@CNN @VanJones68 he is still accelerating global warming, pollution & amimal extinction we are screwed",806164 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/y2AvcGqy11,732761 +Why climate change is material for the cotton industry - GreenBiz https://t.co/IlshqGsY1J,500599 +THT - Radical energy shift needed to meet 1.5C global warming target: IEA https://t.co/KmN2x9bRgp https://t.co/zaxwtJt67v,412117 +"RT @thebriancrowe: President Trump just set climate change and clean energy back 30 years. Coal is NOT the future. Shame on you, Mr. Presid…",906349 +RT @sadier0driguez: climate change https://t.co/8ZYUBlwCuT,913803 +If both lower CO2 sensitivity and net positive up to 3 degrees of warming were correct then global warming is not net bad until 2080 to 218,393406 +"RT @RexHuppke: A climate change denier leading the EPA? Finally. I say we can't let a little extinction stop economic progress! + +https://t…",189856 +Reducing climate change with a healthier diet. New study shows... https://t.co/OTwfb1AbKM,310554 +Trump boosts coal as China takes the lead on climate change https://t.co/xNHwgsD4KL,919892 +RT @iamgtsmith: Graham Thomson: Alberta's wildfire seasons to get worse thanks to climate change https://t.co/txpGGgOS4H #wildfire,569801 +"RT @usatoday2016: Ivanka Trump and Al Gore to meet, discuss climate change https://t.co/6FP1Sj5eld via @elizacollins1",817363 +RT @Independent: 11 images from Nasa that show climate change is real https://t.co/0U2eRGX447,440342 +"@POTUS U think climate change regulations kill jobs? Well climate change will kill people, so jobs won't be needed I guess. Do some reading",720834 +Europe getting their ass kicked by terrorists ---at least their doing something about global warming. #LondonBridge #realdonaldtrump #merica,406014 +RT @theintercept: Trump's pick to the run the EPA has led litigation efforts to overturn the EPA's rules to address climate change. https:/…,142478 +RT @CarbonoFinanzas: guardianeco: Paris climate change agreement enters into force https://t.co/r8XBsOU7J0,759688 +RT @GlobalWarmingM: Polar bears and global warming for kids - https://t.co/lmO2CdnbeB #globalwarming #climatechange https://t.co/sl8JGxY4lW,371839 +Michael Gove abandons plans to drop climate change from curriculum https://t.co/vwvw3xXbBJ https://t.co/PYDtaDLAeW,628608 +@kkfla737 I don't think Rubio is gonna lose although I'm not afraid to say he doesn't have my vote. 2017 and still denying climate change👎,488708 +"Beyond believers and deniers: for Americans, climate change is complicated https://t.co/a0MVuXkbgn",498562 +"RT @Murunga_Josh: Watu wa Twitter wanajua kila kitu. Muziki,Michezo,Siasa, Journalism,Comedy,relationships na hata global warming.",43007 +RT @IUCN_Water: Heads above water: how Bangladeshis are confronting climate change https://t.co/LznYccKNq8 via @positivenewsuk #MondayMotiv…,466461 +"@conndawg I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",103442 +"And w/o seeing it: who pushes global warming: Clinton, media, NPR, Colbert, Olympic Committee, and I should trust them? #standupforscience",685532 +RT @brennan_anne_: Please don't forget that climate change is not just an environmental issue. It's also a social justice one,488405 +@SenTedCruz What's G's legal understanding of inequality and climate change THE 2 key issues of our times? The rest of us want to survive,681057 +@jordantcarlson @cblatts did you read the article in question? author acknowledges anthropogenic climate change as… https://t.co/Ceudl2gp94,353092 +"@LiamLy @guardian That should have been climate change, not image change! Doh!",284569 +Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/sFonJ3S2VV,395034 +"RT @randyprine: Trump names Scott Pruitt, Oklahoma attorney general suing EPA on climate change, to head the EPA - https://t.co/9DS39zAmgZ",366099 +"RT @Greenpeace: “I know about climate change. When #climatechange in this place, we are not happy.” Bangladeshis on the frontline:…",577799 +"RT @WalshFreedom: All I want for Christmas is for the Democrats to keep talking about climate change, transgender bathrooms, police brutali…",854121 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",264258 +"This is where changing the term 'global warming' into 'climate change' is helpful. So, CO2 causes colder winters .… https://t.co/garMnnSjzh",349261 +RT @NicoleCorrado16: Court orders New York AG Schneiderman to turn over climate change secrecy pact - Washington Times https://t.co/JcgUcPr…,122095 +"RT @Dazed: Vivienne Westwood lays into Trump over climate change +https://t.co/c7xzYe9XVS https://t.co/1L6Kf6i9y2",910800 +Tillerson may be questioned in probe into whether former employer Exxon misled investors about climate change impa… https://t.co/IYD67VOO3l,638147 +RT @the_jmgaines: Jane Goodall calls Trump's climate change agenda 'immensely depressing' https://t.co/XqrPRM237h,101951 +"@deathpigeon Jack D. Ripper, but for global warming.",309070 +"The economic impacts of climate change will precede and outpace the physical impacts. + +The Carbon Bubble parallels… https://t.co/nYin4ZpWCF",570235 +.@VernBuchanan breaks with @realDonaldTrump & many other Republicans on climate change #ParisAgreement https://t.co/Oo0GnXiZDo,59157 +RT @bani_amor: + *and* contributes to climate change. The Shuar of the Ecuadorian Amazon have been resisting colonialism for centuries. Wil…,669686 +"@BLegendl @Bamanboi this video is bad, it doesnt talk about limited resources and global warming which are actually the biggest problems",558941 +RT @foe_us: Rolling back regulations that address climate change: lowest level of agreement & highest level of disagreement.…,51268 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,991319 +RT @Neo_classico: Let me tell you my view point on global warming considering the #smog show in Delhi recently.Do read and spread this thre…,514870 +RT @BarrySheerman: Green Energy targets are a serious commitment in our bid to tackle climate change is this Govt giving up on fight to sav…,52275 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,44216 +RT @DavidPapp: Kerry says he'll continue with anti-global warming efforts https://t.co/orVqtfN28X,326352 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,930456 +In just a matter of years global climate change has completely eroded the neutrality of conversations about the weather.,837886 +RT @greglovesbutts: If God didn't want us to cause global warming He wouldn't have put all those fake dinosaurs in the ground to test our f…,425286 +"The costs of car dependence, from climate change to fatalities from car accidents https://t.co/0YQbXwzHKo",354627 +"We only have a 5% chance of avoiding 'dangerous' global warming new study suggests... +https://t.co/1Uy0VrGNZb",590555 +not for nothing but timmy turner invented global warming,540462 +"RT @EcoInternet3: #Climate change 'pause' does not exist, scientists show, in wounding blow for global warming denialists: Independent http…",981998 +RT @Slate: The kids suing the government over climate change are our best hope now: https://t.co/uM8hgVKop6 https://t.co/JGJfI28Huh,135020 +Rudroneel Ghosh: Get Real: Why Donald Trump must heed Morocco’s King Mohammed VI’s COP 22 speech on climate change https://t.co/0dbJIkOtNM,981661 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,805343 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,776590 +"@zach_wagz1515 denying climate change, repealing national marriage equality, threatening to ban an entire religion from being here.",700547 +RT @PopSci: Four things you can do to stop Donald Trump from making climate change worse https://t.co/V6o9QJSdVl https://t.co/L34Nm7m1vV,575771 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",810435 +"BBCBreaking: UK government signs Paris Agreement, world's first comprehensive treaty on tackling climate change https://t.co/weKWsyQzHh #C…",107181 +Obamas fiddled global warming data: *Shamelessly Manipulated* - https://t.co/xxfCa8CWeg #ClimateScam #GreenScam #TeaParty #tcot #PJNet,122281 +BREAKING: I just found out that the famed hockey stick graph represents my friend's wife's weight gain and not global warming. Sorry. ��,556956 +"RT @Eric_John: Trump’s budget plan for NASA focuses on studying space, not climate change https://t.co/rz9JhLhSn7",77126 +"If cruises to Alaska stop in October, how real is global warming?",290670 +"RT @KamalaHarris: Let’s use this victory and keep showing up on so many other issues, including climate change, women’s rights & criminal j…",517369 +RT @EnvDefenseFund: These 3 charts show how climate change is the world’s biggest risk. https://t.co/PeQsIFq2EF,808687 +"RT @pewresearch: Science knowledge influences Democrats', but not Republicans', expectations of harm from climate change…",114203 +"If cities really want to fight climate change, they have to fight cars https://t.co/GVOFhgBYAK #itstimetochange join @ZEROCO2_",15842 +RT @AdamsFlaFan: “Trump fools the New York Times on climate change” by @climateprogress https://t.co/o5QSkLVWll,102935 +SecNewsBot: Hacker News - Report shows efforts to fight global warming paying off in the biggest way yet https://t.co/41uhWaheDS,23002 +RT @EnvDefenseFund: Experts fear “silent springs” as songbirds can’t keep up with climate change. https://t.co/ycqDV2R1BV,404865 +RT @BadHombreNPS: Just like you cannot properly run the @EPA if you're a climate change denier who has a hard-on for fossil fuels (Ah…,567081 +Analysis of Exxon and their stance on climate change under Sec State nominee Tillerson. It isn't very encouraging! https://t.co/yXS67ZFJqE,211891 +@AstroKatie You might mention that Hilary Clinton strongly endorses science and believes climate change is real.,619002 +"RT @DavidCornDC: Hey Florida, nice little Everglades you've got there. Thanks for voting for a climate change denier. See you in hurricane…",684757 +"@davidharsanyi @ThomasHCrown It's all they've got. That and climate change, and there you have it. The complete liberal play book.",179146 +RT @pongkhis: *presidents that believe in climate change >>>> 😍😍😫😫😫💯💯👌🏽,935520 +Yeah and Al Gore just said there's no global warming. https://t.co/VDXEmsRm4T,824330 +"We’ve read the Pope’s encyclical on climate change. In case Trump skips it, here's what it says… https://t.co/8JYKQ5Kl7d",150637 +RT @market_forces: Ian Macfarlane sounding like a tobacco exec: 'no direct link between coal mining & climate change' ��‍♂️ #StopAdani https…,119377 +"RT @LosFelizDaycare: White House has deleted LGBTQ page and all mentions of climate change from its website, so we deleted all mention of w…",768227 +RT @ajplus: The White House says climate change funding is “a waste of your money.” https://t.co/XEtr8zRci6,149919 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,669199 +@wonderingwest @Anna_MollyD @X_BrightEyes_X With the climate change of flooded world then maybe? Also how about a love dodecahedron?,185722 +RT @LosAngKorner: Trump could pull America out of climate change deals https://t.co/YREd8K08Dz,336736 +"Polar vortex shifting due to climate change, extending winter, study: +- 'idea...controversial' +https://t.co/2J4RlkU7cd",544432 +when you see the severe effects of global warming and remember you can't swim to save your life https://t.co/6Hona0ejoX,461608 +David Hempleman-Adams urges climate change action after Arctic voyage https://t.co/ThTia6JJdf,543004 +"@Konamali1 @TIME Here is a website which will answer your every misconception about climate change +https://t.co/N739sblyWz",34682 +cuz climate change https://t.co/LSundnw9dY,92880 +RT @AnnCleeves: Terrific. Now Trump has appointed a climate change denier to head up the US environmental protection body.,215890 +BBC News - EPA chief doubts carbon dioxide's role in global warming https://t.co/SOYiNbcBeJ,888835 +RT @alanaarosee: @JulianaaBell that's why we gotta build a wall to keep all the global warming in America and away from Mexico,181401 +"RT @NRDC: This #WorldRefugeeDay, let's remember the victims of climate change. https://t.co/bzkyAOLU4T via @Colorlines",189154 +RT @SkyNewsAust: .@rowandean says climate change 'lunacy' is destroying the natural gifts Australia has #outsiders https://t.co/m6bbqwU9jS,872090 +From 2.30 we'll be live tweeting from the @scotparl debate on Scotland's climate change plan @sccscot #scotclimate,845259 +"nytimes: 'Engineering the climate' may be necessary to curb global warming, portereduardo writes … https://t.co/X5oGTitPPD",218304 +"RT @jorgiewbu: KNOW how the food you buy influences climate change, the products you buy and where you throw them afterwards. Please, resea…",567409 +RT @JTHenry4: I got over the fact that we elected Trump and then I remember that he thinks climate change is a Chinese conspiracy and I los…,399514 +RT @THECAROLDANVERS: liberals are so annoying... have fun working to fight climate change w/ a person who believes climate change is a m…,672209 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",4403 +I helped fight climate change by donating to offset 225 pounds of CO2! https://t.co/x1Eo5R4Svl #climatecents via @climatecents,445740 +I keep doing things like cooking and playing with the kids and reading books and then I remember. I think about climate change.,464276 +RT @genemurry: @wallydebling @hockey_99_11 You forgot climate change. He sent billions to countries you can hardly find on the world map!,886163 +RT @BlessedTomorrow: Is it too late to act on climate change? @KHayhoe explain how you can make a change! https://t.co/z97sbN0sko @KTTZ…,187666 +@kayleighmcenany oh here comes the conservative who care about the environment when most of you don't believe in climate change,160670 +The DUB genuinely say climate change isn't real hahahahahaha they are just Twitter conspiracy theorists,285723 +remember when south park had an episode making fun of al gore for thinking climate change was real,272753 +RT @350: Environment Defenders face the biggest threats when fighting climate change. And they are doing it for all of us: https://t.co/nsq…,170877 +"RT @helenzaltzman: TM: 'We'll bond over our dismissal of climate change and human rights!' +DT: 'In real life she's a 4, but in politics, a…",698764 +"RT @NGRPresident: PMB: We cannot succeed alone. Addressing climate change is a shared responsibility, as its negative impacts are universal…",132467 +RT @TheTruth24US: EPA chief's language on climate change contradicts the agency's website... #D10 https://t.co/pTWwJbqJT9 https://t.co/2rDP…,39110 +RT @KurtSchlichter: The death of the climate change scam is just more icing on the cake. @RadioFreeTom @Dmilanesio,606934 +"RT @IsabellaLovin: Watch, please! 150 years of global warming in a minute-long symphony – video https://t.co/g3toq433FX",17095 +"RT @Greenpeace: Observing clouds is key to understanding climate change. ☁☁ + +Happy #WorldMetDay! https://t.co/jIbBxSHyrM https://t.co/gtRve…",13523 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/iH7nDgh3pc,462723 +NIOZatSea-blogs: #BlackSea2017 #Pelagia studying microbial communities and past climate change… https://t.co/CkzOIPOh0y,389239 +COP22 host Morocco launches action plan to fight devastating climate change | Global development | The Guardian https://t.co/8JsmZ1ZGTD,587505 +Scientists tell Trump to pay attention to climate change https://t.co/v9Hct7wpUz https://t.co/EerEHFpSXG,690523 +RT @WorldfNature: Trump took down the White House climate change page — and put up a pledge to drill lots of oil - Vox…,253146 +"https://t.co/LN7lPFrfpJ +We need all hands on deck to fight those who deny climate change and profit from killing our future generations.",167461 +@AltNatParkSer @NASA I believe in climate change & am extremely proud of youz for finding a way to get the word out. Please stay strong!!,716193 +RT @brianklaas: Citing snow in mid-December as evidence against global warming shows a truly amazing level of scientific ignorance. https:/…,754194 +‘Shell knew’: oil giant's 1991 film warned of climate change danger https://t.co/YmikA747Cg,937593 +@HillsHugeBeaver @sean_spicier @mariclaire81 Love this. Does climate change cut people's heads off??,795201 +RT @blusuadie: When you're trying to enjoy the 70 degree weather in January but you know it's because of global warming https://t.co/xG8zaU…,941129 +RT @fatalitiess: S/o to my bitch global warming https://t.co/D0TNnpmns0,951756 +5 movie classics to inspire your inner climate change activist over the festive break 📽 → https://t.co/Aq9v1TPMBR,541050 +"RT @Impeach_D_Trump: The Energy Department climate office bans the use of the phrase ‘climate change’ + +https://t.co/nsmcKo7KD4 + +RETWEET ht…",676119 +RT @joh_berger: Diet & global climate change https://t.co/ldi52gwGsZ via @ScienceDaily https://t.co/ai7LL4jUoy,383346 +@HillaryClinton the science confirms that global warming and climate alarming are unscientific. Your party is anti science,318732 +RT @DannyZuker: Alt-Right doesn't believe in climate change but has no problem believing in this. #CoolPartyBro https://t.co/5th8ltDsML,177261 +Scott Pruitt preparing a team of climate change skeptics to attack sound science at the agency. @EPAScottPruitt @EPA THIS IS TERRIBLY WRONG,374551 +@CdnEncyclopedia global warming. Oh I'm sorry we changed the name cuz there is no global warming.,335242 +But it's snowing for the first time in 37 years in the Sahara so climate change must be a hoax! #sarcasm… https://t.co/TwpjXMwBP1,669156 +"سچی مچی #KPRisesWithKhan +Billion tree tsunami project, an excellent project by KP government which can reduce pollution & global warming",147257 +"RT @BloombergTV: Trump to drop climate change from environmental reviews, source says https://t.co/VqZFH34Nv4 https://t.co/QTFq62KjxE",631258 +RT @ScariestStorys: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/BOeDIqfVKR,577768 +RT @collinrees: Tim Kaine is demolishing #Tillerson over the fact that #ExxonKnew & lied about #climate change. Rex refusing to answer ques…,556221 +"RT @PCRossetti: .@djheakin Explains that there are good solutions to #climate change, but environmentalists are blocking them. https://t.co…",172964 +"RT @SierraClub: Grizzly bears taken off the endangered species list, despite signs that climate change is threatening their survival https:…",767518 +@_SpectrumFM_ and I'm worried marching Earth Day will activate people's partisan identity wrt to climate change and alienate some 2/,905221 +@DailyCaller @GAAnnieLonden If humans had caused a global warming it would be impossible to stop. As geography goes… https://t.co/g4EfzYrOE9,937706 +Infinite challenge got us so emotional lately. When they went to north pole to keep the polar bears. Proving that global warming is serious,676551 +I knew if it warmed up that someone would pull that climate change shit... Not saying it doesn't exist but come on,411028 +RT @mlcalderone: NYT edit board has cited “rock-solid scientific consensus' for 'swift action' on climate change…,968883 +@mericanshetpost @rolandscahill @KellyannePolls @FLOTUS They only trust science when it comes to 'climate change'.… https://t.co/PGpserj3CH,65085 +"Dr. Tim Ball, climate change skeptic, met with Trump's transition team https://t.co/iwKBosxdbO #YouTube #RebelMedia",974176 +UN climate change agency reacts cautiously to Trump plan https://t.co/rORgxqz7Kz,281304 +RT @CNNSotu: Trump has characterized climate change as Chinese hoax. But @SecretaryRoss says NOAA will follow science (which could mean col…,860156 +"RT @grahambsi: The overpriced Dail Express is furious again. But never about poverty, racism, climate change, lack of social care.… ",885791 +"@interUNFAO @chrissyvalentyn @ski_jett @BellaFlokarti +Stop quoting pro global warming groups +Their scientific analysis just doesn't hold up",174569 +"RT @chrismelberger: the world: most of our coral reefs are dying due to climate change + +trump: we will build a greater & better coral reef",674895 +RT @c40cities: 'The decision taken by President Trump will not mark a setback in the fight of #Milano against climate change.” -…,70824 +@genewashington1 @BrianCoz if he was tweeting about global warming or gun control it would get him in faster,604290 +"RT @MikeCarlton01: Most Australians: +Are happy with 18c +Are happy with SSM +Believe in climate change +Want a royal commission into the banks…",927676 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,731245 +Who do you think may have a better understanding of climate change? https://t.co/AZVhoosUZv,143452 +"Scorching heat from this 'artificial sun' could help fight climate change + +https://t.co/qDArYhFIYr",342692 +"RT @bpolitics: Trump may dismiss climate change, but Mar-a-Lago could be lost to the sea https://t.co/P3HWhuxgc3 https://t.co/8UApKW2zER",871087 +@realDonaldTrump climate change is real like tbh,761613 +".@rubiginosa @jlperry_jr @HG54 Back up your man-made global warming rhetoric with hard, empirical evidence or go away.",798311 +Desde CODEX: #DYK How climate change is influencing #FoodSafety? Salmonella spreads due to extreme heat and precipitations events #ParisAgr…,635795 +"I feel like ending world hunger, saving animals from extinction, solving our climate change problem, and reforming our judicial system today",700014 +"RT @TheTheodoreKidd: I just want to give a massive shoutout to global warming on this heated, fine ass day! #sydney #australia #weather #ho…",791049 +RT @TomSteyer: Read @MichaelEMann on how climate change supercharges deadly storms like Harvey. This is science. https://t.co/H046ATmtjw,279700 +"RT @predictability3: Check out our latest blog: Carbon Capture & Storage, Big Oil, climate change mitigate and ... how to turn a profit. +ht…",507646 +@Cane_Matt It's bad but sadly not new. In recent years the Senate has refused to pass HoC legislation on LGBT rights and climate change.,444407 +@bhandel58 climate change is not the only thing of importance going on in the world. Role of govt is not to try to be the sun.,465916 +RT @kushNdiamonds: I'm gonna try to enjoy this weather even tho global warming is well and alive. Sigh.,134834 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,852541 +"Africa's soils are under threat, especially from climate change. So now what? https://t.co/6CVeBrclWD @cgiarclimate… https://t.co/zn1sqlOHjl",962364 +"RT @1followernodad: ok a climate change denier heading the EPA is AWFUL, but what's that shade of lip stain my dude https://t.co/w8BKE4wZ3s",176463 +"RT @thinkprogress: If you want to solve climate change, you need to solve income inequality https://t.co/1dZyIh41CF",992510 +This how we stand to fight the climate change issue #COP22 #UNFCCC #ITKforClimate ##IndigenousPeoples #IIPFCC https://t.co/q9gZR5HxJn,975849 +RT @MintRoyale: He's already solved climate change! https://t.co/MsYPI8fruL,420299 +RT @Emlee_13: #AHSS1190 How do you plan on convincing citizens that climate change is real & an important issue @JustinTrudeau @cathmckenna,704863 +"RT @EnvDefenseFund: If you’re looking for good news about climate change, this is about the best there is right now. https://t.co/EKUYWsPDF2",421447 +Climate champion Carney to stay at the Bank of England | Climate Home - climate change news https://t.co/BbHxwaKAV3 via @ClimateHome,935240 +RT @shadesof666: how can global warming be real when rihanna got this much ice https://t.co/mPFRFeLTEV,461836 +RT @A24: Nothing says climate change like @moonlightmov https://t.co/rOcRLRZJz7,819440 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,419330 +RT @DRTucker: Conservatives elected Trump; now they own climate change | John Abraham | Environment | The Guardian https://t.co/dp21SOqwiP,535890 +"@Sanchordia We really don't have time to play politics with climate change, we need to start hurrying it along.",841407 +RT @KSLibraryGirl: Imagine how much better/cleaner our world would be if people believed in global warming & recycling as much as they beli…,826224 +"RT @XHNews: 2016 is very likely to be the hottest year on record, sounding the alarm for catastrophic climate change…",546860 +"@SFCFinance Hey! We have a new board for bouncing ideas on climate change, are you interested? https://t.co/LTVC09rfhf",624360 +RT @TeoLenzi: I just backed an Arctic Serengeti to fight climate change on Kickstarter! Let's make it happen!!…,587419 +"RT @AnnCoulter: We're hectored to be like the French on adultery & global warming. Why can't we be like the French on hiring large, strong…",389504 +"On climate change, Scott Pruitt causes an uproar &#8212; and contradicts the EPA’s own website https://t.co/PDqWww4BHj",860824 +RT @stevelevine: Bloomberg scoop: Trump singling out Energy Department employees working on climate change. Reindoctrination? Firing? https…,793887 +RT @Mohaduale: Climate change mitigation and adaptation measures are necessary to avert global warming and man made disasters…,945522 +"RT @_mistiu: Want to fight climate change? Have fewer children + +https://t.co/bMwkhQtRQ5",436399 +"@JolyonMaugham The Trump entourage is filled with paranoid fears of other people and yet, paradoxically, is blind to climate change warnings",797196 +RT @350: 'This is a huge stride for human civilization taking on climate change' #100by50 bill launched by @SenJeffMerkley a…,642292 +World heat shatters records in 2016 in new sign of global warming https://t.co/r39GFUjgBL https://t.co/Q1lzSkQLzP,258901 +RT @politico: Badlands National Park climate change tweets deleted https://t.co/4E1maHwiJy https://t.co/VO7Loe0IFc,233757 +U.S. EPA chief unconvinced on CO2 link to global warming https://t.co/VDxUbqBPiJ,875599 +"For the first time on record, human-caused climate change has rerouted an entire river https://t.co/LaUrdR44In https://t.co/b6JvSEd65J",860413 +RT @KathyFoley: Beyond horrified at this toadying. Human rights and climate change (and general decency and respect) matter to Iri…,922066 +RT @poetastrologers: All signs know that climate change is real,719718 +@JunkScience @realDonadTrump 194 countries also support Paris Accord. Trump is the one major world leader denying climate change.,667210 +RT @GregGutfeldShow: Have you seen the trailer for Al Gore's new film on climate change? Well you're in luck! Check it out! #Gutfeld https:…,954662 +"I get why people may not understand global warming but wouldn't you want to do what it takes to save the planet since y'know, you live on it",593300 +"RT @CNN: After previously calling it a 'hoax,' Trump said there's 'some connectivity' between climate change & human activit… ",491493 +@SallyNAitken encourages @ubcforestry graduating students to take on global challenges such as climate change. https://t.co/hw819zSdur,943128 +"RT @techvestventure: Carbon credits are a fake currency for a fake correlation of CO2 to fake global warming fears, just cost shifting a…",670317 +RT @1solwara: Australia's inaction on climate change set to dominate Pacific Island talks - The Guardian https://t.co/KsNQJhCB2w,550089 +We should really stop global warming come on guys #DoItForDave he's been telling us about the melting glaciers for ages now #planetearth2,152533 +Trump's stupidity on climate change will galvanize environmentalists @Smth_Banal,725903 +RT @ArchRecord: Help @ArchRecord with research on attitudes toward climate change by completing this survey:…,685530 +"For you, @hjroaf: We're featuring books about ice and climate change here: +https://t.co/4u1sZlYU8P",679978 +@ZeitgeistGhost climate change is a hoax to line the pockets of the degenerates in Washington. Trump is draining the swamp! #maga,247717 +Trump team memo on climate change alarms Energy Department staff - CNBC https://t.co/wQHwZqjSWW,803475 +"@BillBillshaw yes indeed, why don't we like the Dutch take the Govt to court about the lack of appropriate response to global warming.",776944 +"RT @SirThomasWynne: Despair is not an option when it comes to climate change + +https://t.co/nQN3qRClwd",232693 +"Tech's biggest players tackle climate change despite rollbacks +https://t.co/TQXL2lhFS8 https://t.co/qojt9wWbuR",752730 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",526205 +RT @SarcasticRover: DID YOU KNOW: You can learn about climate change without making it about politics or opinion… because NASA FACTS! https…,831699 +The Guardian view on climate change action: don’t delay | Editorial https://t.co/OD7XBiV8jB - #Climate #News procur… https://t.co/9zbYKcAvdZ,739965 +RT @DrConversano: happy earth day. just a friendly reminder that climate change is real & our planet is a precious resource that deserves t…,251342 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,718512 +"Science strives to make climate change more personal, economically relevant to Americans - The San Diego… https://t.co/ToNFh9biYE",816966 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,903146 +RT @ally_sheehan: trump denying climate change is like cornelius fudge vehemently denying that voldemort had returned,891315 +"RT @PeterFrumhoff: Messenger: When water recedes in Houston, debate over climate change and flooding must rise https://t.co/hAlMxn8Ura via…",787078 +goddam global warming...❄️�� https://t.co/kBZw4PuxQR,21589 +The findings come 2 days before the inauguration of a... president who has called global warming a Chinese plot...' https://t.co/27HWfGIUKZ,322283 +We need nuclear power to solve climate change https://t.co/FGeKzyTliH,867456 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,22847 +RT @guardianeco: ‘Moore’s law’ for carbon offers a clear map to defeat global warming #climatechange https://t.co/VPlN0InCoU,520018 +@wrightleaf i dumped his albums in a field to let climate change destroy them. (the very nerve of demanding that B… https://t.co/npGcOmYufC,767439 +RT @mashable: Enough global warming is in the pipeline to melt all Arctic sea ice in summer by 2030s https://t.co/PVJnl2ADoB,808874 +@amcp HARDtalk crid:40tej6 ... of global warming. Scott Pruitt - a known climate change sceptic - has been accused of ignoring decades ...,257679 +"This is what climate change looks like: https://t.co/bjgDZa9OE4 +#environment",635476 +@SafetyPinDaily @Independent The new French President had issued an invitation to climate change scientists to come to France.,336477 +RT @FoxBusiness: .@realDonaldTrump: 'We will also cancel billions in global warming payments to the United Nations.' https://t.co/HxeORNHL5p,398328 +@KTLA @NOAA well thay say global climate change is not a thing..but who do you believe science or trump,386898 +RT @CFACTCampus: Don’t blame climate change for extreme weather https://t.co/IF3xM3ARpy via @BostonGlobe,559407 +#SelfSufficient Human-caused global warming contributed strongly to record 'snow dr.. https://t.co/FIYvOnYrVY https://t.co/Lp2oWkz59L,658452 +"@tdichristopher @altUSEPA +I currently don't believe Scott Pruitt, so we're even. +Ironic that statement implies he does admit global warming",64700 +RT @mikeandersonsr: I agree brother. Ask any kid today what he thinks about man made climate change? 30 years of #liberal education. https:…,636423 +"RT @CopsAndRoberts_: Just because you don't believe in climate change does not mean it doesn't exist. We need action, not denial.",906223 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/wtN7EL0AeE #KeepCalling,773709 +"RT @teddygoff: Fun fact: if elected, Donald Trump would be the only leader of any nation on earth who denies climate change. https://t.co/9…",441850 +"RT @nadabakos: 6. POTUS might tweet – the sky is not blue, therefore the climate change scientists are only providing FAKE NEWS",133043 +RT @SuperAaronBurr: @GlomarResponder Yes this is an official result. I used the same method climate change believers use to prove their…,553119 +RT @guardian: There’s another story to tell about climate change. And it starts with water | Judith D Schwartz https://t.co/J468H1FWsO,632138 +Q4: Should the US do more in combating climate change? #LHSDebate,320905 +RT @dabigBANGtheory: global warming making shit fuck all up. https://t.co/lB0V5P2bkS,975115 +RT @Colvinius: Reminder: Trump intends to cut NASA's funding to measure climate change effects like this. https://t.co/xtPImGZ0s8,38430 +"RT @1o5CleanEnergy: World has three years left to stop dangerous climate change, warn experts https://t.co/rnNFNQrQt2 #1o5C via @FoEScot",733245 +A story of intimidation and censorship: The great global warming swindle https://t.co/P8ueKqvc0y @YouTube #ClimateScam #tcot #PJNet,384813 +Experts to Trump: climate change threatens the US military https://t.co/xUEkHuDF50 via @voxdotcom,464528 +"RT @iansomerhalder: VOTE VOTE VOTE!!!! +;) VOTING for a candidate that believes climate change is a hoax is the… https://t.co/kaLLCio8eo",786000 +RT @realDonaldTrump: The people that gave you global warming are the same people that gave you ObamaCare!,684182 +"This hirokotabuchi look at how Kansans talk about climate change without saying 'climate change' is exceptional https://t.co/lApdfh2mzN + +—…",221073 +RT @Surfrider: Join us at the #ClimateMarch on 4/29—send a message that climate change is impacting our ocean & must be addressed!…,965970 +"RT @newsbusters: Al Gore is SO concerned with climate change, but he uses private planes ALL the time. Total hypocrite. https://t.co/5IYY89…",691400 +RT @EnvDefenseFund: Scientists say these 9 cities are likely to escape major climate change threats. Can you guess where they are? https://…,691422 +RT @FoEAustralia: Record global warming in 2016 as oppn block Vic govt moves to strengthen Climate Act: https://t.co/GgQTVJQDoy…,63149 +"But hey, climate change is a hoax anyway so the world totally won't be devastated before the end of the century, guys. Right? RIGHT???",94816 +RT @winnersusedrugs: boy we liberals are gonna look really stupid when nuclear winter cancels out global warming,613499 +"RT @KurtSchlichter: I support global warming. +I am glad Don Jr tried to get evidence against Hillary. +You are the sex you were born. +Libera…",910979 +RT @sadserver: I suppose a nuclear winter would be one way to reverse climate change.,50617 +RT @_gabibea: Researchers in China find a 'clearer' connection between climate change and smog. But the sky remains murky... https://t.co/s…,529874 +"RT @janet_ren: @climatehawk1 @theage Solutions are suggested by Ian Dunlop. Australia, deep in #climate change's 'disaster alley',…",144763 +Clouds are impeding global warming... for now https://t.co/qLzIqQ3a7E @Livermore_Lab,477049 +"RT @ArmyStrang: Lol, the military has already declared climate change a security threat but I guess what the fuck ever, let's burn… ",718864 +-Trump administration trying to halt landmark climate change lawsuit that could thwart changes at the EPA https://t.co/XNwK7JFemY,799336 +RT @CatholicClimate: New photo essay on climate change: https://t.co/11ZgoATNrg,429124 +RT @rickygervais: The Whitehouse is being filled with creationist climate change deniers. But on the plus side God will give your grandchil…,16399 +RT @ITCnews: #ParisAgreement enters into force today! Trade can play an important role in combating climate change:…,389891 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,803662 +"RT @causticbob: Scientists have warned that 260,000 Muslims could die as a result of global warming. + +On a more serious note my dog's got…",45923 +RT @adamhudson5: This entire thread about feeling despair over climate change is really important & worth reading https://t.co/bTcnBW8bxF,260020 +RT @washingtonpost: 'Trump can’t deny climate change without a fight' https://t.co/ZK2gC8qbxS via @PostOpinions,780749 +"World Trade Center, right now, we need global warming! I’ve said if Ivanka weren’t my enemies tell the other parts of the",618441 +Shut the fuck up. The Bible is a fucking novel. Scientist predicted this shit too. It's called global warming. https://t.co/S1nvL3qmDq,139969 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",723808 +RT @johnpodesta: A breath of clean air on climate change. https://t.co/rl4Gqi1Hxq,188951 +RT @ClimateNexus: The House Science Committee claims scientists faked climate change data—here's what you should know…,609927 +RT @aviandelights: Record hot summer max temps in ACT/NSW ~8 times more likely because of climate change. Hot summers will be more frequent…,98321 +The threat of climate change helped seal the Paris Agreement early https://t.co/kexlBkvuNt #climatechange #ParisAgreement,513818 +"A must-read. Welcome to Pleistocene Park, where Russian scientists want to fight climate change with woolly mammoths https://t.co/mS5SBsjfDJ",943916 +"RT @EmmaVigeland: #Trump appointed climate change denier, Scott Pruitt, to the head of the @EPA. @HillaryClinton would not have done that.…",847508 +RT @EDFbiz: Methane Detectors Challenge: An unlikely partnership to scale affordable technology to fight climate change -…,425538 +"RT @EcoInternet3: Hey anti-science @realDonaldTrump Arctic is 36 degrees hotter than normal and above freezing, still think climate change…",231808 +How can people be so ignorant when it comes to climate change #ClimateCounts @PUANConference @PakUSAlumni #COP22,618984 +"RT @PrisonPlanet: Hey guys, I just checked and global warming isn't a thing. As you were. 🤗 #SnowStorm",810170 +RT @HesselKruisman: Barack Obama on food and climate change: ‘We can still act and it won’t be too late’ https://t.co/67CCMDO2Or,952783 +"@SenatorMRoberts the pollution senator. Never mind climate change, you're promoting long term pollution.",310439 +RT @cr0tchley: never realised republicans are immune to global warming!! https://t.co/0A3JoD6lmh,955627 +UfM representative: ‘Obligation’ to protect Mediterranean from climate change https://t.co/xTQTmgFYs3,201714 +"v upset on this, the most beautiful day of 2016, because a) I didn't bring my camera to campus and b) climate change is terrifying",253507 +#BeforetheFlood is an absolute must-see. It's scary that China is doing so much more than the US to stop climate change.,336728 +#climatechange DailyO 5 climate change challenges India needs to wake up to DailyO In the… https://t.co/xQ64C5gAe2… https://t.co/1O9vV1VJjM,739980 +"RT @larsy_marrsy: PSA: to anyone who doesn't believe in climate change. +Also a PSA: to everyone else that does believe. https://t.co/69aNG…",652034 +RT @katyaelisehenry: If you don't believe in global warming u r a dumbass,786046 +RT @DavidPapp: Trump takes aim at Obama's efforts to curb global warming https://t.co/BrluzB43gi,338331 +"At premiere of 'Inconvenient Truth' sequel, Gore predicts 'win' over climate change https://t.co/Q3Oiz08yqf https://t.co/RgEwIWaeN5",978337 +@AlexWattsEsq good job environmentalism is a sham and climate change is fake,559940 +"RT @RyanMaue: Exactly -- John Kerry's Antarctica trip was selfish, wasteful and against his preaching on climate change. He shou…",930566 +"RT @afenn11: Exxon backs ‘serious action’ on climate change. Motive unclear, progress nonetheless. https://t.co/iCFHdY0f0I",619635 +@POTUS I hope u understand that a majority of Americans know climate change is real & not a hoax! But your policies show u don't give a damn,44405 +"RT @NPR: Rosling had a knack for explaining difficult concepts — global inequality, climate change, disease and poverty — us… ",436944 +"RT @stuart_begg: Increased cyclone intensity and frequency �� global warming �� coal �� galilee basin �� #LNP & @QLDLabor �� numbskulls +#ausp…",609023 +Metro already under threat from effects of climate change - study - https://t.co/udMEdd4N2r https://t.co/gQR4WSyFYI - #ClimateChange,888451 +"RT @bmf: The reality is, no matter who you supported, or who wins, climate change is going to destroy everything you love, much faster than…",565182 +RT @PeteButtigieg: Last year's flood disaster was likely South Bend's first serious taste of climate change. More will come. Pulling out of…,230971 +"RT @_AlexHirsch: Simple. I believe in climate change, a woman's right to choose, gun safety & the wealthy paying their fair share. T…",966471 +RT @NatGeoChannel: One of the easiest ways to help combat climate change in your daily life is to stop eating beef. Here's why:…,633801 +"RT @ClimateChangRR: Scandinavia's Sami struggle with suicide, worsened by climate change https://t.co/SsIpfGIEn6 https://t.co/DKMizjFFBk",596337 +4 things you can do to stop Donald Trump from making climate change worse. https://t.co/yhB5Jp2ENE,434014 +"RT @tveitdal: For China, climate change is no hoax – it’s a business and political opportunity https://t.co/oJmspezGed https://t.co/ytyB8eN…",876617 +@MicheleATittler Nothing you say can change the facts. Human activity is now the primary driver of global climate change. Fact.,60545 +Trump to roll back use of climate change in policy reviews: source https://t.co/eZiTGnfmAO https://t.co/os04EXfHjy,971322 +RT @realscientists: Finally people have asked how climate change could affect insects. So that's what this last thread will be about. (…,634921 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",851954 +"@_Milanko I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",717758 +#climate #p2 RT Vatican says Trump risks losing climate change leadership to China. https://t.co/GXcWtGJAkk #tcot… https://t.co/kbcnAACJoi,421679 +"Have you noticed an amazing event?You hang something in your wardrobe in winter,come summer & it's shrunk 2 sizes!....Bloody global warming!",890281 +Talking about how states are marking out the path of the eclipse next month. States that deny evolution and climate change. Yeah...,665551 +RT @tristanreveur: raise your hand if you believe in climate change https://t.co/l0IiDICgMM,356135 +Trump names climate change skeptic and oil industry ally to lead the EPA https://t.co/CCP6v6MnnQ,963332 +"The comments here are disgusting. Even if climate change isn't man made, why is it bad to protect the earth? https://t.co/CA7V50582T",574829 +"RT @ChristopherNFox: In race to curb #climate change, cities outpace national governments https://t.co/0aALAqJyG3 via @alisterdoyle @Reuters",81371 +RT @TheDreamGhoul: my inner thigh chafe is responsible for global warming,603906 +RT @foodtank: Obama sees new front in climate change battle: Agriculture: https://t.co/ySy3oIYB5u @SEEDSandCHIPS @nytimes…,468076 +RT @MotherJones: Now Donald Trump says there's 'some connectivity' between humans and climate change. https://t.co/vdtJiNW8Wn https://t.co/…,659606 +RT @cathmckenna: 'We believe climate change is one of the greatest threats facing Canadians and the world and it ... needs global so…,97195 +Latest: Kids sue Washington state over climate change https://t.co/C9v6pOeAha,493580 +This forest is being pumped full of carbon dioxide to mimic future global warming https://t.co/tfTXqY41FT via @HuffPostUKTech,880721 +"@libertytarian @BigRichTexasPam There will be climate change, man made global freezing of crops",96026 +RT @OmanReagan: Wildfire is an important part of ecosystems. But fires are increasing in severity because of climate change. https://t.co/f…,252046 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,856130 +Global warming and climate change are not man made. https://t.co/lJKF2PbqBZ,472832 +Obama fires scientist for being “too forthright with lawmakers” regarding global warming sham-science. https://t.co/bx9IcHr65U,209090 +RT @jkaonline: China warns Trump against abandoning climate change deal @FT Against the wishes of the whole planet!,609183 +RT @DailyMemeSuppIy: Unbelievable that Club Penguin is shutting down yet people still deny the impact of climate change on our planet,514259 +"RT @WSJPolitics: In rebuke to Trump policy, GE's CEO says 'climate change is real' https://t.co/cLM1bc2z2o",681249 +Bigger hail might pummel the US as climate change gathers more force https://t.co/v6qEhEdHqg,25872 +RT @France4Hillary: EPA chief Scott Pruitt says CO2 isn't a primary contributor to global warming. The Trump administration doesn't car…,408169 +Trump picks climate change denier for EPA team - https://t.co/uQFPF2hQ8R https://t.co/TUKP0nz09R,905925 +#Blockchain ready to use for climate change / global warming fight https://t.co/6ziqWqFOko,459544 +"From ocean conservation to tackling climate change, @richardbranson’s highlights of the Obama years… https://t.co/n04zt5esoA",913419 +RT @bo_novak: Animal lover? Concerned about climate change? Want to be healthier? #GoVegan for Jan! Lots of support at…,71764 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,92104 +"RT @TheEconomist: Fighting climate change may need stories, not just data https://t.co/ks8WX359mb",74545 +"If the two scripted disasters never gained much, climate change wouldn't find the best answer cybercrime.",870533 +"RT @p_hannam: New coalmines will worsen poverty and escalate climate change, report finds https://t.co/9g7iVLtMjf",393229 +RT @MickKime: Heres a breakdown of Twiggys $400 mill donation. Not one brass razoo for climate change research. Is he taking the…,686549 +RT @NRDC: Scientists just published an entire study refuting Scott Pruitt on climate change. https://t.co/fkEvsNy5PV via @washingtonpost,299868 +@BillNye what the hell though how are 2 of those most brilliant minds on the planet about to munch into the number 1 cause of climate change,725140 +"RT @LouDobbs: G7 leaders agree to do more to fight radical Islamist terrorism, divisions remain on climate change. @EdRollins joins #Dobbs…",661441 +Weather Channel condemns Breitbart for misrepresenting their climate report and climate change data in general https://t.co/aSG2kMQItm,474203 +"@WhiteHouse Even though climate change forces us to abandon fossils, the new energy regime will be cheaper and even cheaper. Forward!",242949 +"RT @PacificStand: From our partners at @highcountrynews - Endangered, with climate change to blame https://t.co/elvvivhhNi https://t.co/BYl…",179621 +Noam Chomsky: Donald Trump's election will accelerate global warming and humanity's 'race to disaster' https://t.co/3efZBbFacy,537577 +RT @alifrance5: Why have a climate change authority when u ignore their expert advice. This resignation will b the 1st of many.…,847478 +"RT @YouSeemFine: no idea why you'd need something like that to respond to climate change, you're right",884263 +RT @HotWaterOnIce: Not your average Monday: chatted to @elliegoulding about ice shelves and climate change! Head to the @wwf_uk Instag…,793221 +RT @SratLifeDaily: Patagonia is a company that strongly believes in climate change so sorry frat boyz you better find a new sweater to wear…,819944 +"RT @kurteichenwald: In full page ad in NYT in 2009, @realDonaldTrump called for urgent action on climate change. Which does he believe? htt…",490010 +"Wa Gov Inslee appeared at the UN on March 23 to address the effort of the West Coast on climate change action. + +https://t.co/kKucZQDc2t",939135 +"RT @lkimjongin: not to be dramatic but kyungsoo's smile can light up a whole town, stop global warming, bright up anyone's day, cur… ",323575 +I'm enjoying the climate change �� https://t.co/fMaPlCBXdJ,893288 +Weather Channel video uses young kids to promote ‘global warming’ fear mongering https://t.co/jHUn0hkE4N https://t.co/LFzn3VKokO,116830 +RT @AskAnshul: Banning cow slaughter has become a major outrage issue in India but US researchers says #beefban can reduce climate change &…,362231 +RT @Bipartisanism: Ask the GOP about climate change & they say 'I'm no scientist.' But with abortion they are all doctors.…,471844 +@Afrotastic21 you got climate change and people ruining the world & you got old men in power who refuse to see what's right in front of them,176547 +They tell me global warming will kill us but Coats are trending…,565202 +RT @brianklaas: The senior Trump administration official who briefed the press about climate change policy is not familiar with bas…,329502 +"Report cites national security risks from climate change via #WIkiLeaks, #WikiLeaksParty #WikiHackersLeaks... https://t.co/Lg3Bhzea2M",638907 +RT @ClimateCentral: This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/8U2CGri1ce htt…,614055 +"RT @climatehawk1: On the Colorado River, #climate change is water change — @WaterDeeply https://t.co/KAccZaDEDS #globalwarming…",51534 +"RT @Rare_Junk: When the weather is A1, but it's really global warming https://t.co/Y7dx2fLpDn",945333 +I liked a @YouTube video https://t.co/ueZz4VYEbT Al Gore thinks God spoke to him about global warming...,122940 +"Everyone's an idiot these days. I'm telling you man, global warming is screwing with your brains.",469138 +RT @FortuneMagazine: Watch: Obama addresses climate change at the 2017 Global Food Innovation Summit https://t.co/bN0Jwki9WR https://t.co/P…,880749 +"♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/PM48Wxg3BD",778694 +@AntagonisticArt @chuckwoolery climate change is anti science,104364 +Why shouldn't Prince Charles speak out on climate change? The science is clear https://t.co/0MCLVjAl5M,368719 +RT FT : Untested waters: Miami Beach and climate change https://t.co/DxNKIRA8sM,193727 +RT @Greenpeace: Denmark's politicians are going vegan to tackle climate change https://t.co/Nv6gf3n1Mb #MeatFreeMonday https://t.co/7F7SHN3…,665192 +RT @jacquep: Leading climate scientists urge Theresa May to pressure Trump on global warming https://t.co/z3heSpImu6,565739 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,343223 +RT @TheDailyShow: .@algore dissects the argument that developing countries don't have the resources to fight climate change.…,279885 +"RT @AaronBastani: There is no 'both sides' of 2 degrees global warming, or technological unemployment, or a crisis of geriatric care.…",892105 +We won't get rid of the right for a women to choose AND will keep some of the toughest climate change laws.… https://t.co/p8b6Z0LvYI,140680 +RT @ClimateCentral: This quiz will help you decide what park you should visit before climate change takes it toll https://t.co/sjNfOhGZ6G,790521 +RT @starax: SAD!!! : EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/olND1I7m1p,412336 +Conference in Morocco on climate change affecting tourism https://t.co/swdNdAaHfH,445997 +Radical thoughts on how climate change may impact health https://t.co/LSlhxDmKIE,779795 +RT @CityLab: Start treating climate change like a public health crisis https://t.co/U0QFTSfuo4 https://t.co/JzM4BPBPh2,681616 +Leading scientists urge May to pressure Trump over climate change https://t.co/SJkdcCkgMD #afmobi,367686 +"RT @jeffnesbit: On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/wW7VTe28tt",506370 +Indigenous Canadians face a crisis as climate change eats away island home https://t.co/C801BGv0Ll https://t.co/bF3hkmaT61,132168 +RT @tiredhan: did u just say...... that someone being gay.... is more likely to cause a hurricane............ than climate change https://t…,759108 +"RT @RanaHarbi: So Assad is to be blamed for Syria, far right white supremacists in the US, food insecurity worldwide, climate change, dinos…",607329 +THE HILL: EPA chief says CO2 is not a 'primary contributor' to climate change despite scientific consensus:… https://t.co/XYLtORnhwA,833214 +RT @GdnDevelopment: Watch our video featuring the late @HansRosling explaining population growth and climate change #hansrosling https://t.…,989639 +"@MayNer4Life @dmoodymayz Yeah..dahil yan sa global warming.. +Sa summer at fashion.. +MAYNER BraverAndStronger",381419 +RT @voxdotcom: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/cjiuP9xDIy,152267 +"Yes, climate change is inevitable, but we're the only species accelerating it by the odd millennium. (Some say cows' arses,too)",84283 +RT @FluffyRipple: @IrisRimon Isaac Cordal's sculpture of Politicians discussing global warming. https://t.co/MAHx9EMsUR,983881 +RT @HenriBontenbal: EU to lead fight on climate change despite Trump: https://t.co/UMt9tMcZq8,657049 +A new study just blew a hole in one of the strongest arguments against global warming https://t.co/JuUCLpR8oG https://t.co/5l9UfGmMah,460356 +"@boxun @MikeinusaGB @YouTube Could it be more evidence of global climate change? Sad. +https://t.co/rIyBUb6CZ0",700177 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,724623 +"RT @WhyEuropeORG: .@EU_ENV preserves forests for our grandchildren. #biodiversity; #forest-based industries, against #climate change.…",269340 +RT @elliegoulding: Really cute that Trump doesn't think climate change is real. Sooooo cute. You wish mate! Poop emoji #ThoughtOfTheDay,535460 +RT @AFP: Alarmed scientists say freakishly high temps in the Arctic are reinforced by a 'vicious circle' of climate change…,552058 +RT @AP: The Gulf of Oman turns green from algae twice a year in what scientists are calling fallout from a warming planet.…,163554 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",243130 +Yet another scary thing to come out of climate change/global warming. https://t.co/6Lp3uDyW8v,943320 +"RT @EcoInternet3: Reindeer becoming smaller due to global warming, research finds: Telegraph https://t.co/H5g50gDRED #climate #environment",931056 +"RT @williamlegate: If you reject the science proving global warming, then please burn your cell phone as well bc it must be powered by witc…",574005 +RT @johnredwood: The BBC loves running endless Brexit and climate change stories. There is permanent anti-Brexit bias in many scripts and q…,321998 +RT @lifeaseva: Taking shorter showers and buying reusable bottles won't stop global warming. It's the main result of our agriculture demand…,313038 +RT @TIME: Goldman Sachs' CEO explains why his first tweet was about Trump and climate change https://t.co/SMgMboycrU,651974 +"RT @savski: When ppl call deforestation, global warming, mass slaughter, abuse, disease, and human anatomy 'views and opinions' https://t.c…",744160 +"RT @richardhorton1: So the G20 fails to include a pledge on climate change, contrary to past practice. America's undermining of multilatera…",911544 +Dumb guy I went to school with posted something about global warming being fake and people tore him apart https://t.co/WAx1dYPvKU,28314 +Plants appear to be trying to rescue us from climate change https://t.co/wXJkO330zi,420118 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",865942 +"RT @CECHR_UoD: Indian farmers fight against climate change using trees as a weapon +https://t.co/rMz1xbJJ0P #Agroforestry gaining t…",782992 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,175154 +RT @OmegaMan58: End to global warming scam in sight. https://t.co/UjK0Hrxv3P,65902 +Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/Q0XvBki7pu,787883 +@JeffVeillette is there any media coverage about Norm being a climate change denier? Or those other issues? I had no idea...sneaky Norm.,791692 +RT @HannahKennison1: Is Trump going to purge the government of anyone who accepts climate change? Maybe! https://t.co/5apNXB5CgP via @slate,207757 +RT @nowthisnews: This is what happens when climate change deniers gain power https://t.co/039stRCh8N,976442 +RT @masondenning1: I'm not saying climate change is real but I'm in shorts in January .,758755 +Please vote 4 Hillary on Tuesday. She's the only 1 who can beat Trump. Trump will ruin the US & Earth (he doesn't believe in global warming),867625 +RT @AudreyEveryDrey: Complaining about global warming isn't going to change the fact that it exists. So stfu and enjoy the god damn nice we…,607007 +Theresa May admits climate change is not on the agenda as she meets Trump at G20 https://t.co/dr4uhwpq9z,938596 +When will people realize that nothing monumental will be done about climate change until there 0 chance to fix it,994970 +RT @KekReddington: There is no significant global warming https://t.co/ChVG2EN0uG,528695 +RT @KolbyBurger: When people dont believe climate change is real but its 65 degrees in feburary..... https://t.co/eBZ1kzDYLp,534510 +"RT @GlobalEcoGuy: California has been leading the fight on climate change in America. + +And we know will double down on this in the co…",661942 +RT @robert_falkner: Arctic ice melt could trigger uncontrollable climate change at global level https://t.co/4pLBkn3XiJ,715352 +Wis. agency scrubs webpage to remove climate change https://t.co/Xnr7rfMsnI via @USATODAY,786120 +"RT @DavMicRot: GOP made science political long time ago & it is not just climate change: evolution, social science funding, women'…",840591 +RT @JohnFugelsang: & Donald Trump wants you know this proves NASA's part of that whole Chinese climate change hoax. https://t.co/Mc7346asP1,649191 +RT @pettyblackgirI: Your president literally doesn't believe in climate change. https://t.co/hQu220KC9l,229841 +No one understands 'climate change' . . . sounds too wishy washy. https://t.co/rgQgBLcm3j,783682 +RT @Imthiyazfahmy: Thank you pres @MohamedNasheed & VP Al Gore and all the international champions for action against climate change 👏…,218198 +"@realDonaldTrump +Please visit Greenland to see climate change firsthand. We all need a decent place for our future generations.",446581 +"From Trump and his new team, mixed signals on climate change https://t.co/RNpRVkXq0M https://t.co/AeYwiYALm5",936827 +"Aside from wether u want to deny climate change or not, it makes economical sense to invest and shift to renewables https://t.co/mxWfXy91HQ",152582 +"RT @tveitdal: America’s youth are suing the government over climate change, and President Obama needs to react https://t.co/GigjqEByB8",728227 +Trump tries to keep 21 kids' climate change lawsuit from going to trial https://t.co/P2hLNngZDz,11920 +Cersei not joinging the fight is as frustrating as people who don't believe in climate change. #gameofthrones #got #thronesyall,622280 +Bc it has been. Every time we have a nice day the next day we get hit with a storm �� global warming is fucking real. https://t.co/NyqwmOXXnm,735540 +"RT @LeoDiCaprio: Want to stop climate change, @UWM? See #BeforeTheFlood at your University #BeforeYouVote. +https://t.co/ubMubJMbkv",9279 +"RT @JennyEda: Baby Boomers and Gen X out here complaining about us, but we understand climate change, know to vaccinate our kids, and tip s…",757282 +RT @midnightoilband: How come everyone believes scientists about #eclipse but some people don’t believe them about climate change? https://…,904522 +RT @ZaibatsuNews: Prehistoric climate change caused three mass extinction events in a row https://t.co/1wEPQg4Mk9 #p2 #ctl https://t.co/glg…,347211 +RT @hfairfield: Trump’s proposed cuts to the Energy Department could affect climate change more than his Paris accord decision. https://t.c…,820479 +RT @jamisonfoser: There’s a simple explanation for this: Donald Trump knows climate change is real but does not give a shit about you. http…,756206 +"RT @SenSanders: LIVE: Join me and Bill Nye for a Facebook Live conversation on climate change: +https://t.co/TAMzOIo32g https://t.co/JQNVUPi…",678920 +South Sudan launches UNEP-supported national action plan to tackle climate change,440259 +RT @NancySinatra: From the WP headlines: One of the most troubling ideas about climate change just found new evidence in its favor https://…,559157 +RT @Independent: Trump's defence secretary has a terrifying warning on climate change https://t.co/P5dFpOrTku,406889 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,388681 +Reindeer are shrinking because of climate change - The Verge https://t.co/eD0PbHZk43,88041 +"RT @guskenworthy: WTF America? You really want an openly racist, sexual assaulting orange monster that doesn't believe in climate change to…",854980 +"RT @SenatorMRoberts: Al Gore has another fictional movie coming out soon about 'climate change'. + +Let's revisit 'The Inconvenient Truth' h…",922520 +RT @TheEconomist: Donald Trump has promised to rip up the Paris Agreement on climate change https://t.co/LQ9VoOi3iM,213898 +"RT @Frazzling: Irony: + +Those who complain re govt debt hurting next generation are fine w/leaving climate change for that generation to de…",145369 +RT @michikokakutani: 'Energy Department climate office supervisor bans use of phrase ‘climate change’.' via @politico https://t.co/puILDZC…,860687 +Cost: $70 mil How much money do they charge to rent a room here?What about global warming? Which foreign bond count… https://t.co/LUWDy6Y8hI,680519 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",321220 +"RT @IISuperwomanII: PSA: I do believe in global warming. + +Obviously...there's so many eggplant emojis being used.",882331 +Step 1 when it comes to addressing climate change is acknowledging the scientific consensus on what's causing it. #ActOnClimate,907463 +RT @TomFitton: Clean house at EPA over fraud by climate change alarmists. https://t.co/P726yLMLgN,335976 +"RT @chrisconsiders: between anti-vaxxers, climate change deniers, and the sudden rise in flat-earthers I'm just waiting for people to stop…",622805 +The Latest: Trump says climate change decision next week https://t.co/l9ize96oCv https://t.co/JY9UX2HMJH,349122 +Agriculture victim of and solution to climate change https://t.co/x5gmd3Qe1A,324368 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",581146 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/ig8sxJGw2f https://t.co/eo85j1GK7j,455964 +"Martins said 2014 law he backed requires pub. works projects to consider climate change under SEQRA, but that law d… https://t.co/KSi7kvyfha",160166 +@thehill 'wayne tracker' tillison is about to be indicted on charges he hid climate change evidence for years with exxon...,580239 +"RT @omgofinternet: To those of you that don't believe in global warming, what is your honest reason?",18671 +"Amid climate change, small-scale farmers find merit in traditional techniques - Christian Science Monitor https://t.co/Uk9Mgrpx5Z",716376 +Does anyone think global warming is a good thing? I love @fentymoonlight . I think he's an interesting artist.,979435 +"RT @spaikin: 'Conservatives want a credible plan to tackle climate change,' says Michael Chong. #cpcldr https://t.co/aw4lv8xucX",252476 +Koalas don't like water but they're being 'driven to drink' by climate change https://t.co/AtM97l2Lkc via @YahooNews,838635 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,846835 +"RT @EmmaGomezzzz: As long as we're marching for life today, let's support policy to protect refugees & people from climate change. Most pro…",981163 +Lisbon will likely be in the middle of a desert by 2100 if we don’t mitigate climate change https://t.co/7NZnFmUABs via @qz,236535 +"getting pregnant is a pre-existing condition +ISPs are selling our data to the government +global warming is being ignored + +all within the…",927987 +Wait so people are mad at Bill Nye for saying that climate change deniers are bad,710593 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,610576 +RT @ChancellorChopp: I'm committed to leading DU’s effort to mitigate climate change & foster a sustainable future. More on my website: ht…,758414 +Most wood energy schemes are a 'disaster' for climate change https://t.co/3KiK6Q3aJo ^BBCBusiness,18822 +@mtlblog This is called climate change or global warming or whatever,424206 +"RT @mrntweet2: Anti-Trump actor fights global warming, but won't give up 14 homes and private jet https://t.co/6UmolLhyTt",154236 +"1 more week to #EarthHour, join churches across Scotland to show support for strong action on climate change https://t.co/pjquTHBavr",729958 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,407521 +"RT @cnnbrk: Trump will sign executive order to curb federal regulations combating climate change, reversing Obama-era legacy.…",824810 +Santa’s reindeer are getting smaller and you can thank climate change https://t.co/gudZU7gwXj by #diamondsforex via @c0nvey,554576 +@ggreenwald is Trump skeptic on the global warming or on the current political which handles it ? #globalwarming #politic,996125 +RT @UN: 12 #globalgoals are directly linked to climate change. The #ParisAgreement is crucial to achieve them.…,508149 +RT @wef: 9 things you absolutely have to know about global warming https://t.co/TESPXixFH7 https://t.co/K8C7PieM3Y,280895 +RT @kurteichenwald: How will 'climate change is a lib fraud' propagandists explain that 100 large US corporations have stiffed Trump & comm…,110710 +@Logic_Argue @seal_1988 @guardian Sorry what part is gibberish? Hasn't Trump appointed a climate change denier to head EPA?,583480 +"RT @OmanReagan: In the North, it's spring - summer is coming - so here's the deal with dress codes, air conditioning, and global warming.",667841 +"2 lessons I have learned from this video: +1.I'm gonna die bc of climate change +2.Weston is in love with Alfie +@Wes10 +https://t.co/fnajPZ3AsG",949978 +@whoebert @NUnl Misschien aardig om dit kader ook de #docu #channel4 The great global warming Swindle te noemen #kijktip,396471 +We gonna die from global warming https://t.co/I102Zi5bGh,837179 +@EPPGroup @ManfredWeber Especially when a climate change denier fills the most powerful political office.,737124 +RT @INCRnews: Bill Gates warns against denying #climate change https://t.co/n8ZtzHd84x via @usatoday,294524 +"RT @nytimes: In China’s Pearl River Delta, breakneck development is colliding with the effects of climate change…",641827 +"RT @SteveSGoddard: As I have been saying all along, climate change is 97% religion, and 3% science. https://t.co/IwRqnjdjK2",416947 +📷 frankunderwood: tfw you’re having a good time and then remember the ravages of global warming on our... https://t.co/uTdBVDMoHV,515505 +China still committed to Paris climate change deal: foreign ministry https://t.co/elNEj70uYe https://t.co/alZ4T6wfUA,588319 +@realDonaldTrump Of course now he'll say its NOT about climate change..������eal facts happening right now!! #flooding… https://t.co/q0xYAyCHko,604614 +@TheDaiLlew Well at least the impending nuclear holocaust will save us from the coming climate change catastrophe.,446458 +Donald Trump: Get Elon Musk to meet with Donald Trump and discuss climate change and renewable energy https://t.co/92RktdclNk via @UKChange,37360 +"RT @RedTube: If global warming isn't real, why am I able to walk around naked in February?",704078 +RT @YahBoyCourage: you a mf corndog if you think global warming is a myth https://t.co/rbXSy8lHd1,544705 +RT @TreeHugger: Architects finally are taking climate change seriously. Sort of. https://t.co/tfa6SKL8l0 https://t.co/EH1SyMU17R,63842 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,901931 +RT @agrifoodaid: #Climatechange? What climate change? Some #farming communities in #Nigeria still not being reached on awareness.…,269577 +RT @Mathius38: Anyone who thinks today's rate of climate change is unprecedented REALLY needs to read this: @tan123 @EcoSenseNow…,138417 +Cities are throwing out “climate change” in favor of “resilience.” #climatechange https://t.co/95wxvbEm8Z,426497 +"RT @TimotheusW: Harrowing read about the relentless pursuit of #CSG in #Australia - 'Australia isn’t “tacklingâ€ climate change, we…",674947 +RT @tveitdal: From best global warming cartoons: https://t.co/46v4Xq6ka5,247478 +"RT @Saltwatertattoo: I just a reminder, The Leader of the Free World said global warming is a hoax invented by the Chinese. That is all, ca…",209270 +"Last chance' to limit global warming to safe levels, UN scientists warn https://t.co/jDwL1pOkhI",992108 +RT @MikeDrucker: Let's not forget that Trump/Pence are anti-science and believe climate change is a myth. https://t.co/gEjAFtocV6,255923 +Why do global warming deniers is really a scam?,972520 +Can we apply 5p bag strategy somehow? #SDG12 Million bottles a minute: plastic binge 'as dangerous as climate change https://t.co/fuSHQt2KbC,942975 +@amrellissy Lawyers: nations obliged to protect heritage sites from climate change. UNESCO must call to account… https://t.co/YokVoZWJY2,664932 +action4ifaw: Urge POTUS to make climate change a priority! https://t.co/1sFGBd23Ci https://t.co/StlTuu795X,799405 +RT @WorldfNature: Computer models show how ancient people responded to climate change - Treehugger https://t.co/FCPkGlGfio https://t.co/unI…,937887 +Scientists call for more precision in global warming predictions @Nine_Banal,173729 +Two days ago it was 60+ degrees and today it's snowing but somehow there are still people that don't believe in climate change 🙄,485359 +Mike Pence gets buried for pretending he can’t understand the importance of climate change https://t.co/K1JDL2QHut via @PalmerReport,134379 +"As Trump enters White House, California renews climate change fight https://t.co/j3wWR3iSNS",760079 +"Tories must 'loudly disown' Trump's #climate change denial or pay electoral price, conservative think tank warns https://t.co/EUDBc94EXQ",398627 +"RT @IvankaToWorkDay: Non-scientist, oil co. shill and questionable human, Scott Pruitt believes CO2 doesn't cause global warming.…",32929 +RT @hellbrat: Growing algae bloom in #Arabian Sea tied to climate change. #TRUMP #Budget #epa #noaa #climatechange https://t.co/Mrp6lBSEtp…,299783 +"RT @ChrisJZullo: If by being #liberals you mean we care about our education system, climate change and wealth/income inequality; I'll wear…",44735 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,728497 +"RT @cnnbrk: As marchers protest President Trump's actions on the environment, EPA removes climate change info from website…",183312 +"RT @chloeonvine: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https://t.…",94753 +Due to pollution and climate change no doubt https://t.co/tZZ0MrgruE,14623 +Highlighting the important role of #tidalmarshes in climate change mitigation and adaptation in #Australia… https://t.co/CWPlSAkAZK,353731 +@shoshally *sighs in global warming*,297818 +Trump is like okay you know nothing about climate change? You're in charge! You know nothing about education? Job is all yours!,713609 +RT @Slate: Trump will be the only world leader to deny climate change. https://t.co/thTQM5qEy6 https://t.co/0WvubdXUqu,362414 +RT @NydiaVelazquez: I believe that climate change is real & the future of our planet depends on what we do NOW to address it. Retweet if yo…,34025 +RT @adamjohnsonNYC: Reminder there wasn't one question in any of the Presidential or VP debates about climate change https://t.co/wMnIuccRha,704233 +RT @EJinAction: Trumpcare and climate change will have the same victims - Are 'You' one of them? https://t.co/6rpd6DrCkc via @grist,579173 +RT @MotherJones: Badlands National Park's viral tweets on climate change just disappeared https://t.co/KPsZIzoD0t https://t.co/vgnPNIiKcG,591696 +RT @PeterAlexander: New WH comms director on climate change & guns. https://t.co/mLHApfPY9m,315835 +@sunrisedailynow the share of climate change and human activities for Lagos incessant flooding is not 50-50. It is 90% human activities.,270023 +"RT @FistFullaHits: Over 50 bands. Fist Fulla Hits an album to end gerrymandering, restore voting rights, fight climate change and hel… ",926733 +We can't beat poverty and injustice unless we beat climate change' - @PaulCookTF on @ChristianToday… https://t.co/gpINPQjz6J,30642 +RT @YaleE360: First large-scale survey of microbial life in sub-Saharan Africa may help protect ecosystems from climate change.…,665957 +"RT @truthout: Noam Chomsky on #DonaldTrump, climate change and our accelerating race toward disaster. https://t.co/4YImHl6lNv #climatechange",28337 +"RT @ezraklein: In this podcast, @ElizKolbert gives the clearest explanation of global warming science I've ever heard: https://t.co/9MlkSSL…",417278 +"RT @James4Labour: The DUP: +- anti-abortion +- anti-LGBT rights +- climate change deniers + +Disgusting that @theresa_may is buddying up with @d…",50742 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,358351 +Bruce causes climate change with his vape #carboncredits,200711 +@ImranKhanPTI @nytimes It is not only climate change but sadly behaviour of own ppl From KP toKarachi streets full of filth clean them first,389793 +"So now we're going to have a US president, house and senate who believe climate change is a conspiracy by the Chinese. Frigging great.",454424 +"RT @Bentler: https://t.co/QNpwe3vktQ +The nation’s freaky February warmth was assisted by climate change +#climate #recordbreaking… ",717217 +RT @LEANAustralia: Brandis uses US climate denier 'I'm not a scientist' line to peddle climate change doubt. Not a proper QC either (7…,294907 +"RT @latimes: CA's governor is defiantly standing his ground on climate change, health care and immigration in the face of Trump… ",198716 +RT @thehill: National Institutes of Health removes references to climate change from website https://t.co/vxopWSVycJ https://t.co/xMpxdMTtvC,606121 +RT @ClimateCentral: California governor pledges US climate change leadership https://t.co/iffosR8su5 via @climatehome https://t.co/HLdFCElV…,970000 +RT @globeandmail: Does Earth Hour have value in the age of climate change denial? https://t.co/NPRXoICp0c #earthhour2017 https://t.co/O4Ka…,398295 +"How to kill a government. +Trump's transition team crafting a new blacklist—for anyone who believes in climate change +https://t.co/b9QJkhJl9W",849951 +"Survive this end of world global warming disastrous situation on your own!! I frankly, Don't give a Dam, about your state!!",971806 +Scientists just published an entire study refuting Scott Pruitt on climate change - The Washington Post https://t.co/a0KGRGMfFZ,500923 +"RT @ReutersScience: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/rGRaEOqkKV https://t.co/12IQZ3cPDC",307702 +Now I Get It: The hot debate over the Paris Agreement on climate change https://t.co/eQBj13Z2wG https://t.co/M2huwt5BGb,960324 +RT @PREAUX_FISH: Fishes were thought to be tolerant of climate change because of studies on adult eels-but larvae/juveniles much mor…,645317 +"RT @NYTScience: How Americans think about climate change, in six maps https://t.co/l5TMk2I88u https://t.co/Ff3ofxt5YD",29213 +RT @SenSanders: To say that President Trump's position on climate change is pathetic is a huge understatement.,477346 +I don't know if I believe in global warming.,299162 +RT @ZeddRebel: Trump 'Hiding the truth about climate change' may indeed be a more effective message than Trump merely 'ignoring effects of…,544515 +"RT @LOLGOP: The birther who said climate change is a hoax & Cruz's dad may have shot JFK can't imagine Putin doing a bad thing. +https://t.c…",880298 +User error is as big a myth as global warming 😂,612332 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",766985 +"@RepJudyChu if we do not stop climate change, civilization will collapse. The only thing more dangerous is large scale nuclear war",361680 +Chicago (IL) Sun-Times: Trump takes aim at Obama's efforts to curb global warming,302664 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,200394 +"RT @Mig_Zamora: Talking about economic sustainability for coffee farmers - yields, price, climate change #WorldCoffeeProducersForum…",447949 +RT @FT: The effect of climate change in the US will be devastating for agriculture. https://t.co/lUKY1OjOb3 https://t.co/0KThR50AOU,99648 +"RT @PauLeBlanc1: @KFILE Here's a list of what Clovis said about birtherism, climate change, and women in his own words: +https://t.co/m0KBuu…",928859 +RT @hondadeal4vets: If we smoke enough blunts and buy enough Hondas I believe we can stop global warming before 2016,83796 +"@xeni @chrislhayes Nah, probably just a symptom of unchecked #climate change…",925802 +"On climate change, Scott Pruitt causes an uproar — and contradicts the EPA’s own website https://t.co/rHgbqXzSp0",294633 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/D6OJmiNFHt https://t.co/KMBKT71FAJ,303648 +Trump team memo on climate change alarms Energy Department staff https://t.co/PkWdoB3exS via @YahooNews,314580 +RT @CNN: Former President Obama is giving a keynote address on food security and climate change. Watch live on Facebook:…,572088 +RT @cjwerleman: My column on the nexus between climate change and terrorism featured in 47th edition of Green News https://t.co/FcFFrm9c7l,200392 +"Apple, Google, Microsoft, and Amazon will continue to fight climate change despite Trump’s order https://t.co/U1Ya6cfWBB",641822 +@CNN Yes climate change bolstered this catastrophic storm!,385091 +"@algore +Your theory is FUCKED-UP!! +I have 'bout ELEVEN INCHES of your 'global warming' on my deck nr @CityRochesterNY!! +YOU'RE AN IDIOT!!",556789 +RT @GCroker9: @AustinJimenez @Tonyveron69 'It's cold therefore global warming doesn't exist' 'My floor is flat therefore the Earth isn't ro…,203724 +Are chemtrail/global weather modification conspiracy theorists safer or more dangerous than climate change... https://t.co/M7remdjDgY,296730 +RT @NatGeoChannel: .@iansomerhalder & @NikkiReed_I_Am are headed to the Bahamas to understand what effect climate change will have on…,916865 +"RT @SierraClub: Psychologist @reneelertzman on how to talk about one of the hardest topics out there: climate change + +https://t.co/MdXZco1R…",435206 +RT @MyT_Mouse76: It hasn't gotten cold enough for cuffing season. We can continue our summer dating patterns. Thank climate change.,797442 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,586862 +RT @washingtonpost: You can’t deny climate change once you see these images https://t.co/k74AEmMmMf,544527 +"@Stella1050 @ProducerKen Like Obama/Pelosi were on Obamacare, Iran Nuke Deal, UN global warming 'treaty'...",342507 +Are u serious.. I thought this global warming shit was working https://t.co/9d4REJ1nOS,159414 +RT @ClimateDesk: Every insane thing Donald Trump has said about global warming https://t.co/EuPtRVlZ1u,873750 +"Here's how to talk climate change to biomedical research, what's next for science.",240786 +"@TommyWells @c40cities...2 climate change in urban cities, creating green jobs,how organizations can promote work from home2 lower carbon...",912315 +"RT @mayatcontreras: 4. You don't believe in global warming, which means you don't believe in science. That disqualifies you. We cannot trus…",430947 +RT @AIANational: We oppose the U.S. withdrawal from the Paris Agreement and reaffirm our commitment to mitigating climate change:…,502009 +RT @Xeno_lith: Teaching climate change to teachers today. Ice cores came out great! https://t.co/2xEoSPwxwA,406685 +"CLIMATE 'CHANGE' US to exit Paris global warming pact, ex-aide says https://t.co/zHmLPNg4gs",783825 +"RT @ProgressOutlook: While we're destroying the planet through climate change, Trump's stocking the EPA with science deniers.",994307 +A carbon fee is a workable approach to fighting climate change - Pittsburgh Post-Gazette https://t.co/6RiAJ27VcZ https://t.co/szFtH3r7Z9,826534 +"RT @grist: If cities really want to fight climate change, they have to fight cars https://t.co/j8IZDe1Qab https://t.co/1I7PDdX0Ek",958248 +Action plan for world climate change #adsw2017 #worldin2026 @Masdar @ADSW2017 https://t.co/71h8KAHQwp,965880 +"@EPA @EPAScottPruitt Smarter means trusting scientists who study the environment, all of whom agree that CO2 causes to global warming.",641657 +UNESCO showcases indigenous knowledge to fight climate change at COP22 #ElGranPipeMF https://t.co/78Rlic9JWG,250465 +"NASA says space mining can solve climate change, food security and other Earthly issues - CNBC https://t.co/18Fmav07Mb",447013 +Neoliberalism has conned us into fighting climate change as individuals | Martin Lukacs https://t.co/yLBi0uQgNI,855359 +RT @StopTrump2020: UNF*&KING BELIEVABLE-99% of scientist agree-Pruitt says carbon dioxide is not a primary contributor 2 global warming htt…,807064 +@JamesCDenny2 do you believe in climate change? https://t.co/gE7DvRAjLs,986805 +RT @iompng: Migrants’ faces tell us the real stories about the adverse impact of climate change: https://t.co/Hk6ELe8CGa #COP22 https://t.…,461201 +"RT @WWF_Kenya: The effects of climate change are caused by us as individuals, we should all be involved in changing the way we mange the ea…",488707 +RT @tzellyyy: Me when Florida is under water because of rising sea levels and Trump still denies climate change https://t.co/wyeaoNLRPc,895905 +RT @Reuters: Trump to drop climate change from environmental reviews: Bloomberg https://t.co/eXCNRGorAe https://t.co/EasZHy1Nqp,801388 +RT @nowthisnews: Watch Al Franken absolutely shut down Rick Perry over climate change https://t.co/Lr80co69W9,34910 +"@RogueSNRadvisor @Olivpit Thank global warming, Donnie.",242159 +RT @IOPenvironment: New in ERL: negative emissions research is growing faster than entire field of climate change https://t.co/7DoB8cZh9v F…,45534 +RT @NomikiKonst: I can't wait for the millennials to take over. If we survive the nuclear apocalypse/ climate change/ water wars.,976055 +These striking photos from #NationalGeographic show how people are documenting climate change. https://t.co/PkVz0nuxfk,937872 +Trump boosts coal as China takes the lead on climate change https://t.co/tk4C19Ziyn https://t.co/v4oIYGjhN3,838818 +RT @politico: Trump adviser compares climate change research to belief Earth is flat https://t.co/4NUlsbicTg https://t.co/J2eiIpYBlz,590122 +RT @vicenews: Trump’s rumored pick to lead the EPA wants everyone to “love global warmingâ€ https://t.co/ZtvfKXCbah https://t.co/HLBRH3Zglr,21289 +@greeneyedlucy84 Well Since Climate Change Is A Hoax And NORKO is all hot air...I'd say climate change o.0,762446 +"RT @TheFoundingSon: First Sahara desert snow in 40 years +Must be global warming at work https://t.co/yhjMr1Ov05",164145 +RT @theblaze: Trump’s budget director outrages liberals with blunt answer on climate change https://t.co/pGIksJtcn9 https://t.co/LQrJt38W…,397452 +"@LifeSite Also, he has been getting cozy with Soros, and his Marxist, climate change crap... What's the real deal w… https://t.co/VMWVj0y8JO",95291 +"5/ transnational oil companies vs. climate change activists +6/world leadership in the balance +7/corporations vying with nation states",870694 +"The UN faces climate change, the ongoing refugee crisis, and heavy skepticism from the new leader of the US. https://t.co/FPsNQumqFj",419126 +"RT @thinkprogress: Sorry deniers, even satellites confirm record global warming +https://t.co/awCbMKlIIa https://t.co/9zayUOqLSn",314286 +RT @RT_com: Stephen Hawking: ‘We are close to the tipping point where global warming becomes irreversible’…,951661 +RT @ParisJackson: 'also climate change is not a thing' https://t.co/LDTgt6XCBY,187089 +"RT @NotJoshEarnest: That's not the way to spell 'climate change' +https://t.co/39Kg6qondm",375759 +I believe climate change and global warming is fake. There are no scientific facts to prove it. #NationalOppositeDay,679611 +"101°F at 8:30pm in NJ in Jun, but global warming isn't really??? https://t.co/HBKsv366gP",422353 +"@LeeAnnMcAdoo Paul Hellyer talks 9/11, the banking cartel, global warming, and Roswell +https://t.co/2brWCTcbho",886918 +watched politics last night and realized that republicans only care about taxes and global warming...#petty,678095 +RT @capitalweather: Consequence of climate change: More octopuses in parking garages. #supermoon #KingTide. Learn more:…,839278 +RT @DailyLiberal1: Someone in the #Trump admin is finally addressing climate change as Jared asks about what to wear when he moves to…,379592 +"RT @Marky_D1970: So if global warming means higher taxes, global cooling means... https://t.co/PkMgeZgh7I",738080 +"RT @washingtonpost: Scientists just measured a rapid growth in acidity in the Arctic ocean, linked to climate change +https://t.co/whQZfJtlFp",336714 +RT @ParaComedian09: The White House website's page on climate change just disappeared. It has been replaced with an ad for a monster truck…,1816 +@WestWingReport Man-made climate change like man-made global warming is a lie and a hoax. It is all about the power… https://t.co/jUJ7jZPF0f,657388 +RT @SalenaZito: For Clinton to send Hollywood liberals here...to preach about climate change was tone deaf on Guinness record-level…,683321 +RT @lt4agreements: Scott Pruitt doesn't believe in climate change. The guy with a law degree. Over the EPA. Making scientific conclusions..…,477660 +RT @solutionary52: Every year is the hottest year ever - global warming. Every week is the worst week ever for the presidency of @realDonal…,223453 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,421643 +"A guy who gets his money from coal, conveniently denies climate change. Now he's heading up Trump EPA transition. https://t.co/iK3Rf3p0ex",43719 +@senronjohnson - from a voter in your district: please consider Carbon Fee and Dividend to address #climate change. @citizensclimate,381965 +It's freaking June it shouldn't be this cold!!! �� Yet people don't believe in climate change!!!,294032 +RT @NRDC: Urge Trump not to threaten our wildlife and wild places or reverse our progress in fighting climate change. https://t.co/U6Q8AN7T…,109220 +Head of EPA denies carbon dioxide causes global warming – video - The Guardian https://t.co/kcVDW8S9X4,874526 +RT @MarcDanDad: The real 'inconvenient truth' about climate change! https://t.co/0uwnSQ6Y7S,440019 +Dr Zahra it is true what he is saying..Cows do fart and belch out methane.. Significant contributors to global warming...,927947 +4 times JK Rowling incorrectly preached at incendiary Muggles on climate change denial by livestreaming Hungarian Horntail secrets.,574554 +"@homeofbees Hey! We have a new board for bouncing ideas on climate change, are you interested? https://t.co/LTVC09rfhf",128567 +"Sec. of State Tillerson used fake name 2 hide his identity when he spoke about climate change +#makeamericagreatagain +https://t.co/H1Zr8oVusV",378707 +RT @BBCWorld: Norway to boost protection of Arctic seed vault from climate change https://t.co/tqRhXP8Qxy,592854 +"RT @officialdruzma: session: climate change affecting diplomacy nd how to build bridges +#PUANConference @COP22 #PakUSAlumni #ClimateCounts…",456458 +"RT @GavinNewsom: Trump's budget would result in: +- Eliminating funding for climate change research +- Curbing UN peace efforts +- Cuts to Me…",962041 +RT @ClimateGuardia: Australia being 'left behind' by globalðŸŒ momentum on climate change (Without action we'll be a pariah state #auspol) ht…,750953 +"@Lexi #WTF ?? Syria, Trump, climate change ring a bell? You know, things that actually really matter. FFS get over it. Just embarrassing ��",52542 +"Wars will be fought over water in the near future, already are in some hot spots. We must deal with climate change… https://t.co/V1p0PlpGuP",122796 +If your hair is becoming white and crusty and your skin is turning orange...global warming is probably a thing.,187289 +RT @guardian: Fact checking @realDonaldTrump: global warming is not a hoax. #GlobalWarning https://t.co/3n8F5g9E3e https://t.co/XzkDUopB5C,265431 +Pope challenges UN to fight climate change - https://t.co/DXobMZ6WIR https://t.co/AYktowWvqO,828671 +RT @INDIEWASHERE: politicians ignoring global warming and the climate change so they can carry killing the planet for money https://t.co/f8…,244357 +RT @HenriBontenbal: Merkel makes climate change G20 priority: https://t.co/zadw4tGBve,753421 +@Jesusramir32Jr global warming. How warm Is it up there?,204521 +RT @Discovery: A key Atlantic Ocean current could be more likely to slow drastically because of global warming. https://t.co/igjs5R88Q0,14384 +Utopian ideas on climate change will get us precisely nowhere - The Guardian https://t.co/uWhVS5V55g,938581 +RT @NotKennyRogers: On a positive note...Al Gore says global warming should wipe out North Korea's nuclear arsenal by no later than 2113.,739493 +Why aren't feminist mad that it's called manmade global warming? I suggest we change that to woman made global warming. Just to be fair.,272480 +RT @People4Bernie: .@BernieSanders on climate change and coal miners. Don't blame the workers. On many issues they're our allies…,293270 +RT @rbaker65708: White House warns Prince Charles against 'lecturing' on climate change https://t.co/shDZ7EwTDU via @nypost,407620 +For the post apocalyptic landscape of climate change finally playing out for our @followwestwood… https://t.co/eceWBtixlG,221779 +#Repost @yearsofliving ・・・ This is why we have to stop climate change NOW -- because the… https://t.co/BExs9foklY,700583 +"RT @CCLsaltlake: More people than ever are worried about #climate change, but will it last? https://t.co/zIF8h0EwyI @deaton_jeremy…",491385 +RT @axbonotto: Rapid decline of Arctic sea ice a combination of climate change and natural variability #environment https://t.co/xrlw7s8fvq,648006 +The White House isn’t answering basic questions about climate change and golf https://t.co/susEiMDQ9Z by @hunterw https://t.co/6xSBdjKbF7,271260 +@jim82mac Don't act like you're not a republican climate change denier...,68436 +"RT @BostonGlobe: Climate change will hit New England hard, according to a draft of a major report about climate change.…",7675 +"RT @markknoller: Summit Host Merkel tells G20 leaders the agenda includes economic growth, climate change, energy policy and the rol…",820467 +RT @WWF: I just published “The time to change climate change is NOW” https://t.co/N82vmk5WnO,957518 +"RT @SenWhitehouse: Here in Congress, there's a history of doing nothing on climate change. Dark, secret money has a lot to do with it. http…",192926 +How Obama's climate change legacy is weakened by US investment in dirty fuel https://t.co/dPRmkSEcpp,970423 +"RT @RT_com: Cockroach bread may replace steak on menus in bid to halt climate change +https://t.co/wkynrduEbo https://t.co/NhRpjg695D",960163 +My professor said climate change is bs :-),458966 +"Nearly 40 per cent of Americans think climate change will cause human extinction +https://t.co/3wd5A0LDBo",644790 +RT @Alythuh: climate change.. pollution.. I'm so sorry earth,85869 +RT @johanntasker: Defra ‘tried to bury’ alarming report on climate change which warns of ‘significant risk’ to food supplies https://t.co/p…,775140 +".@michelle_sham As a human on Earth, I am genuinely afraid of the damage that will be done to this planet by climate change deniers.",802518 +But 'global warming isn't real.' This is saddening. https://t.co/wt8Elwuiuz,110473 +RT @billmckibben: Record drought/fire give way to record flood in Peru--62 dead so far as global warming amps up another notch https://t.co…,640417 +RT @TwitchyTeam: Sally Kohn’s latest evidence of climate change proves she is ‘not a smart person’ https://t.co/uYBbVAPA3R,280223 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",494357 +RT @IntBirdRescue: Seabirds are key indicators of the impact of climate change on the world's oceans: @BirdLife_News…,174044 +people who say things like this are the same people who say that global warming isn't a problem. https://t.co/hCmyYgGCNy,731471 +RT @RawStory: Bill Nye rips climate change-denying Trump adviser comparing the Paris accord to appeasing Hitler…,3723 +Trump doesn't accept that climate change exists. This is ridiculous. #environment #SaveTheWorld,3202 +"Fav accessible book on climate change, tweeps? I'm not as well-read as I'd like to be in this area and have been asked for a rec.",549109 +"RT @ABCPolitics: .@realDonaldTrump vows to cancel 'billions' in climate change funds to UN, adds 'I'm an environmentalist' https://t.co/P1H…",873234 +"i am concerned for people who genuinely think global warming, racism, gender inequality, etc arent real",580874 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,56879 +@amdugg if global warming was the case their would be less storms as the variance of cold air vs warm air would be smaller,608787 +RT @nytimes: Spring came early. Scientists say climate change is a culprit. https://t.co/ktVedZl1pX https://t.co/ZlsmPJbT2a,151713 +"@mslibor @YouTube @politico So they want to die from emphysema,cancer,cause more climate change&make the ozone layer disintegrate?good call.",457952 +"Celebrities, scientists join new nationwide push for action on climate change https://t.co/6Y08KJ2gq4 (News) #newzealand #nznews",155514 +Watch on #Periscope: global warming Winston Neace https://t.co/TaPQ4b7EYJ,572568 +RT @plantbasedbabyy: pls focus on the diet and animal agricultural side of climate change its so important and ur own tastebuds r NOT an ex…,471996 +RT @ThirdWayMattB: Worth noting - American GOP is the only major party in the OECD that denies climate change. #USexceptionalism https://t.…,749681 +"This climate change denier/known liar will sell his mother to stop the demonstrations +https://t.co/D8TGgI0NCx +#PaulRyan #protests #BREAKING",85658 +RT @LibDems: Why isn’t Theresa May challenging Trump on climate change? The future of the planet depends on it. https://t.co/RKcbiYPHXl,509974 +It is no surprise the same party that dismisses global warming would also dismiss the CBO report,45633 +"Ideally let's respond w relief + coordinated efforts to combat climate change, build infrastructure, and plan citie… https://t.co/iwjgC41GOi",163316 +"Wow, nope, no climate change here. Wtf... https://t.co/J3Y61bx2qa",168820 +"@eugenegu Hurricanes have always happened. You do not know that it's climate change, and I do not know that it's no… https://t.co/jMrlfluPl7",540509 +RT @mashable: Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/0PSasLH9p1 https://t.co/uCWkKHlf64,203774 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",589068 +RT @befeqe: Addis Ababa is witnessing climate change. I have never seen such a hailstorm in my experience. https://t.co/gl4XsvKHZT,930997 +"RT @AFP: March for Science attracts thousands around the world, as demonstrators call to fight climate change and protect th…",327726 +Pruitt can go to Congress anytime he wants to ask for more clear authority to fight climate change. #epa #altgov https://t.co/9npTKH6f0z,673125 +RT @Independent: Donald Trump's views on climate change make him a danger to us all https://t.co/6F0cIH9OSY,470462 +Smart cities will put sustainability and climate change first by 2020 https://t.co/OnAnSjLrHg,275391 +RT @c_bartle: Government urged to get tough on climate change in an open letter -signatories include midwifery & nursing organisa…,723919 +"RT @nprscience: Trump's proposed budget slashes money for climate change: +https://t.co/aC2kU3Y536 https://t.co/ug1V8iLaav",446680 +RT @thehill: American Meteorological Society comes out against EPA head on climate change https://t.co/37bJSHukVr https://t.co/XNs9yxBXjD,141194 +RT @mchristine__: i hope someone does something about global warming cause i can't swim my dog can't swim my grandpas in a wheelchair fish…,583867 +"Trump meets William Happer, t Princeton physics professor who claims 'benefits' of climate change outweigh any harm https://t.co/WHA4whGEYk",302930 +Fantastic @heroinebook piece on climate change @PopSci and don't forget call-out on evidence https://t.co/ZoJOEGuWQT,757862 +"RT @Hood_Biologist: The political turmoil, racial & religious division are the systemic drivers behind climate change. Colonialism IS a… ",649240 +"RT @ComedyWorIdStar: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https:…",551327 +"Subliminal message within the story BBC pushing globalist 'global warming' narrative, global #carbontax #conspiracy. https://t.co/T9sA0XgYhf",162535 +Y'all climate change is real like idek how this is still a debate ����,715022 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,356711 +RT @India_Progress: See Donald Trump was right. There is global cooling happening and not global warming 😝😛😛 https://t.co/JtrKL5zxOc,279120 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,564 +"RT @CarolineLucas: A #Budget2017 speech summary: No mention of climate change, a pittance for the #NHS, a woefully inadequate response to s…",121545 +RT @MotherNatureNet: Artist @H_Rothstein reimagined iconic National Park posters to show the future effects of climate change.…,242286 +"RT @gmbutts: The White House's views on climate change may be evolving, but those of the Conservative Party of Canada sure aren'…",625921 +RT @SenatorDurbin: Reminder: @POTUS surrendered our future to Big Oil & believes climate change is a hoax—ignoring major national secu…,216342 +@SteveSGoddard @SenSanders Some politicians are still using climate change to advance their outdated and disgraced political agendas.,534568 +RT @UniofNewcastle: Our research helps to protect the world’s coral reefs from global warming. https://t.co/09TNb97rrv,173469 +Differences in climate change #GHToday,451677 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,565007 +Standing strong for action on climate change! https://t.co/B58np9K77X,858239 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",707167 +RT @UKBanter: Show your support for Earth Hour by using #MakeClimateMatter and help tackle climate change #ad https://t.co/KVnKWhxs0k,581249 +@AngryNatlPark Spending on climate change is sheer madness. That money could be going to tax cuts for the rich. https://t.co/6URDwAynR3,833702 +RT @ABC: Sec. John Kerry becomes highest-ranking U.S. official to visit Antarctica; he's there to learn about climate change…,14926 +"RT @craftyme25: Dear #Electors #ElectoralCollege, a climate change denier will head the @EPA. Likely roll back all progress & safety regs.…",448775 +"RT @wakmax: Ignore Trump for now. Reflect on how far cooperation on climate change has come with EU China, India ploughing ahead https://t.…",864201 +RT @WorldfNature: Meteorologist goes on rant about climate change - KMTV https://t.co/eCELcUeMAK https://t.co/Qp5FH0G61q,15881 +Federal court orders Government to stand trial for causing 'catastrophic' climate change #feelthebern #SCOTUS… https://t.co/src1I0H9qt,57888 +RT @guardianeco: Obama puts pressure on Trump to adhere to US climate change strategy https://t.co/kDdZInePUT,525539 +"So what do you guys think will bring the end of the world first, climate change or nuclear war?",672859 +RT @PattiHarris: Women mayors are on the frontline of progress in the fight against climate change. https://t.co/VyB6f4z1oq…,297051 +too bad our president elect doesn't believe in global warming lol,413953 +RT @JebSanford: Libs are all for science proving climate change is real... but ignore the scientific fact a child with a beating heart is a…,20613 +"RT @mullmands: 'Australia isn't 'tackling' climate change. We are selling it.' +Well worth the read. https://t.co/dmJl8qmvR4",783978 +#MovieIndustryNews - Al Gore presses on with climate change action in the Trump era https://t.co/0dNWcydcBV,44946 +.@moraymo talks about Arctic climate change and her plans to inspire & empower change at the #NorthPoleSummit… https://t.co/xtvkYdflVo,739146 +"RT @RepStevenSmith: A CNN host said we should all vote for Hillary because she believes in climate change. + +These countries make one t…",242763 +physorg_com: #Mustard seeds without mustard flavor: New robust oilseed crop can resist global warming https://t.co/qpJg3ZoHXb uni_copenhag…,427532 +RT @UNFCCC: Have logistical questions about the @UN climate change conference #COP23 in Bonn in November? We've got you covered…,482620 +RT @jalloyd4: The descent into #TrumpHell begins - chooses top #climate change skeptic to lead #Environmental Protection Agency https://t.c…,338775 +RT @JoyceCarolOates: 'Death-wish'--Freudian theory confirmed by masses of US citizens voting in pres. who denies climate change that will k…,963222 +I'm now convinced that no action against climate change is necessary. /s https://t.co/NGM9l5f1WL,853096 +Recent pattern of cloud cover may have masked some global warming https://t.co/GmEGtigEhk,178136 +Does Trump buy climate change? https://t.co/KYbFmCK518 https://t.co/Io5fHoxXzG,507896 +How will global warming gain acceptance when this is the burden of proof to prove the obvious in Premier League foo… https://t.co/DHju1WpEpO,872710 +RT @wef: The cleverest countries on climate change – and what we can learn from them https://t.co/Q74BYERmPv @apoliticalco https://t.co/IPr…,756649 +Will climate change affect forest ecology? - https://t.co/lNS0nFU4rR https://t.co/mlMTrzMRn2,427921 +RT @_eleanorwebster: Remember our climate change garden @The_RHS Chatsworth? Read my blog to find out what it was like behind the scenes…,236300 +RT @LiberalResist: The governor of California and Michael Bloomberg launched a new plan to fight climate change with or without Trump - htt…,472843 +@PaulPabst Did he make his money studying and then predicting the end of human existence in the next ten years due to climate change?,585050 +RT @markhumphrys: Guy who denies link between Islam and Islamic terrorism claims that climate change causes Islamic terrorism. https://t.co…,722000 +RT @ProgressOutlook: Evolution and climate change are real. Teaching them in schools should be standard and not controversial.,652221 +RT @SteveStfler: Only in America do we accept weather predictions from a groundhog but still refuse to believe in climate change from scien…,157054 +RT @JaneMayerNYer: GOP erases climate change information in Wisconsin - will Trump take science censorship national? https://t.co/sL2hu1cy…,758676 +EPA chief: Carbon dioxide not 'primary contributor' to climate change @CNNPolitics https://t.co/bKDzlsIyOs the @realDonaldTrump Cesspool,842465 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,212791 +51% don't believe global warming is caused by humans? 51% of Americans are obviously morons. #globalwarming,695776 +China to Trump: climate change is not a Chinese hoax âž¡ï¸ @c_m_dangelo https://t.co/DpSIi4lbE1 via @HuffPostGreen,699957 +"RT @laynier: 72% of Americans, who want the United States to take aggressive action to slow global warming, would disagree with…",232164 +Why should they have reached out???.....I doubt they discussed 'climate change':) https://t.co/3eFzDArIas,517116 +RT @abedelrey: People who open snaps and don't snap back are the reason global warming exists,930064 +"RT @FoxNews: On 'Cashin' In,' @RCamposDuffy slammed @BarackObama and @algore for their support for strict climate change regulat…",576283 +RT @thehill: De Blasio signs executive order committing New York City to Paris climate change agreement https://t.co/hD0AMERkAA https://t.c…,265567 +"RT @george_chen: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change https://t.co/8Xv44xT…",17842 +Amazing how with all his knowledge Ben Carson believes climate change is a hoax.,798939 +"RT @hannah_lou_m: be racist, support trump, transphobic, homophobic, islamophobic, disrespect women, say climate change is fake, hate…",168339 +"RT @iwelsh: The Obama administration has done nothing meaningful to stop global warming (signing Paris does not count). In fact, they speed…",106814 +"RT @sassygayrepub: Funny how liberals talk about global warming when we set record high temps. Yet, there's almost no talk of it when we se…",825225 +"RT @Samanth_S: What does a rich, ambitious nation if it begins to run out of land? My @NYTmag piece on Singapore & climate change: + +https:/…",360538 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,612554 +Yet some will point to the cold as proof that climate change isn't real smh https://t.co/tYqo3KqiAh,853657 +RT @emlaughsallot88: Bet they are praying to Gaia for global warming to kick in #ldnont #cdnpoli #onpoli https://t.co/HyMXToUEQh,98480 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,177484 +"Scott Pruitt is in place to 'shut up the Fracking protest +along with the climate change nonsense' +Big Oil writes th… https://t.co/222HEdNYR9",777232 +"RT @prchovanec: 79% of European, 66% of American thought leaders say climate change is a major threat.",768047 +"RT @YouTube: .@NatGeo teams up w/ @LeoDiCaprio to explore climate change and prevent catastrophe. + +This is #BeforeTheFlood →…",881405 +"RT @c40cities: To reduce climate change & sea level rise risks, we need substantial and sustained reductions in GHG emissions…",671404 +RT @Greenpeace: Are these the top five worst things Trump has done on climate change so far? https://t.co/1vyBm1cv0y #resist https://t.co/R…,329427 +"@VP Gee, doesn't look like you're POTUS material either. Keep ignoring climate change & it'll just get worse. Not G… https://t.co/wipCKLemtx",184153 +"74 degrees out in the middle of November, global warming is in its prime",859092 +NY AG: Rex Tillerson used alias 'Wayne Tracker' to discuss climate change while CEO... https://t.co/pCLmXESchC https://t.co/YStybJIpzJ,456205 +"RT @andrewbeebe: In rebuke to Drumpf policy, GE chief says ‘climate change is real’ https://t.co/8Vg83hMfIt via @WSJ thank you @generalele…",280330 +RT @theritzlondon: We will be turning off our exterior lights today at 8.30pm for @EarthHour in support to climate change action.…,203075 +RT @Prem_S: What's lame my dear is you. Your ignorance and hypocrisy re climate change is devastating our country yet you don't…,272683 +@JohnBCool @NatGeo @ChelseaClinton Preach it brother. Man made climate change is a lie.,102279 +@jmcdesq @dfaber84 @TopThird cant we just all get along in the short time we have left before climate change kills us all?,251364 +"RT @pdacosta: Hitting back at Trump, Trudeau cites need for 'courage to confront hard truths' on global warming https://t.co/NuUQjSRWtl #Pa…",691018 +RT @EnvDefenseFund: A once doubtful scientist comes around to climate change impact after visiting Greenland. https://t.co/PUFhlfFO8H,171437 +RT @buhmartian1: @TimKalyegira OK Mr expert In everything. You believe climate change is a hoax?,584523 +RT @leanahosea: Act Now #BeforeTheFlood @LeoDiCaprio documentary on climate change is a must see https://t.co/f07mWhMECu,352915 +"@MzVelmaBeasley Also Yes climate change, again we are the only nation on earth not worried...",938918 +How climate change could make extreme rain even worse https://t.co/XGwBFOAxo0 by #TIME via @c0nvey,118705 +@ayana_ramberg and why even bring up global warming right?Me and you both know it's a hoax!None of the stuff you le… https://t.co/9IBShDFRje,362862 +"@Cybren finally, the lack of coverage of climate change is not only a type of politicization, its a huge success for climate deniers",162835 +"Trump is changing policy when it comes to climate change. What's next, is he going to say cigarettes do not cross cancer.",684924 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/6uCYDZLN0V via @Reuters #climatechange #china",192051 +"I want to see Trump dispute tt there's no global warming. HEY if there is, the first to go is the fishes on your pl… https://t.co/JpvBVylJEM",302733 +"Addio olio e pesci: climate change, la catastrofe nascosta | LIBRE https://t.co/4uEhVIqrlQ via @libreidee",338757 +RT @davidschneider: But remember: climate change is a hoax. https://t.co/XK1gbR8vbA,964326 +"RT @VivziePop: @VivziePop but we now have a pres who thinks climate change is a hoax & has no respect for women, sorry if some are upset pa…",84507 +"RT @BrandNew535: Will unchecked climate change kill us, or just starve us? Environmental action becomes more urgent every day. + +https://t.c…",785363 +"The New Yorker asked me to shoot a story on climate change in 2005, and I wound up going to Iceland to shoot a glacier. The",504198 +RT @thoneycombs: yo only socialist governments are capable of the kind of planning we need to combat climate change. #marchforscience,232387 +"RT @CBSNews: To help fight climate change, about 1.5 million people in India plant potentially record-breaking number of trees…",169990 +RT @C_Smart_Climate: After Trump election conservatives own what happens with climate change. https://t.co/p4aYAW4bAs,191543 +RT @StopNuclearWar: Rex Tillerson refuses to admit #ExxonKnew about climate change decades ago https://t.co/vww20MH7xK via @HuffPostPol #Cl…,746266 +Does climate change mean this weather is the new norm? And what can we do to stop it? https://t.co/LAMJ9f0lDV (Phot… https://t.co/dio8oKwKO9,389694 +"RT @davidsirota: If you wouldnt consider ending a subscription to a paper because it promotes climate change denialism, what would make you…",202010 +RT @tdichristopher: EPA chief Scott Pruitt says he doesn't currently believe CO2 is a primary contributor to global warming https://t.co/CF…,693828 +RT @tan123: Over 300 US electoral voters: Ignore Bloomberg on climate change https://t.co/8cGlEWb8e2,234488 +German chancellor Angela Merkel predicts climate change face-off at upcoming G-20 summit https://t.co/gTWZXpAgKa #canada,933815 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,536804 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",568070 +Carteret Islands; ground zero for climate change https://t.co/86qMwBvbY7 https://t.co/WuECewpWcK,757915 +"RT @merrittk: as a millennial, you might expect that my favorite RPG is chrono trigger. when in fact, it's illusion of gaia (climate change)",214113 +RT @ekphora: Here are the tweets that Badland National Parks posted about climate change and that were removed. Science is being…,430081 +"⚡️ “Leonardo DiCaprio met with Donald Trump to discuss climate change” + +https://t.co/nTQPlU1SQA",219191 +"@PatVPeters ..........and farting is the blame for global warming, jack a$$...I don't believe in global warming...just so you know!",154202 +RT @existentialfish: look at the screenshot! someone's actually covering climate change!!! https://t.co/2wqnXCbEBW,265504 +"RT @KJBar: Vast 'back-to-back' coral bleaching disaster due to climate change, not El Niño https://t.co/T5RCZtK4xg https://t.co/2S66QRXypL",192317 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",231203 +"RT @sungevity: #BeforeTheFlood, the must-see new film on climate change from @LeoDiCaprio, is free online. Watch now: https://t.co/RtJCauB…",921692 +"When I read some of y'all tweets, I can feel my brain cells deteriorating @ a > rate than climate change ��",582394 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/bzok3yxdeb,103419 +RT @nature: Editorial: The potential economic damage from global warming should not be influenced by politics…,469177 +"@rjf57bob @WilsoNerdy majority of republicans are in pocket of fossil fuel industry, which is why they're feeding you climate change lies",67327 +RT @GRI_LSE: Check out our 5-day course on climate change economics & policy making https://t.co/KeLfGDWrFr,409807 +RT @rainnwilson: Be very prepared 4 dismantling of the EPA w/oil lobbyists & climate change science “deniersâ€ running the show. https://t.c…,576187 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,550239 +RT @UNUWIDER: Faaiqa Hartley discusses the expected impacts of climate change on South Africa’s economy and the kinds measures ca…,648313 +"@RosieBarton What I hear from the EU is a refusal to acknowledge global warming is here, water wars are here, and its going to be nasty.",375610 +"RT @JakeReedaBook: If global warming isn't real, then explain why Club Penguin is shut down?",288718 +#RickPerry says carbon dioxide is not a primary driver of climate change #ArsTechnica https://t.co/dyXYW6j5sD… https://t.co/FRiGrZ5c86,661607 +Acknowledge climate change and do something about it! https://t.co/0WW7JNIL9a,440008 +"RT @mcspocky: Oklahoma hits 100 ° in the dead of winter, because climate change is real https://t.co/Qtghk6AjUg https://t.co/pQGqXEfqCz",937627 +@RepJimBanks You need to 'hear' this deeply and learn about climate change. Then oppose Trump!! Listen to us!! https://t.co/nwyJwgMKL1,721289 +Rick Perry clarifies an earlier statement - he says the *existence* of man-made climate change is not up for debate.,287145 +Some great explainers from @voxdotcom and @UofCalifornia about climate change here: https://t.co/mXt4LjZy6t,281673 +@TheMorningSongs climate change,886513 +The impact of climate change on agriculture could result in problems with food security'. ~I.Pearson… https://t.co/7iRLkLvv8v,407091 +RT @IndyUSA: Trump signs executive order reversing Obama measures to tackle climate change https://t.co/lPh1tAWG2b https://t.co/LSFprhRssh,42518 +"RT @bani_amor: Contacting reps isn't enough. If yr tryna make sense of climate change, race, place, class,+gender, here's some help https:/…",742525 +The UK could have changed the way the world fights global warming. Instead it blew $200 million.… https://t.co/PoVkPDR0bM,118175 +RT @Newsweek: Global climate change battles are increasingly being won in court https://t.co/88ITY4515w https://t.co/4x0HIgtJoy,339939 +RT @NomikiKonst: Why this Senator has given 150 speeches (and counting) on climate change https://t.co/RSbld2hfLC via @HuffPostPol,746758 +"There are crazy natural disasters happening all over just now, yet people still dont believe climate change?! Our planet is poorly! Help it!",47529 +#DailyClimate Ireland's staggering hypocrisy on climate change. https://t.co/nmr0NwOteD,750212 +Because of climate change:,162028 +We also discuss this in part 3 of our podcast series on climate change and health https://t.co/oJaLOcOzp0,937194 +RT @ag___11: If u don't think climate change is real then fuck you https://t.co/HuDlZPLLpw,491132 +"RT @SecularBloke: - creationists +- flat earthers +- anti-vaxxers +- climate change deniers + +Have I missed anyone off my “absolute fucking mor…",474018 +Philippines to get $8M for climate change measures: Lopez - ABS-CBN News https://t.co/z6RihAnV6r #Business,361042 +"RT @kwilli1046: If you agree with Margaret Thatcher, that climate change is a globalist conspiracy and a major hoax! https://t.co/RQnO4w2xe6",799826 +Say what you want but he'll definitely take care of global warming... via /r/funny https://t.co/vdNOTmGx2W,513377 +Storms linked to climate change caused more than £3.5m to cricket clubs https://t.co/cczvcm5owx,329632 +RT @nytimes: The findings come 2 days before Donald Trump's inauguration. He has called global warming a Chinese plot. https://t.co/Ep4mbko…,994041 +RT @alexgibneyfilm: NY Times hires climate change denier. Why? For 'balance'? What about a flat earth columnist? https://t.co/GUygdZosjH,721268 +"Yes, but now Trump's President there's no such thing as climate change & all will be ok #planetearth2",93850 +Nowhere on earth safe' from climate change as survival challenge grows https://t.co/FDbP7eW4FF #A,610899 +RT @sciam: Antarctica’s southern ocean may no longer help delay global warming https://t.co/dV174aBcHx https://t.co/sL66QUvvwr,418447 +RT @AkzoNobel: Pleased that @CDP has awarded @AkzoNobel A-rating as a leader in combating climate change #PlanetPossible…,502706 +"On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/pSmBRQrEAx Scott Pruitt is dangerous!",910420 +"RT @NatObserver: Pledge now! Support reporting on perils animals face: trophy hunting, LNG, climate change. Get the orig grizzly tee…",103571 +guardianeco: Nicholas Stern: cost of global warming ‘is worse than I feared’ https://t.co/si4qqmPW8V,338728 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,143979 +RT @nytpolitics: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/xLSRpq99zr https…,908115 +"@njdotcom And Houston is the most liberal part of the state, so you can't blame theme for putting climate change deniers in power.",224771 +Thank goodness for global warming or it might really be cold,203179 +@alroker Shocker! That's the climate change new normal in that neck of the hoods,784900 +Jane Goodall calls Trump's climate change agenda 'immensely depressing' https://t.co/RKppanvMnd,795672 +"@1john22 @channel2kwgn @KyleTucker_SEC Not anything -important things that affect the future. Like DACA,climate change,equality",197824 +Donald Trump's climate change deal doesn't change the fact that my dick is still small.,158701 +Our president doesn't believe in climate change https://t.co/FKcYY4yD8W,863844 +RT @ClimateDepot: Watch: Tony Heller dismantles Harvey climate change link in new video https://t.co/EirKxBVE9E via @ClimateDepot,678273 +African penguins are being 'trapped' by climate change https://t.co/Si5i1mOe3X,291587 +"RT @ChuckWendig: Don't forget the widely hated TrumpCare, or the virulent climate change denial, or HEY ho they're all Russian puppets ha h…",380473 +RT @amworldtodaypm: The leaked report says Australia is not on track to meet the Paris climate change commitments and that investment in th…,144028 +It's started raining while the sun is out a lot here lately. I wonder if it's climate change related.,296369 +What TED session on climate change would be complete without. . . . a cameo by Al Gore?' Bill’s blog on #TED2017:… https://t.co/HJq20JWIzN,100221 +"RT @seru25: Labor unions. +People concerned about climate change. +Activists. +Y'all are in for a bumpy 4years.",353354 +"@absurdistwords GOP control in one state is not the same in another. In other words, climate change in IN is not the same worry as in FL.",74660 +"ICYMI: Regarding climate change, Mick Mulvaney said, “We’re not spending money on that anymore.” https://t.co/csDIXGqcEv @theAGU",359734 +"RT @DionneGlynn: It's Nov 10, northern Utah and 65 degrees....should I be worried? +Republicans insist global warming is a hoax, but…",593537 +"@Anon_Eu So actually his logic could be that humans don't cause climate change, coals does, or maybe cars do, or cows. Like guns.",461573 +...said the man who lead a decades-long lie to America about climate change https://t.co/yIVQZNNohN,787803 +@AmyMek do you... understand what climate change is? It's not just your feet could get wet.,498737 +"RT @washingtonpost: Energy Dept. rejects Trump’s request to name climate change workers, who remain worried https://t.co/dbDzb8OvXS",700957 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,504538 +RT @DrRimmer: The Doomsday Clock - scientists on climate change and time - Dr Nicole Rogers at @QUT @QUTlaw #QUTclimatebiz https://t.co/bna…,736901 +RT @ayee_stefyy: Still can't believe our new president is a moron who believes global warming is a hoax...,651995 +"RT @GeorgeMonbiot: I argue that the failure of all govts to engage with automation, climate change and complexity makes war probable: https…",853083 +"RT @lindenashby: President Trump explaining how much he knows about climate change. Or maybe describing the size of his brain, or hi…",582931 +RT @Jason: 15 (!!!) ships burning heavy fuel oil are much worse for global warming than the world’s cars put together ������ https://t.co/CjCZ…,356177 +RT @Ted_Scheinman: This week: a series of short profiles about women on the front lines of climate change — intro by @KateWheeling & me htt…,140282 +The Totalitarian Consensus - Question the totalitarian consensus on climate change and you immediately confront... https://t.co/w1vsQ026cq,615437 +@santose84931250 global warming is fake,59916 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,358757 +RT @NatGeoPhotos: Explore eye-opening ways that climate change has begun to affect our planet: https://t.co/w7wSJjWbaj https://t.co/wrHxW53…,144672 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,239716 +RT @oxford_thinking: Is veganism the way to beat climate change? A thought-provoking look at the future of food with Dr Marco Springmann…,661831 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,795858 +"Indigenous rights are key to preserving forests, climate change study finds https://t.co/xrSUZVv53X",124164 +What the sea wants the sea gets with climate change the Arctic falls... https://t.co/Xadf9RXbtO,129832 +RT @billybragg: Do those who won't vote Lab because Corbyn's views on nukes see nuclear war as greater threat than climate change or destru…,112460 +RT @People4Bernie: Nuclear Weapons and climate change are the two biggest threats to humanity. Thank you @SenSanders for focusing on t…,242681 +"RT @lindsaymeim14: ICYMI: As Trump unravels hard-won protections of people & planet, concern about climate change reaches record high.…",160144 +RT @USFreedomArmy: Hey East Coast libs. Where's the global warming? Enlist in the USFA at https://t.co/oSPeY3QMpH. Patriots only. https://t…,422103 +@danjdob @Noahcoby1 @KvtvComb @ColumbiaBugle Even if climate change isn't real what is the harm in decreasing pollu… https://t.co/G5tB6vsDgD,546746 +The broad footprint of climate change from genes to biomes to people https://t.co/aUS4ri2uxu,219843 +RT @LifeSite: Why are we worried about climate change when we aren't protecting our unborn? https://t.co/NG9x6lTe9E,151006 +RT @BloombergTV: Here's what President Trump's climate policies could mean for global warming https://t.co/9QJ35exuVj https://t.co/QtuCp8ED…,190868 +"RT @CNN: President-elect Donald Trump met today with Al Gore, one of the most vocal advocates of fighting climate change… ",994821 +"These videos are not simulation but representations of available data on climate change. +https://t.co/H9jHBlowhO",531825 +No more climate change legislation or biomedical research for us! Is the beginning of a new Dark Ages-& a reversal… https://t.co/zowE0kh6H0,35242 +RT @BlessedTomorrow: Here's what thousands of scientists have to tell President-elect Donald Trump about climate change…,858151 +"RT @ProgressiveArmy: Next head of UN global climate talks has appealed for US to 'save' Pacific islands from impacts of global warming. +htt…",432143 +"RT @vicenews: As permafrost thaws, climate change will accelerate. A solution is urgently needed. #VICEonHBO https://t.co/TbtwdnKLQX",12320 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,831941 +"RT @rustybarth: Forget about climate change, virtual reality porn is going to lead to the extinction of mankind #foodforthought",584499 +"when it comes to climate change, are hoomans worth saving?",524383 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,795138 +RT @mashanubian: 18Feb1977: Gambia became a pioneer as 1 of 1st in Africa to address climate change w/what is known as 'The Banjul D…,152972 +RT @griffint15: #RememberWhenTrump said this about global warming. https://t.co/nzV4W2dm3i,703808 +RT @HuffPostPol: Trump budget director pick does not believe climate change is a major risk https://t.co/IYcT3c31ii https://t.co/ZMclwgtYy9,620420 +RT @CBSNews: Bernie Sanders: 'What astounds me is that we now have a president-elect who does not believe climate change is real…,465164 +meanwhile our president elect doesn't believe in global warming https://t.co/BQbOLfaPgM,384067 +"RT @UofGuelphNews: Congrats to #UofG Prof @Sherilee_H, heading multi-million dollar climate change, indigenous food security project…",231989 +RT @NewRepublic: Do we have a constitutional right to be protected from climate change? These young activists say yes.…,946557 +"RT @Jeneralizer: Keeping with the theme: +Bugs for extermination +Polar bears for global warming +Dentists for sugar +Postal workers for…",154720 +"What could a couple thousand scientists possibly know about climate change? + +E.P.A. Chief Doubts Consensus View... https://t.co/tsZFLfiNmK",948569 +RT @ajplus: Leo takes on climate change skeptics: “You might as well not believe in gravity.â€ https://t.co/v8EdagKObD,435694 +RT @ObamaStopDAPL: RT OccupyWallStNYC: Remember that for decades #Exxon misled the public about climate change. #RexTillerson https://t.co…,300631 +RT @AJEnglish: Could plastic-eating caterpillars help the fight against climate change? https://t.co/SCSvpmNMAd,702259 +RT @StephenRoweCEO: Call to curtail exposure to climate change - low carbon investing growing - #climatechange #ESG #sustainability https:…,881456 +RT @ClimateGuardia: UN Secretary General calls on the world to remain united in the face of climate change (We must stand firm! #auspol) ht…,870399 +All the idiots who think climate change is a joke are the same idiots who used to take too long at the drinking fountain.,997972 +RT @Hipoklides: @MichaelEMann @NYMag To keep global warming below 2C: a cat's chance in hell https://t.co/o66CAgNHpN,662440 +RT @yuungnasty: @_imJonah were prob a civilization that keeps reseting bc of climate change so we have to migrate planets every few thousan…,733984 +"RT @ErikSolheim: Military advisors warn of mass migrations from climate change. +For many, climate adaptation will mean leaving home.… ",578706 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,232381 +RT @WhatTheFFacts: 46% of Republicans say there is no solid evidence of global warming.,20967 +Why don't people believe in global warming ?,277542 +Diverse landscapes are more productive and adapt better to climate change https://t.co/IegNnqBV8d,191551 +"Next time your favorite politician says climate change isn't real. Look how much shell, Exxon, etc. donated to them.",11712 +"@SecretaryPerry doesnt believe in man made global warming, he also doesnt believe Oxygen is the primary driver to breathing #climatechange",729970 +"RT @EnvDefenseFund: The White House calls climate change research a ‘waste.’ Actually, it’s required by law. https://t.co/FwQ748bDgG",937412 +RT @socalgrip: So Pruitt is smarter than 2000 scientists on climate change. Must have gone to Trump University. #climatechange…,515785 +RT @JenTheMermaid: Tiny islands in the tropics are some of the least responsible for climate change but get the brunt of nature's resu…,27412 +"RT @SkipperClay: Hey Florida, if you go trump, and trump ignores global warming, and the ocean EATS YOU, YOU HAVE NO ONE TO BLAME BUT YOURS…",626724 +@KitDaniels1776 looks like another victim of global warming and unemployment.,718433 +RT @grizzlygirl87: I study ground squirrels and their response to climate change (repro/fitness repercussions) in relation to hibernation e…,467242 +RT @qz: The US is relocating an entire town because of climate change. And this is just the beginning https://t.co/poPq8dbNHv,127677 +RT @EliStokols: Scientist at Dept. of Interior who spoke out about climate change reassigned to job in accounting office. https://t.co/ojhc…,515849 +RT @elonmusk: Tillerson also said that “the risk of climate change does exist” and he believed “action should be taken',962814 +RT @WaskelweeWabbit: @JAmy208 @Morgawr5 @DennisEllerman @Demygodless @CGramstrup the entire concept of manmade climate change is so stupid…,73851 +RT @tutticontenti: Sea levels 'could rise higher than a three-storey building due to climate change' https://t.co/8CpKla1YWq  via @timesofi…,448294 +global warming is a hoax. https://t.co/iJ3yGzWFba,388958 +RT @TPM: Incoming California Republican says climate change hurts 'Muslim nations' which are 'in the hot areas of the world'…,88600 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",815016 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,342255 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,315500 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,397781 +"@reveldor85 Yes, they constantly run anti-global warming articles disguised as naturalist articles too..he's the sc… https://t.co/hbMqo02tI7",497256 +"RT @JustineinTampa: @POTUS I'm 30 now, but I've been promoting climate change since I was in the third grade! #ActOnClimate http://t.co/d77…",900685 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,895026 +RT @KurtSchlichter: YOU WILL NOT SEE THIS IN THE US MSM: World leaders duped by manipulated global warming data https://t.co/wKciX9ix9i via…,837882 +"If Obama buys a house on Martha's Vineyard, he's not concerned about climate change and rising sea levels period.",857718 +"RT @EricBoehlert: i'm glad you asked... + +'e-mail' mentions on cable news since Fri: 2,322 +'climate change' mentions on cable since Fr…",645914 +The president thinks that China invented global warming.,429221 +"RT @GAbulGhanam: #Water is an aerial tour of how climate change, pollution, and human activity are endangering Earth’s most precious… ",733705 +RT @PeePartyExpress: Congressman leaves stage to a chorus of boos after saying the jury is still out on climate change https://t.co/38Gt8Uk…,644143 +At least we won't have to worry about climate change. https://t.co/979xA3mqav,168585 +RT @thehill: Bloomberg pushes foreign leaders to ignore Trump on climate change https://t.co/kgQBltgXoU https://t.co/BtSsJegUmV,823781 +"RT @PoliticalShort: Not even the late, great Billy Mays could sell this 'climate change' garbage these 'experts' continue to peddle. https:…",732801 +RT @OPB: EPA boss Scott Pruitt questions basic facts about climate change. https://t.co/2C42Sk7h27,484639 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",144983 +How was it schorchio last weekend and now I'm freezing my tits off? And people say climate change isn't a thing. Fools.,558804 +"and don't get me wrong, I probably know more about climate change, oil n gas, and alt -tech than the lot of you.. b… https://t.co/Q0sWurxeNz",78602 +to deal with climate change we need a new financial system https://t.co/EtVyPBzNUT,509354 +RT @CNN: Mulvaney on climate change: “We’re not spending money on that anymore. We consider that to be a waste of your money” https://t.co/…,59464 +"RT @DrMikeSparrow: Polar vortex shifting due to climate change, extending winter, study finds https://t.co/s95ROLg0VW",702425 +RT @ClimateCentral: This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/Udcgs75IHN htt…,194139 +RT @pray4peacewlove: Trump set to undo Obama's global warming!���� 'Give it Back to GOD Who Controls All! We can be respectful guests����! htt…,354470 +businessinsider: Trump’s defense chief cites climate change as national-security challenge — via ProPublic … https://t.co/aHTv0VRXjE,697242 +@chrispb13 @roadster2004 @SkyNews We are coming at this from opposite directions. You are a climate change denier (… https://t.co/f81VRBmQ99,959223 +"RT @DuaneBentzen: @oldschoolvet74 @DorH84607784 Yes, global warming, er, um, climate change, er, um, climate disruption. No, liberal psycho…",925997 +"#global warming my ass, temps have been below average for the past 8 days and predicted to be the same for 10 more days #scam #lies",964409 +RT @KingEric55: What kinda simple minded shit is executive order to stop all federal efforts in fight global warming? What an ignoramus.,552441 +"Julia Louis-Dreyfus endorses Clinton, slams Trump over climate change #Clinton #GOTVforHRC https://t.co/VD32iNf3C4",704720 +"Since people are denying climate change solely on it not suiting their interest, I have prepared a short list of ev… https://t.co/RgwbNfKgkp",637471 +RT @nytimes: How the Energy Department tackles climate change https://t.co/AldDJ8ABEW,392090 +RT @thenation: How will climate change affect the future of the planet? Scientists predict it will be nothing short of a nightmare. https:/…,429352 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",418244 +We can’t bank our future on Malcolm Turnbull’s climate change magic pudding. https://t.co/wt6y7frjf8,212699 +#WorldEnvironmentDay2017 : Dumbest quotes ever on global warming and climate change https://t.co/6C85qzfnCb via @IBTimesUK,433115 +who's strong Christian convictions have shaped his... refusal to accept global warming.' Huh? https://t.co/ttfE3NVF6C,596894 +RT @CalumWorthy: We're halfway through #24HoursofReality. Tell me why you care about climate change w/#24HoursofReality and your pos…,744616 +"After centuries of first hand reports & historical data, lib's can't believe in Jesus/God. Faith in climate change… https://t.co/shMNaEpX1B",700389 +Using the world’s longest lived animals to learn about climate change: https://t.co/gDaHzJIdHk https://t.co/FDNTeJoiTX,499577 +"In the southeast, voters backed Trump—but unless he tackles climate change, they may suffer https://t.co/B4EhtpvtGw",939324 +RT @cnni: Donald Trump has called climate change 'a hoax.' Here's what could happen if he rolls back anti-pollution measures https://t.co/Q…,444327 +"RT @solar_chase: I'm frightened by this as evidence of climate change, but pleased at less social pressure to participate in expensi… ",899081 +RT @RawStory: ‘Stop using our video to mislead Americans’: Weather Channel slams Breitbart on climate change denial…,562893 +"Climate change: Fresh doubt over global warming 'pause' +https://t.co/q7vgo6g2jd",430444 +RT @DailySignal: Trump’s EPA chief backs an approach to science that could upend the global warming 'consensus.'…,590926 +@MrDarcyRevenge @CodeFord That looks like global freezing .. not global warming. That's the opposite of the issue.,301275 +RT @joostbrinkman: Wall Street is starting to care about climate change - Axios https://t.co/rXhQQCGx1I,341119 +"RT @PrisonPlanet: The same amount of evidence exists for man-made climate change as Russia 'hacking' the election. + +None whatsoever. + +#Pari…",629890 +"Harvard faculty condemn Trump's withdrawal from climate change agreement +https://t.co/hhDCOF7neW",292105 +RT @IUCN: Not all species are equal in the face of climate change https://t.co/7nzq1kMB4d https://t.co/Nfmpc08Tpr,598093 +RT @DenverWestword: Trump's pick for head of the EPA thinks 'climate change' is a bullying tactic of the left. https://t.co/p3yJ190mwk,578681 +"@JordanUhl @realDonaldTrump I for one love pollution, filthy water, and global warming.",450187 +"RT @CNN: Bernie Sanders: Trump’s order that dismantled climate change regulations is “nonsensical,” “stupid,” and “dangerous” https://t.co/…",806371 +@washingtonpost Yawn. So are you back to global warming now or what?,377791 +RT @termiteking: Trump doesn't care about climate change but we outnumber him. He won't do anything about it but WE will,552683 +New: UK worries about climate change are at their highest level for 5 years https://t.co/EXUEcpQExJ https://t.co/F2PpF6chnM,310662 +"RT @wanderlustmag: How climate change is ruining coral reefs and the changes that can be made +https://t.co/fJLduyIDcs +#climatechange…",493968 +RT @lilmuertitaa: you gotta be the biggest dumbass in the world if you think climate change isn't happening,213428 +RT @FT: Martin Wolf: That the US presidential campaign has unfolded without a focus on climate change is astounding…,323918 +RT @uclg_org: The Climate Summit for Local and Regional Leaders will discuss local action against climate change #COP22…,659778 +"RT @rtpetr: The major US TV networks covered climate change for a grand total of 50 minutes last year—combined + +https://t.co/lxdDFCVWAH",931821 +@LeoDiCaprio How can we stop Trump from destroying all the progress we've made with climate change?,466144 +"Together, we can create lasting impact to protect communities and wildlife from climate change. As the world goes... https://t.co/s83FCmdFfk",485827 +RT @EthanCordsForMN: Trump's presidency will be disastrous for progressive issues such as combating climate change & creating a #MedicareFo…,576534 +RT @JonahNRO: I don't think you got the memo that you're not allowed to say anything positive about climate change. https://t.co/p0ok3eV9jJ,880020 +SecNewsBot: Hacker News - Morocco is a perfect place for the world’s biggest climate change conference https://t.co/SrAZsC1rAE,983767 +RT @KelseyHunterCK: .@ClimateKIC commits to 6 action areas in climate change adaptation - launch of new adaptation innovation approach…,307996 +RT @FCAtlanta: #RegionNews: Atlanta emerging as a nexus to address climate change and global health https://t.co/vNo7bR4Ogj via @SaportaRe…,901703 +remember that time global warming literally took away our winter,787373 +RT @World_Wildlife: Saving forests is crucial to fighting climate change. WWF's Josefina Braña-Varela blogs for #BeforetheFlood: https://t.…,488684 +RT @ThisWeekABC: Michael Bloomberg urges world leaders not to follow Pres. Trump's lead on climate change https://t.co/H4cRcR9vNM https://t…,138535 +RT @browndoode: They should make not believing in climate change a crime. Punishable my forced to wrestle a polar bear,116502 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,418892 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,695046 +"Maybe @realDonaldTrump should read this, stop being a climate change denier! https://t.co/8I95aJt5Es",601032 +"RT @QueequegO925: Our planet isn't experiencing global warming, just an alternative climate.",260117 +Research in climate change will be targeted for cuts. https://t.co/46qzQXLCBu,84408 +"Even at the temperatures we are aiming for, many people will suffer from climate change' - @kevinanderson… https://t.co/RHeIpVTBoM",438427 +RT @4apfelmus: Does anyone think Lady Gaga is a good thimg? I really love global warming,260358 +@BarackObama @HillaryClinton Youre supposed 2 fight for #PeopleOverProfits & climate change. Fight against major co… https://t.co/Wa6Ophd6tv,564732 +RT @VICE: Ivanka Trump met with Al Gore to chat about climate change: https://t.co/bLdevP5Ram https://t.co/fww0u1o3eJ,727187 +the question is not 'do you believe in climate change' it's 'are you aware of the fact it exists',126996 +RT @MeganLeeJoy: Kicking off a global warming 'Winter' season w/ the #RevolveWinterFormal tonight: Drinking away democracy AND depression!…,166715 +"RT @Alex_Verbeek: Nicholas Stern: cost of global warming ‘is worse than I feared’ + +https://t.co/SSBN3BNS1q #climate #climatechange…",941101 +RT @BruceBartlett: Why the left loses & right wins--NYT so open minded it hires a climate change denier; WSJ editorial page won't allow any…,963211 +"RT @Slate: Leftie cities want to fight climate change, but won't take the most obvious step to do it. https://t.co/xbZsc9GU4g https://t.co/…",206732 +Donald Trump urged to ditch his climate change denial by 630 major firms who warn it 'puts… https://t.co/ghGGgMLL9T https://t.co/QsAHewfyX0,754664 +@TewwTALL the joys of global warming,991119 +@AndrewSiffert @70_dbz The next hurricane to hit US will be climate change related because the media will say so. And they're never wrong.,573773 +RT @Khanoisseur: Esteemed climate change scientist Ivanka Trump's in charge of reviewing whether US should withdraw from Paris Treaty https…,733913 +So how little of a brain does it take to support an administration that doesn't believe in climate change? https://t.co/phs441H1nl,324298 +@HeyTammyBruce @CBSNews fake news and Not global warming like you and sanders kept harping about when ISIS is a big problem?,286589 +Most people don’t know climate change is entirely human-made https://t.co/3xyaHvrWM0 https://t.co/CcnXb2pjtx,452072 +Pope Francis handed Trump his encyclical on climate change after their meeting … Pope Francis ��,574560 +@EJohns_1004 it's hard to find any reason to back her up except for her possible concerns for some social issues & climate change,582553 +RT @RobinWhitlock66: Energy Department climate office bans use of phrase ‘climate change’ https://t.co/CpscLQbgp2,387930 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,106633 +"RT @solartrustcentr: 'Is climate change real, and is the world actually getting warmer?' | @Independent https://t.co/BULmJBy2me https://t.c…",209318 +"RT @Neighhomie: u know what pisses me off?? that climate change was not a topic during any of the presidential debates,none of theM. absolU…",247440 +"RT @thinkprogress: ‘Game of Thrones’ star: ‘I saw global warming with my own eyes, and it’s terrifying’ https://t.co/OqIOQ5mI2J https://t.c…",645123 +"Customs bill would limit president's actions on climate change: PARIS, FRANCE – Last night the conference comm.. https://t.co/32q7sKaEUh",632243 +"RT @AstroKatie: If you were going to be a single-issue voter, not making global warming even worse would be a good issue to choose. https:/…",41005 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,510964 +RT @CBSNews: Bernie Sanders: 'What astounds me is that we now have a president-elect who does not believe climate change is real…,126015 +"Once again @rooshv has been proven correct. #FraudNewsCNN blames obesity & global warming. We know the real reason. + +https://t.co/yP7xKMmioE",925313 +RT @Jinkination: This Jinki fancam of 'Excuse me miss' is the reason why global warming is increasing..call the environmental police…,946901 +RT @guardian: Gas grab and global warming could wipe out Wadden Sea heritage site https://t.co/cgiK0GujVW,645629 +"China clarifies for Trump: uh, no, global warming is not a Chinese hoax https://t.co/uxRQLRn8HK https://t.co/Opy5ychd0C + +China clarifies …",568781 +RT @angiebooh: 'politicians discussing global warming' https://t.co/ezMyPJ5CkI,966168 +Adapting to climate change means adapting to Trump – here's how | Dr Aditya V Bahadur: Donald Trump’s scepticism… https://t.co/b2xPqy8GiD,164600 +RT @MotherNatureNet: This coral doesn't sweat the heat -- and may tell us a thing or two about climate change https://t.co/Y7IhcnaSC4 https…,76245 +"@homojihad maybe, and yet, the president claims climate change is a chinese conspiracy, while having to pay flood insurance in Florida.",54719 +RT @Greenpeace: Inaction on climate change 'would be the end of the world as we know it and I have all the evidence'…,7509 +"Keep it in the ground: Shell's 1991 film warning of climate change danger uncovered + +https://t.co/VJaRxAbsJb",434728 +RT @ClimateCentral: A key Atlantic Ocean current could be more likely to collapse because of global warming than previously thought…,68985 +"Sooo sad how climate change leads to drought, leads to violence, leads to extinction of beautiful species.… https://t.co/1QiiOVNVxA",889229 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,617853 +"We can now stop worrying about climate change, war, famine, epidemics, asteroids, & all other mundane ways we can d… https://t.co/juGqRq9DYH",230037 +@cnni I'll have climate change for a 1000 Alex,598028 +"RT @ajplus: ExxonMobil has been knowingly deceiving the public about the severity and effects of climate change, researchers at @Harvard fo…",934017 +RT @good4politics: Articles? like global warming articles? This are many and fake too. @speakout_april @const_liberty1 @USAPatriot2A @Pecul…,204685 +RT @fintlaw: 'Arctic ice melt could trigger uncontrollable climate change at global level' @guardian https://t.co/kHixiauAqT,275992 +RT @mariyhisss: global warming 🤔 https://t.co/eAQVJm1RaQ,365621 +It sucks and climate change is real but this is typical for lousy Smarch. #dlws,71091 +RT @WeNeededHillary: Trump to drop climate change from environmental reviews: Bloomberg https://t.co/O2g3MItioS https://t.co/2uUMvyeDp6,972408 +"RT @ela1ine: As climate change heats up, Arctic residents struggle to keep their homes #Arctic https://t.co/Jy3AS76Hgd #arctic",109470 +In our alternate universe Kanye performs in Philly tonight & denounces Trump & donates $ to prevent climate change… https://t.co/Cb7oNz20os,79549 +"To fight climate change we need #hope. @GlobalEcoGuy explains'Hope is really a verb...And it changes the world.' +https://t.co/3G7pxsMMU0",362284 +RT @ShadowBeatzInc: My president-elect thinks global warming is a hoax ðŸ˜,87027 +"I think around 45 other MP's as well. While you're at it, creationism, climate change and women's rights too.… https://t.co/30c6qPxgQC",7240 +"@joeallenii @A_helena @Reuters oh didn't you hear, global warming also causes cooling in other areas??? Lmao off. The climate changes period",703452 +From climate change by planting crops that trap carbon.,145197 +RT @USFreedomArmy: Repetition works. Just ask the 'global warming' fanatics. Enlist in the #USFA at https://t.co/oSPeY48nOh. Read the…,1945 +RT @DavidCornDC: Every insane thing Donald Trump has said about global warming https://t.co/JUCuqM4ogm via @MotherJones,712767 +RT @UN: 12 #globalgoals are directly linked to climate change. The #ParisAgreement is crucial to achieve them.…,511943 +RT @Reuters: Vatican urges Trump to reconsider climate change position https://t.co/CuAw71CHdv,228503 +"RT @TheMarkRomano: Crazy person explains how 'climate change' is causing wars. + +THIS is the intellectual garbage pushed in college. + +https:…",675038 +RT @liz_buckley: Trump's climate change research. His uncle - a great guy - had 'feelings' https://t.co/h7TsAPGu6B,850882 +"We now know whales help halt climate change +What is the real reason for #Japans ocean assault? +#OpWhales https://t.co/3wWEvEqP2c",157092 +RT @Sustainable_A: #ClimateChange #GIF #New #climate change @Giphy https://t.co/Qa3pjS8hEn https://t.co/rt4NsfToF4,993050 +RT @TEDTalks: Why climate change is a human rights issue: https://t.co/BJWVGworr5 https://t.co/XtdBhF2qHI,190667 +RT @KevinDeKock2: If my calculations are correct (and they are) the nuclear winter will cancel out global warming and Earth will reset to p…,56081 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,320095 +RT @madfreshrisa: Ppl keep theorizing a/b climate change. Islanders don't have that luxury. We see the water rise & we prepare for somethin…,124432 +RT @KTNNews: Do you think you have a personal role to play in fighting climate change? #Worldview @SophiaWanuna @TrixIngado,929212 +U.S. allies plan to give DT an earful on climate change at G-7 summit - The Washington Post https://t.co/VNsn1Zb1vo,770494 +RT @maoridays: florida can drown global warming and natural selection is coming for y'all,759292 +Wow. Woke up to this news. Can't believe people are still denying climate change. The hurts... Huge blow to the Ear… https://t.co/S9HyIdgWv9,726964 +RT @NuclearAnthro: region of US that denies climate change & hates feds will now demand federal aid to cushion consequences of their s…,355876 +RT @SierraClub: EPA chief Scott Pruitt says carbon dioxide is not a primary contributor to climate change https://t.co/2ivfl09IGU https://t…,932500 +"RT @BadHombreNPS: Here's a video on the basics on climate change (because reading is hard for some presidents, apparently): @EPA https://t.…",251875 +RT @thehill: EPA shuts down program helping states adjust to climate change https://t.co/uDC73UjMIX https://t.co/II0pLFNcff,147687 +All these natural (really unnatural bc climate change) disaster going on the most sickening thing is seeing countries fight for relief,124352 +"RT @sethmoulton: The swamp's rising.�� +(Don't blame it on climate change, @GOP.) https://t.co/Sv5QYwQONk",567215 +RT @jaime_brush: Urge President-elect Trump to take climate change seriously and enact policies that will repair our planet. https://t.co/w…,47328 +"Here’s how climate change is already affecting your health, based on the state you live in https://t.co/qdDZbWSiMJ https://t.co/teIgJM4sHH",384546 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,714132 +RT @Independent: China to Donald Trump: climate change is not a hoax we made up https://t.co/1moVjqiMiT,744069 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/tVa99QMXUw,904328 +We will stand tall against the dark forces that denies climate change. @GreenLatino @DorothyFahn @Greenpeace https://t.co/KFUlTVYWtf,174271 +RT @prageru: Do you believe man-made climate change is happening?,946120 +RT @climatehawk1: Trump’s election marks end of any serious hope of limiting #climate change to 2C | @drvox https://t.co/O4uA38Ayq6…,340483 +The new Bill Nye show's first episode was about global warming and I can't believe the liberals brainwashed him too ��,280836 +#TechNews Air pollution deaths expected to rise due to climate change - https://t.co/PgLhUsQmyq,44911 +"RT @ajplus: 'You might as well not believe in gravity.' + +Leo slams climate change skeptics. https://t.co/kdzZbcZHCL",438926 +"@TomiLahren Here is why we liberals care about climate change, guys. https://t.co/Qg14Xr5Sfu",502640 +"RT @gellibeenz: Only Greyface denies global warming. Don't be like Greyface. +#EarthDay +#ScienceMarch https://t.co/HT8jqo67JH",613771 +It's 57 degrees and tn it's gonna drop to 30 and we are going to get 8-10 inches of snow u wanna tell me again how global warming is a myth?,295236 +The delusions of climate change religion. Justify poor character and action because 'I'm saving the world'. https://t.co/665E2uoSAl,651182 +Google:Kinder Morgan Canada president doesn't know if humans causing climate change - Vancouver Sun https://t.co/gQtgfXtBsA,113815 +@RobertWoodham2 @EcoSexuality @peter_upfield @peidays306 @realDonaldTrump Very true - we have to get out - global warming is a hoax -,70411 +Midwestern agriculture stands to lose with climate change skeptics in charge https://t.co/pAswsbsBuc,770580 +@grip__terry They make planetary climate change. Proud people.,425733 +We were talking about global warming then last vegas then smoking then pot then to birds dying bc of windmills and solar panels,952906 +https://t.co/i9PZjYWVL5 Rally to protest Donald Trump's climate change stance marks US president's 100th day - NEWS… https://t.co/hTckHp2ZBy,859485 +"RT @aparnapkin: FACT: There are 50 states +ALT FACT: numbers are a hoax invented by climate change",567060 +"@CoralieVrxx pretty good movie, worth watching if you're interested in sciences/global warming etc. (and Leonardo DiCaprio is a babe.)",533881 +Arnold Schwarzenegger doesn't give a damn if you believe In climate change https://t.co/FF87dgM0Ad,470525 +"#Stella #blizzard2017 reveal all the 'it's snowing, therefore global warming isn't real' idiots that don't seem to understand basic science.",848469 +Trial of the millennium': Judge rules kids can sue US government over climate change - RT https://t.co/OmMUslLXXI,568784 +RT @BernieSanders: Trump: Want to know what fake news is? Your denial of climate change and the lies spread by fossil fuel companies to pro…,877185 +@jpzeeb @acarroll_1114 this is the scariest response to climate change I've ever heard 'you can't stop it so let's just trash the earth',168726 +RT @eco_warrior17: Prince Charles: We must act on climate change to avoid 'potentially devastating consequences' https://t.co/eGFGBL72HI vi…,587093 +RT @Smethanie: Just told the dog Scott Pruitt's thoughts on climate change https://t.co/zK7qpxQWrL,987387 +"RT @washingtonpost: Stop hoping we can fix climate change by pulling carbon out of the air, scientists warn + https://t.co/Ps9TU2E6JX",342669 +"Remember when #Trump bragged about committing sexual assault, disregarded the Geneva conventions, and called climate change a hoax?",725378 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",487075 +Al Gore offers to work with Trump on climate change https://t.co/Jf5a23y4v1,344476 +"RT @thewrens: I'm not saying global warming isn't real, I'm just saying this is one of the colder summers I can remember.",332836 +"My EPA boy, Scott Pruitt, said CO2 isn't a primary contributor to global warming. Rollin' back those regs for grey… https://t.co/DfSBZXVNXW",767844 +"Take a stand: Democracy, climate change, people & planet-there's a lot to do: https://t.co/o00gSYINL2 #ClimateMarch #May1Strike@fairworldprj",262960 +RT @hockeyschtick1: 'Sundance filmgoers warn of ‘global warming’ impacts. Warn 'criminal’ deniers: ‘We are coming for you’' https://t.co/pc…,71648 +RT @Blurred_Trees: This turd gave $2.65 billion over 5 years to help developing countries 'fight climate change' - while 1000's here s…,529828 +"RT @itsmeghun: 'Our children won't have time to debate the existance of climate change. They'll be busy dealing with its effects.' +THANK YO…",980495 +RT @Alyssa_Milano: Please join me in following these organizations fighting climate change @SierraClub @greenpeaceusa @350…,389168 +We have to build a global citizenry fluent in the concepts of climate change #internationalmotherearthday #SDGs… https://t.co/8DHW4Pvnru,981338 +@Mariobatali @Ugaman72 @ChelseaClinton Mario there is only climate change in Russia come on now,795799 +RT @Independent: Trump forces environment agency to delete all climate change references from its website https://t.co/I1kQv2zu3M,976940 +"@PatrickH63 here's a fact, all the predictive models of the last 40 yrs based on global warming have been wrong. + +@Hjbenavi927 @ScottInSC",96321 +"RT @MitchellLawre20: Trustworthy: Pick a lie, any lie. Inauguration crowd, voter fraud, climate change hoax, etc. You have a whole buffet…",41753 +@Seeker The term Climate change is senseless. The climate is always changing. What happened to the term global warming?,194110 +"RT @ecshowalter: Poss death of early cherry blossoms by huge DC snowstorm tomorrow prob climate change, but feels like decree of evil kin…",504128 +"RT @kibblesmith: [Trump makes National Parks delete tweet] + +Dormant Yellowstone Super-Volcano: You want to see some climate change motherfu…",780124 +I'll start the global warming and melt the ice caps with you!,356023 +#CBC Please end the climate change debate to SAVE THE PLANET B 4 it's too late and allow science to say 'proven' for a CO2 end of the world.,398872 +"RT @londonerabroad: Europe faces droughts, floods and storms as climate change accelerates https://t.co/jDDOZ7q82A",345019 +"RT @thefader: Pages dedicated to climate change, civil rights, and more have been removed from the White House website.… ",776169 +"RT @billmckibben: Trump is making biggest bet any leader has ever made: physics isn't real, and climate change can be safely ignored https:…",359849 +@FoxNews so climate change people are criminals? Well now we know,311294 +"@brianalynn_27 your avi is the sole reason my heart beats, a true masterpiece, a gift from god himself, you have cured global warming",618627 +"Carson rejects evolution and climate change, despite overwhelming scientific evidence to the contrary.... https://t.co/miifMq1s1o",155605 +@IvankaTrump @realDonaldTrump THIS is how you make climate change your 'signature' policy? By destroying the planet? #NotMyPresident,397357 +"RT @shampainandcola: Lana: *breathes* +Media: Lana Del Rey is sucking oxygen from the air because she wants global warming so she can die fa…",880594 +"RT @colinmochrie: Lord Dampnut, the device you tweet on at 3am was invented and developed by those who believe in climate change. So pull…",282389 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,8701 +RT @ClimateCentral: Cities from Sydney to Oslo are setting more ambitious targets to cut climate change than their nations https://t.co/nKH…,646950 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,701935 +Donald Trump fails to mention climate change in Earth Day statement #WorldNews https://t.co/xGQNbZpkv0 https://t.co/sh2ITfW3ku,867236 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",169205 +"RT @Chris_Meloni: I repeat: the world is round, the sun stationary, climate change real, and grieving parents in Sandy Hook. Anything… ",677356 +"RT @nytpolitics: Michael Bloomberg says cities will fight climate change, with or without Donald Trump https://t.co/bMd5qKaEFu https://t.co…",551956 +RT @GreenPartyUS: There is only one Presidential ticket taking the biggest threat to our planet - ðŸŒ climate change ðŸŒ - seriously:…,239983 +"RT @alaskapublic: In a rare case of river piracy in the Yukon, climate change is the culprit https://t.co/uHOLUxImn8 https://t.co/91ZtbqaPkt",829555 +"RT @CBSNews: Six ocean hot spots with the biggest mix of species are getting hit hardest by global warming, industrial fishing:… ",90918 +I clicked to stop global warming @Care2: https://t.co/6RBaniGYy6,604275 +64% of Americans are concerned about climate change so why are we stocking the cabinet with morons who straight up don't believe it exists?,172579 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,9475 +Schroders issues climate change warning: Financial Times: “[Global warming] is a real… https://t.co/7G8xZur0Uf,924591 +RT @FatimaAlQadiri: it's 2016 and the biggest threat facing our planet is Nazis & climate change. like Al Gore & Quentin Tarantino made a B…,676803 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,715117 +"Literally global warming is real, shut up.",795553 +@tveitdal I pledge my support to reduce global warming.,672587 +"RT @KatieKummet: Trees for deforestation +Elephants for poaching +Jews for Hitler +Polar bears for global warming +Blacks for the KKK https://t…",273880 +"Shankland bills target climate change, DNR staffing - Stevens Point Journal https://t.co/37xGGEikyH",29004 +RT @theoceanproject: Paris climate change agreement enters into force https://t.co/UhxOtgwmu6 #COP22,596291 +"France, U.N. tell Trump action on climate change unstoppable https://t.co/mP1A4QMTnT",594134 +RT @cwebbonline: It's a crime that we went this whole election cycle with barely a mention of climate change! #BeforeTheFlood…,684013 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",262766 +"@TJackson432 @RichardDawkins Also, when something has scientific consensus that human influence on climate change h… https://t.co/0STzfH2p5u",332492 +"RT @chelseahandler: Yeah, who cares about climate change? Only every single person with a child. Republicans in congress need to end this c…",33218 +"Me talking about climate change with my grandma + +Her: 'Es porque trump es presidente y a dios no le gusta'",511329 +"tell me, akhi, whats life like in the alternate reality you live in? y'all doin the whole climate change thing too? https://t.co/vZLAKyNxFr",626443 +RT @SenKamalaHarris: Science & technology drives our economy and is our only hope to combat global climate change. We need scientists. http…,76165 +"@drownedworld True, but Chewbacca Pontius Yasin is committed to stopping global warming, while all Crumb cares about is drone warfare.",210055 +"@SpeakerRyan climate change is REAL. Pope Francis believes, so should you.",145456 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,131138 +RT @marxismflairism: And it will only get worse each monsoon season due to climate change. Climate change disproportionately impacts poorer…,864046 +"Google:Now under attack, EPA's work on climate change has been going on for decades - The Conversation US https://t.co/z7zz4gIupj",226831 +@ShelleyGolfs global warming!,641620 +im 90% sure there is a mosquito in my room this is all because climate change!! it better not be a female anopheles,121792 +RT @InsuranceBureau: .@IBC_CEO attributes high CAT losses to: increased severe weather linked to climate change & poor land use policies…,593310 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",998283 +Great Barrier Reef is A-OK says climate change denier as she manhandles coral https://t.co/pZj20v5lQ4 by @mashable… https://t.co/wbFjJP5Egz,366049 +RT @mitchellvii: Hollywood should lead on climate change by giving up all the comforts of modern life rather than giving speeches from thei…,790955 +RT @brianschatz: I want a bipartisan dialogue on how to prepare for severe weather caused by climate change. Severe weather costs li…,484959 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,518884 +RT @zoesteckel: If we were actually entering normal December all this rain would be snow but global warming doesn't exist right lol,444593 +RT @OurRevolution: Fracking pollutes water & worsens climate change. No amount of regulation can make it safe. The time to move to sus…,285948 +RT @tutticontenti: Overfishing could be the next problem for climate change https://t.co/kTnOQOYD4o via @Salon,262411 +RT @AgnesMONFRET: Super-heatwaves of 55°C to emerge if global warming continues #ClimateChange #ClimateAction https://t.co/q2Wjy5Gc9Z,544648 +"RT @DisavowTrump16: Tomorrow is Earth Day and if America would've chosen wiser, we could be fighting climate change instead of denying…",181962 +@1thinchip @Bitcoin_IRA They probably just created it to ruin our economy...like global warming.,29667 +"RT @enigmaticpapi: Even if you don't believe in climate change, WHY WOULD YOU BE AGAINST MAKING THE WORLD A BETTER PLACE???? https://t.co/Q…",101815 +RT @HuffingtonPost: Mayoral candidate follows up climate change skepticism with green energy pledge https://t.co/ZmqbMNaZQq https://t.co/yv…,484679 +"Rick 'Glasses Make Me Smarter' Perry as leader of the DOE. Openly a climate change denier, and STILL has a site up running for POTUS 2016. 😡",165310 +RT @Conservatexian: News post: 'Sally Kohn’s latest evidence of climate change proves she is ‘not a smart person’' https://t.co/72WsWJxxdJ,991755 +"RT @ClimateCentral: One graphic, a lot of months of global warming https://t.co/m5vWPwUnYc https://t.co/DxAy1yCQEr",753084 +@imatu777 @LordAcrips No it doesn't. It's a Chinese myth like climate change.,645827 +"@holly_lanier I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",797101 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,652094 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",415350 +RT @davidsirota: WOW: “You and your friends will die of old age and I’m going to die from climate change.â€ https://t.co/tFswYjwczQ,988696 +"Th teaser for GUILT TRIP +a climate change film with a skiing problem is dropping today. +The… https://t.co/wXKmLxqwvH",254341 +#CWParis https://t.co/a0F9709CTr Take a look at what else the climate change protesters in Copenhagen are promoting.,619928 +"@mauricemalone I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",733556 +RT @jonathanvswan: 'We will cancel billions of dollars of global warming payments to the United Nations. We don't even know what they do wi…,874389 +"Extensive, irrefutable scientific proof that the War of 1812 caused global warming.. +Makes as much sense as the oth… https://t.co/hsNZg4gpNF",889535 +"RT @MeckeringBoy: Cost of climate change? + +World's economy will lose $12tn unless greenhouse gases are tackled +CO2 +https://t.co/XIuKadtGS8…",18492 +"Dems MUST fight 2 end income inequality, raise min wage, battle climate change, safe gun cntrl, justice reform, state&fed level w/o GOP",212156 +RT @RealMuckmaker: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/1BHBphcbQc,446936 +RT @womensart1: Argentinian artist Andrea Juan's decade of Antarctica performances/installations highlighting climate change/ecolog…,99337 +RT @simon_reeve: 'Arctic ice melt could trigger uncontrollable climate change at global level ' https://t.co/Eh5YO0XGGX #ArcticLive,366122 +RT @ComedyPics: if global warming isn't real then explain this https://t.co/S8UyJdt2cv,857685 +"@POTUS deleting climate change , ok it's your vision. But minority rights? Do you love to be hated? Saravá!",752290 +"RT @AGSchneiderman: I will continue the urgent fight to protect our planet from climate change, and to hold those who threaten our environm…",784519 +Not to mention listening for more than 3 seconds to climate change deniers https://t.co/Rh0sWzePv8,841029 +"RT @camscience: Astronomer Royal Lord Martin Rees discusses what we can do about climate change, Thurs 16 Mar. Book free ticket:…",818114 +RT @SteveSGoddard: The global warming is bad in Arizona today! https://t.co/3Vc3QtihFo,391759 +Sudan's farmers work to save good soils as climate change brings desert closer | Hannah McNeish: Haphazard rains… https://t.co/KEPlaFp0oZ,218217 +"On climate change, Scott Pruitt causes an uproar - and contradicts the EPA’s own website https://t.co/pVWgXRW20O",514458 +"Ralph Cicerone, former UC Irvine chancellor who studied the causes of climate change, dies at 73 - Los Angeles Times https://t.co/fqGVQGVi80",725621 +"So... Texas, about to be directly impacted by climate change, is probably going to be requesting federal emergency assistance, shortly...",277280 +The people denying climate change are the ones saying 'I know more about science than a large majority of professional scientists.',960351 +Can we find this man another planet? Trump’s head of Env Protection not convinced our CO2 drives climate change. https://t.co/3A6NPQz4y1,497022 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/MCNFdH1ehb https://t.co/Mux…,673763 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",576817 +RT @greenroofsuk: Study recommends huge #taxes on beef and #dairy to reduce #emissions and 'save #lives' - #climate change https://t.co/Dlj…,113307 +Will climate change really destroy our ecosystem in near future? https://t.co/jFHdGRhdrx #globalwarming,623916 +"The greatest danger to America is not ISIS, Russia, or climate change--it's Barack HUSSEIN Obama. https://t.co/5cLNF0TDG6",650738 +"RT @JamesPMorrison: If you can't have an opinion on climate change cause you're 'not a scientist,' you can't have one on abortion if you're…",647394 +RT @HaynesParker1: Libs/the press love to hype climate change even global ice age coming in the 1970s it's all about a carbon tax on y…,764007 +NJ Senate to vote on bill authorizing electric school buses — a tool to reduce carbon emissions & fight climate change. TY @SenGreenstein,732898 +"RT @AstroKatie: In case you were wondering: no, 4 years of US-led inaction on climate change will not go well for the planet. Now is when i…",391659 +RT @elliegoulding: The UK Govt approving a third runway shows that they are in denial about climate change- mankind's greatest threat. Very…,175838 +RT @SBondyNYDN: It's crazy to me that our future president believes climate change is a hoax. https://t.co/rXUoWYx2ay,467890 +If my friends only knew I'm not going to the club w/them tonight cause I got too into reading about parallel universes and global warming. 😂,648786 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,192616 +DNR purges climate change from web page - Milwaukee Journal Sentinel https://t.co/rtckoKIscf,280107 +"Greater pre-2020 action is the “last chanceâ€ to limit global warming to 1.5C, says UN Environment Programme https://t.co/oF5aTiwY5z",231690 +"RT @BraddJaffy: Rick Perry: CO2 is not the main driver of climate change + +American Meteorological Society: Wrong! + +https://t.co/k9ecdWDryY",760479 +RT @DixonDiaz4U: Seems like a bunch of Londoners were injured today by the 'biggest threat to humanity': climate change.,220087 +"RT @ReutersWorld: In a rare move, China has criticized Trump's plan to exit the Paris Agreement on climate change:…",27968 +"RT @MsSarahHunter: 'A cheater! A liar! A climate change denier!' 'Say it loud, say it clear! Immigrants are welcome here!' 'No Trump! No KK…",435534 +#3Novices : Does Donad Trump still think climate change is a hoax? No one can say https://t.co/tIsI7YKIDR The White House refused to say w…,906542 +RT @climateprogress: TV coverage of climate fell 66 percent during a record-setting year for global warming https://t.co/bmhVjr8aWP,682632 +RT @sean_gra: 2/2 that was struck to find the best way to fulfill the NDP's promise to address climate change: https://t.co/QwAhAIclAm #a…,807456 +RT @ConversationUK: 3 reasons we should shift public discourse from 'climate change' to 'pollution' https://t.co/jVB0r1XqB5,985511 +RT @NRDC: Here’s why the @NRDC filed a FOIA request re: Scott Pruitt’s comments on CO2 and climate change. https://t.co/wm7fzvIE6t,531101 +RT @KekReddington: Founder of the weather channel calls global warming a huge hoax founded on faked data and junk science https://t.co/CUUP…,405436 +RT @creative4good: Great infographic showing the impact climate change has on fisheries http://t.co/6OIHDeLQCb via @cisl_cambridge http://t…,477213 +RT @latimes: Which states are trying to reduce greenhouse gas emissions? Take a look at America's fight against climate change…,440967 +RT @jeongsyeons: im sick of people acting like twice's lightstick didnt end global warming,334834 +"RT @naturaeambiente: Cop22, da Parigi a Marrakesh: la sfida contro il global warming https://t.co/eWHuVPxZ6W",906815 +RT @Alyssa_Milano: This is huge. Kids suing the government over climate change can proceed to trial: https://t.co/C53TlAEN13 via @slate,478680 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,184856 +RT @bozchron: Opinions: Denying climate change ignores basic science https://t.co/Yt20qxUCu4 #bdcnews #bdcnews,527493 +RT @DavidJo52951945: When we leave the EU we need to get rid of EU climate change rules https://t.co/VZNGLyKEZB,562159 +"RT @hvgoenka: Huge hands rise out of the water in Venice, Italy. This sculpture aims to highlight the threat of climate change . https://t.…",244745 +New York braces for the looming threats of climate change https://t.co/stJCKSIhFf ^France24,642003 +Study finds global warming could steal postcard-perfect days (from @AP):bad for agriculture https://t.co/vhchGC2FKa,357986 +"RT @Owl_131: Another delusional Democrat, lining his pockets with taxpayer funded schemes. No global warming? How about climate…",46480 +"RT @DavidGrann: National Geographic asked photographers to show the impact of climate change, here’s what they shot https://t.co/ZtqmoA6Mvy",49925 +RT @washingtonpost: Trump meets with Princeton physicist who says global warming is good for us https://t.co/NPbR10qZwL,979680 +"RT @hourlyterrier: MAY: I need 6 weeks to improve my position + +EU: OK + +MAY: *Returns with some climate change denying, fundamentalist…",662792 +The denial of climate change and global warming is the most idiotic strategic move from #Trump ever !!! https://t.co/C2bmuJqZse,75837 +RT @LenniMontiel: NOW - Get into the facebook chat on climate change & inequalities https://t.co/bxEP21qwpc #WESSchat here with the a…,943024 +RT @AltNatParkSer: Somewhere a US student is desperately trying to find the government's stance on climate change for a Spring paper due to…,576033 +EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/kY7njEZK5L,345642 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,634597 +RT @Marchant9876: 'Vocal minority': Wife of Liberal Party powerbroker quits over lack of action on climate change https://t.co/cDg8QGezzF…,743366 +"Canada not ready for catastrophic effects of climate change, report warns: The report graded each province an... https://t.co/ySQgh5QpKa",573632 +"RT @V_of_Europe: Terrorism, climate change, cyber attacks atop official Amsterdam risk assessment list https://t.co/PEKXFNWMqR",292228 +Seven things to know about climate change–National Geographic' https://t.co/FIBqtG6369,843750 +@exxonmobil - Exxon climate change controversy: https://t.co/N34QFM7RUm,510205 +"RT @PMOIndia: On issues like climate change and terror, the role of BRICS is important: PM @narendramodi",709542 +"RT @AlexSteffen: We just can't say this enough + +Oil & climate change are at the very core of the current American political crisis.… ",228488 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,922831 +RT @DKAMBinSA: We stand by our promise to continue the battle against climate change #ParisAgreement #WorkingforDK #DKPOL https://t.co/nE0…,579403 +"RT @SafetyPinDaily: The religious case for caring about climate change | By @NesimaAberra +https://t.co/7xKNf3YRWz",395851 +"In an ironic twist: +Based on this theory, will the administration use global warming as rationale for the 'disappoi… https://t.co/1gsumP8Dqy",440675 +"Retweeted Kholla Bashir (@bashir_kholla): + +Worldwide people are much less concerned about climate change.... https://t.co/dsKKtrJegW",714011 +"RT @SimonBanksHB: According to @GeorginaDowner on #QandA, @theipa doesn't have a position on climate change + +https://t.co/T0VGIgPUiK + +#fact…",679588 +RT @JoshMalina: Think how much worse it would be if climate change were real. https://t.co/cP6u15aPjn,154261 +RT @ClimateCentral: Snow cover in North America is on the decline in part due to climate change https://t.co/sY2sDGjPQs https://t.co/pNnGYu…,701991 +RT @airnewsalerts: About two billion people could become climate change refugees by 2100 due to rising ocean levels: Study https://t.co/BC1…,78214 +RT @ClimateCentral: Congress is protecting coasts from climate change with mud https://t.co/i42IFh1dkN https://t.co/ZjTMTteLey,807282 +RT @sacbee_news: California targets dairy cows to combat global warming https://t.co/auwpsEoUaH,668050 +RT @Pamela_Moore13: Terrorists blow up children across Europe but Angela Merkel is unsatisfied with climate change talks. https://t.co/tFnH…,734739 +I just came back to encourage people to watch Before the Flood bc it's super important and climate change is REAL peace out,385189 +"Mexico, a global climate change leader #TCOT #WakeUpAmerica https://t.co/ejpvoV3RYR",413920 +"This is what climate change looks like + +https://t.co/4AY1IaXtbU + +CNN, thanks for more FAKE NEWS!",651019 +@realDonaldTrump I wonder if you are rethinking that climate change is a hoax theory when most of the scientific community says it's real.,255286 +RT @PizzaPartyBen: If global warming is a hoax why is it 8 fucking degrees outside rn,258396 +RT @thehill: Trump admin buries EPA website designed to be kids' guide to climate change https://t.co/dWQcArSzxc https://t.co/hiIZkrXr0K,931784 +RT @charlesmilander: 14 sci-fi books about climate change`s worst case scenarios https://t.co/fHMjpsLFPS https://t.co/Va0EjMJpay,79989 +RT @UNEP: #DYK that #peatlands are a natural way to fight climate change & that satellites are being used to help protect the…,628610 +But global warming is a 'hoax' .... riiiiiiiiiiiiiiight shit drying up like a raisin. https://t.co/Bap8TsamIl,439993 +52 degrees in June. Must be that global warming everyone is talking about,898414 +"RT @melzperspective: EPA chief: Trump to undo Obama plan to curb global warming. +#DemForceNewsBlitz +https://t.co/VMRPPVhiiE",681341 +Climate Champion Seruiratu with climate change leaders at Climate Action Stakeholders Consultation @oceans https://t.co/I9eLvsrvV0,150769 +"@gobbledeegook @Vic_Rollison @GeorginaDowner I doubt they care as long as he trashes climate change response, pro choice policies etc",710936 +"RT @funder: Trump warned of dire effects from climate change in his company's application to build a sea wall + +#TBT #Resist #RT +https://t.…",616628 +RT @100PercFEDUP: #Trumpwins Planned Parenthood..liberal judges..race baiters4hire..Companies who benefit from phony climate change...all #…,811994 +"Indigenous rights are key to preserving forests, climate change study finds https://t.co/KCcYJuPm6y https://t.co/u6buuguT2q",556747 +"RT @morten: @realDonaldTrump This is climate change, Mr. President. It affects us all whether or not you believe in it.",843257 +"RT @insideclimate: Trump's budget treats climate change as the hoax he once called it, slashing funding for action on global warming https:…",99188 +i'm watching bill nye's new show and i'm not even 10 minutes in and he's already talking climate change i LOVE HIM,427006 +RT @XHNews: UN climate conference in Marraketch urges highest political commitment to combat climate change. Find out what Chin…,97899 +RT @NBCNews: Secretary of State Rex Tillerson used the pseudonym 'Wayne Tracker' to email about climate change as Exxon CEO…,706552 +"RT @peta: Meat production is a leading cause of climate change, water waste, and deforestation. If you're concerned about our…",717134 +"From Nasa to climate change: how the Trump presidency will impact science, tech and culture https://t.co/qKytW4J0vI",920814 +RT @freedlander: Trump on climate change and oh my god we are doomed https://t.co/jZtUS5CS8l,583327 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,738594 +"RT @ryanhumm: Planet Earth has power. It doesn't ask: climate change, real? But it asks: what's this marvelous world worth to you? https://…",506262 +RT @AJEnglish: Why you shouldn’t trust climate change deniers - @AJUpFront @mehdirhasan’s Reality Check https://t.co/o2w7vA7dTn,63123 +"RT @SeanMcElwee: during an election that will decide control of the supreme court and action on climate change, this is malpractice.…",929360 +"Retweeted New York Daily News (@NYDailyNews): + +China to Trump: We didn’t invent climate change and it’s not a... https://t.co/Kgh8W4DSzr",741854 +RT @Chemzes: Jesus his first piece for the NYT is about denying climate change. Says polls were wrong about the election so clim…,305707 +"To fight climate change, try one of these diets. New study in @changeclimatic https://t.co/6CzUGcGLtI @FuturityNews",837793 +@jaketapper 2000 scientist say it's 'extremely likely' human activity cause of at least 50% of climate change. Not… https://t.co/KwLBWrprai,742000 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,918334 +"RT @UNICEF: 50m children are on the move and out of the classroom - many fleeing war, poverty & climate change…",956244 +"ministry of energy encourages media on climate change take up +https://t.co/yCDtsefa70 https://t.co/mZJuDScLVS",493656 +RT @RobertStavins: Worth reading re Trump victory & climate change policy https://t.co/0d02CHTYEK @CoralMDavenport @AmyAHarder @LFFriedman…,155104 +UK must not cool stance on global warming: World-renowned British scientist Martin Rees has… https://t.co/lQSsgszsHy,598173 +RT @NatureClimate: Agriculture victim of and solution to climate change https://t.co/YXCUDxicTQ via @YahooNews,693350 +"So @realDonaldTrump , how do you explain the 70 degree weather we had in Scranton here today & now snow if global warming is 'made up'?",858955 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,648396 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,381704 +"Progressives say global warming is a problem. + +I say when @POTUS @realDonaldTrump 'heats up' our economy, global warming goes back burner.",761694 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,880806 +"RT @JCHannah77: The new Minister of the Environment, Michael Gove, with his chief climate change advisor https://t.co/zjlggzqoLg",227080 +"RT @NotJoshEarnest: Esteban Santiago was investigated multiple times by the FBI. Since they didn't find any climate change violations, they…",623268 +RT @hoplitnet: Conservative logic on climate change. https://t.co/xj7EyTwwJX,983828 +Donald Trump pulls US out of global climate change accord https://t.co/qHYhbZDvI4 https://t.co/dQGDemVcxM,802279 +RT @climatehawk1: Four things you can do to stop Donald Trump from making #climate change worse | @PopSci https://t.co/FaF7ekFm3x…,987980 +RT @EcoInternet3: [WATCH] Cycling naked for #climate change: Eyewitness News https://t.co/iZDb5NYpIN #environment,211241 +"100 times more carbon than tropical forests, peatlands matter in the fight against climate change https://t.co/vsfLk3Yu46 via @cifor",265042 +RT @SarahBaska: when ur at a party and u remember ur president doesn't believe in climate change https://t.co/N1m9PCfiEY,174321 +"RT @danspence2006: #DonTheCon idiotic tweets on climate change. + https://t.co/1BtAGsgGHA",461455 +RT @PoliticsNewz: Kids are gearing up to take Trump to court over climate change https://t.co/90KAiyaiJ6 https://t.co/zo5lJ19DXT,399200 +wtf?! someone stood up for a white person?! climate change is real https://t.co/ADLGoadGvw,52238 +Priebus says Pres Trump’s default position is that climate change is 'bunk'. Awful news for US & world. https://t.co/I7B9gxHVDG,619713 +RT @TIME: Google's Earth Day doodle sends an urgent message about climate change https://t.co/3XwgxbVeHk,219773 +Why climate change is good news for wasps https://t.co/9OM91shnLW,276473 +"National Geographic asked photographers to show the impact of climate change, here’s what they shot +https://t.co/8lNdGC44t2",868018 +West Coast states to fight climate change even if #Trump does not,758458 +@wrongwaydan1 @lucmj2003 How inconvenient. Let's have a climate change fundraiser where we serve bacon cheeseburger… https://t.co/7LqEwxAxp4,929280 +"@RiverFilms I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",589155 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",266361 +"RT @PeterGleick: Without #climate change, what are the odds that the worst #drought in California history will be followed by the we… ",914494 +#Google UNEP: .PaulKagame wins #EarthChamps award for leadership in fighting climate change & national environment… https://t.co/P0RAfMGHoJ,560119 +RT @ajplus: This water bottle challenge raises awareness about climate change �� https://t.co/ZFTq66WLEE,486451 +"RT @donaeldunready: Ealdermen keep whining about climate change. Of course climate changes! Winter spring summer autumn, it's called a year…",881623 +"WASHINGTON: While President + +Donald Trump + +'s beliefs about + +global warming + +remain something of a mystery, his ac…… https://t.co/8Ays596xuk",219667 +RT @gnarleymia: people be like global warming isn't real...explain it being 52 degrees rn then,380317 +"RT @manny_ottawa: Delusional are eating their own + +“You and your friends will die of old age and I’m going to die from climate change' http…",221371 +RT @ClimateKIC: The @citiesclimfin lays out how cities and subnational bodies can finance solutions to climate change…,37074 +RT @OCTorg: Reminder: US government has known about danger of climate change for over 5 decades. #youthvgov https://t.co/qnaFSnsRbJ,713540 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,548241 +imagine holding a position in the white house and thinking funding for climate change is a waste of money but a divisive wall isnt. Sad,611865 +Bill Nue Saves the World is so cute and it makes me anxious about climate change at the same time,987116 +RT @Independent: Trump's new executive orders to cut Obama's climate change policies https://t.co/QMqzyabFNM https://t.co/BML3ctOiPQ,322192 +RT @ashenagb: We needed to work on climate change now. We are now four more years behind and I feel that is will be too late to save our pl…,216069 +RT @LuxuryTravel77: 10 places to visit before they disappear due to climate change: https://t.co/Psyibhvhso #travel #thebestisyettocome htt…,629946 +Help us save our climate.Please sign the petition to demand real action against climate change. https://t.co/MxZkuNdtW2 with @jonkortajarena,13575 +RT @TeresaKopec: Which is why Trump was asking for list of scientists working on climate change for Govt. https://t.co/2XsveuvUwK,811195 +RT @NatGeoPhotos: These compelling photos help us visualize climate change:https://t.co/OBwzuViRc7 https://t.co/FeYVHMMF51,265187 +"Proper infrastructure investment must account for climate change, via @HooverInst https://t.co/2TKwP8QV7L",664758 +I didn't realize that they had climate change that far back! https://t.co/x1GgKeQalT,682704 +@Fahrenthold @realDonaldTrump What's with the global warming headline on the phony cover! Bizarre.,403445 +President elect Donald Trump is a global warming denier Tahiti will be under water soon so good time as any to go b… https://t.co/hpjBuIU9eW,254631 +"@SealeTeam1 (1) There is no such thing as global warming. Chuck Norris was cold, so he turned the sun up.",616375 +RT @AP: New EPA chief says he does not believe that carbon dioxide is a primary contributor to global warming. https://t.co/8qw21Gw1sw,772787 +It's fucking November and I'm still in t shirts and track shorts. You can't tell me climate change isn't real.,964612 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",126727 +"RT @washingtonpost: In Trump budget briefing, 'climate change musical' is cited as tax waste. Wait, what? https://t.co/Zz1e74WzSt",804398 +RT @washingtonpost: Analysis: Trump’s climate change shift is really about killing the international order https://t.co/g00Bp4Rdc7,904502 +@WesClarkjr It would also address the future culture of dealing with climate change driven natural disasters as they continue to occur 8/,771068 +RT @climatehawk1: N. Carolina military bases under attack from #climate change | @TheObserver https://t.co/Gm6pyqqwtH #globalwarming…,996118 +And doesn't believe in global warming,48173 +"RT @manakgupta: Terrorism is the BIGGEST threat to world today.....not global warming. + +#LondonAttack +#LondonBridge",210227 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",236789 +RT @CBCAlerts: Expedition to study effect of Arctic warming cancelled due to climate change. Early ice breakup makes Coast Guard ship's tri…,70995 +#NewBluehand #Bluehand Trump: Want to know what fake news is? Your denial of climate change and the lies spread by fossil fuel companies to…,706649 +"RT @StephenWoroniec: ADB warns of 50% more rain under climate change, but continues to fund fossil fuel production +#gas #cleancoal…",785152 +"RT @AYOCali_: Not sayin' I'm for global warming but + +This warm November shit is dope ðŸ˜",905971 +How a rapper is tackling climate change - Deutsche Welle: Deutsche WelleHow a rapper is tackling climate chan... https://t.co/jHjasxglKs,895249 +"RT @kateoneil75: Our children will pay the greatest price for climate change. +What will it take to save them? +What will you do to… ",637993 +We might like this 80 degree day in winter but in a month when it's summer and y'all are melting you'll regret liking global warming,626143 +RT @TheDailyShow: .@jordanklepper finds out how scientists are working with Canada to archive global warming data before the Trump ad…,181536 +RT @MooShooMin: when AQA gives climate change as a 6 marker & the only reason u could remember against climate change is #aqare https://t.c…,462251 +"@TracySueStewar2 Not happy with their climate change stance, my car, hairspray, etc. are not responsible for glacie… https://t.co/5c2EkRbbg2",146057 +"If we want to stop climate change, we're going to have to pay for it https://t.co/u0syR4S5Ae via @HuffPostGreen",186483 +"Sen. Wagner blames body heat, Earth slow death spiral into sun for climate change https://t.co/rixRzNotZt",955391 +"Climate deniers blame global warming on nature. This NASA data begs to differ https://t.co/V5oVLZpx6e +These are what are called facts.",627421 +RT @Independent: Barack Obama has safeguarded America's climate change commitments – for now https://t.co/sCnNxeGJRX,677657 +RT @climatehawk1: Understanding how #climate change is influencing #HurricaneHarvey | @ClimateSignals https://t.co/EcPkQKrg5w…,109807 +RT @LateNightSeth: Ted Cruz once told Seth that global warming is overblown. So we brought in a climate scientist to explain why he’s…,2354 +How climate change hurts the coffee business https://t.co/zSF0qmDADd #NEWS,596661 +Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/zr4ZCUNxIQ,697797 +"RT @NRDC: More permafrost than expected could thaw in the coming years, contributing to climate change. https://t.co/ocdJYz8ZRq via @nytimes",449687 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,89035 +RT @garyscottartist: It's group crit time on Monday - 'show and tell' for my climate change from deconstructed found objects project... htt…,934819 +@ThatGurleyKid but does it really affect any of us if trump doesn't acknowledge climate change?,474445 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,499061 +RT @Libertea2012: Big Oil must pay for climate change. Now we can calculate how much | Myles Allen and Peter C Frumhoff https://t.co/XZZdbT…,222175 +"RT @tulaholmes: Seattle Marched too! ⚡️ “ Protesters march to advocate for greater climate change efforts” + +https://t.co/ldt2PMHIAi https:/…",816137 +Twitter resistance explodes after federal climate change gag order https://t.co/B3BuciJKdb via @HuffPostPol (check out 51 Twitter handles),958446 +RT @VChristabel: I want to be able to understand the people who believe that the government controls the weather but that climate change is…,451394 +RT @supdiskay: lmaoo and people still treat global warming as a joke we're all gonna die https://t.co/ZOrN6XMyF1,988130 +RT @jengerson: Funny how quickly climate change ceases to be an issue when we start talking about ghg-heavy industry in Ontario. https://t.…,39619 +RT @richardbranson: Calling for bold action on climate change https://t.co/qqfEAz98qV @TheElders https://t.co/RYohznljXQ,531092 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",970953 +RT @RichardEngel: Nytimes says report on climate change leaked because source worried Trump admin would suppress findings https://t.co/XhB…,6685 +RT @James_BG: The 'open mind' on Paris Agreement and acceptance of some manmade climate change obviously doesn't extend that far https://t.…,57260 +@PeteWeatherBeat It was very wet too. Wish we would get some of that 'global warming temps' in upstate NY Peter.,339478 +"Climate doesn't care about Pruitt or anyone; climate change will continue and we will lose: fresh water, agricultur… https://t.co/6xqx2l0QGT",854673 +RT @ashokgehlot51: Global warming & climate change is a matter of worry. Switching off lights for an hour will help in creating awareness.…,391664 +RT @LEANAustralia: One set of reasons climate change is a social justice issue. Sooner we have @AlboMP cities minister…,105187 +RT @CNN: Here's what President Trump's executive order on climate change means for the world https://t.co/2ZGK9JDnLB https://t.co/mCevSH3VRH,489312 +"RT @LibyaLiberty: If global warming doesn't get you first, then this will. https://t.co/MbJ1YqIeG6",605384 +"RT @ACCIONA_EN: We teamed up with National Geographic to fight climate change #YEARSproject +https://t.co/xSfGwpg0DE",345792 +"Unsurprising, given pervasive hostility to science, including Darwinism and climate change. https://t.co/PFxA48xmBS",498080 +A disaster for the planet as climate change deniers are handed power: global implications of Trump's ignorance https://t.co/o2yAigdJOE,442883 +@EdMorrissey my climate changed overnight. Yesterday it was windy and rainy. Today it's calm and sunny. It'll change again tomorrow.,366507 +Cold War spy photos of Russia are helping U.S. scientists study climate change https://t.co/ef1YK6pY8o via @VICE https://t.co/3FTV3CxVYU,268424 +@DaveDaverodgers @OntarioGreens We should be focused on eliminating pollution/waste not worrying about 'climate change',548053 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",816356 +Rapid decline of Arctic sea ice a combination of climate change and natural variability https://t.co/Y8GR0PK9I3,319790 +"RT @adirado29: Trump names Scott Pruitt, Oklahoma attorney general suing EPA on climate change, to head the - The Washington Post https://t…",406053 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,749147 +RT @erinisconfused: watching the leo dicaps climate change doc n waiting for him to vape a huge blueberry flavoured cloud into our gd atmos…,860970 +"“...global warming, we know that the real problem is not just fossil fuels – it is the logic of endless growthâ€ https://t.co/9tEjx7KRTt",848457 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",163149 +RT @_Anunnery: @crampell EPA Chief Scott Pruitt says CO2 not contributor to global warming; flat Earth warming because it turned m…,133966 +@Walldo @chrisgeidner Ohhh... like when he told the Times he was open to being good on climate change?,800062 +#wathupondearne 04/08/2017 UPDATE: Research links aerosols to recent slowdown in global warming https://t.co/OGHrsHHZIS :,702964 +Florida voters: this man is not a scientist either so he can't figure out global warming like the rest of us who be… https://t.co/HRF0DNntBt,44870 +"RT @truthout: Noam Chomsky on #DonaldTrump, climate change and our accelerating race toward disaster. https://t.co/4YImHl6lNv #climatechange",370116 +RT @MkIndBrit: @KTHopkins And again the UN silence is deafening. Too busy reaping the financial rewards of climate change policy.,264 +Emmanuel Macron thinks he has convinced Trump to rejoin Paris Agreement on climate change https://t.co/hcCeieJDSl #NewslyTweet,691694 +RT @CounterMoonbat: The people who predicted parts of Manhattan would be underwater by 2008 due to climate change are concerned about 'fake…,386234 +"“Oklahoma hits 100 ° in the dead of winter, because climate change is real” by @NexusMediaNews https://t.co/sTvnR5bph2",622990 +RT @wiscontext: .@snopes confirms that @WDNR removed language about climate change from its website. https://t.co/KMtotfryI0,761421 +"RT @kajsaha: 'In 1989, I wrote a book on climate change, the bad news is things have since gotten much worse' - @billmckibben #atAshesi",550240 +"Vulnerable to climate change, New Mexicans understand its risks - Las Cruces Sun-News https://t.co/UhlkIssu9z",18557 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,880977 +RT @camillefaulk13: you think the reason they lived underwater in the year 3000 is cause of climate change?,900311 +RT @yo: The state that will be most affected by climate change (#Florida) is voting for climate change denier...…,290640 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",834981 +RT @sarahhh_lingle: trump denies that humans have anything to do with climate change or environmental destruction...that's all good night b…,805937 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,5660 +China may leave the U.S. behind on climate change due to Trump https://t.co/hExYzSr2BH via mashable,937229 +"@FaceTheNation Newt is insane, what science degree does Rick Perry have, he is a climate change denier NUTBAG @neiltyson @ENERGY @EPA",602273 +RT @tveitdal: Scientists just published an entire study refuting Scott Pruitt on climate change https://t.co/6a3BK5SbYU,756623 +RT @INDDigitalNinja: This picture shows how polar bears are being affected by climate change😟 || Photo by Kerstin Langenberger…,314251 +@YouTube @NatGeo @LeoDiCaprio He lectures poor Americans about climate change while leaving a million x bigger carbon footprint.,859126 +"RT @siemens_press: Joe Kaeser op-ed in @TIME: «To beat climate change, digitalize the electrical world» https://t.co/B19caeZpT3 #FortuneTim…",625840 +RT @UNEP: How to define preindustrial era and how far back do we need to look for accurate global warming comparisons?…,628722 +"This crater in Siberia, 'doorway to hell,' may allow scientists to view more than 200,000 years of climate change: https://t.co/puV8WlI07g…",31683 +RT @314action: .@DanaRohrabacher says 'dinosaur flatulence' may have caused climate change. We sent a dinosaur to his office with…,637301 +"RT @UCDavisResearch: As a result of climate change, a new UC Davis shows spring is arriving early in the northern hemisphere. In... https:/…",861106 +Saying 'climate change' instead of 'global warming' decreases partisan gap by 30 percent in U.S. https://t.co/bpnlGwS9ZL,962504 +"RT @heyyPJ: We care more about emails and obstruction of justice instead of creating proper healthcare, equality, climate change and more.…",413768 +RT @Hurshal: #climatechange Ventura County Star Ventura moves on climate change plan Ventura County Star……,509887 +RT @CarriganShereck: When you're hitting it off with a little cutie but then she says she thinks climate change is a hoax https://t.co/iecv…,252731 +@CNN Why has USA president and supporters not been able to answer if climate change is a hoax? Real does not know alot of things.,795288 +“you’ll die of old age and I’ll die from climate changeâ€ indeed #JohnGalt https://t.co/3kXUgoedr9,710479 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",174945 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/ig8sxJGw2f,579830 +"RT @mitchellvii: Democrats are planning a mission to the Sun to stop global warming at its source. Just to be safe, they plan to land at n…",229717 +RT @nationalpost: 'The start of a new era': Trump signs executive order rolling back Obama’s climate change efforts…,144271 +"RT @MichaelSalamone: Like Rex Tillerson, I too considered an internet alter-ego for discussing climate change, but @WereAllGonnaDie was tak…",379189 +"Honestly what are millennials, fossil fuel, ice caps, climate change, politics??",290199 +"RT @KikkiPlanet: 'Believing in climate change is not left wing. It's science. If you don't believe in it, that's because of ignorance, not…",200446 +"@steph93065 @Coyote921 You said you deny science and climate change, that's pretty unambiguous.",128390 +"RT @BasedElizabeth: What is it this time, Liberals? + +Did Russians hack the van's GPS or was it global warming and/or workplace violence aga…",699939 +"RT @espiekermann: Hispeed rail symbolic for the US now: fundamentally unprepared to change: transport, climate change, healthcare. https:/…",108841 +"NOAA scientists didn't cook the books on climate change, study finds ➡️ @c_m_dangelo https://t.co/vIOL9vgpiO via @HuffPostGreen",312441 +RT @lenoretaylor: This is ridiculous - EPA head Scott Pruitt denies that carbon dioxide causes global warming https://t.co/ISjRGlcgCK,864148 +RT @Wild_Gramps: Climate change is the challenge of our time. Long-term research is the way we will establish how climate change wil…,950584 +RT @MatthewACherry: When you ask Republicans about climate change https://t.co/abnPPNWykZ,961196 +RT @mygreenschools: The burden of climate change on children is worse because their bodies are still developing. #ClimateChangesHealth…,685323 +RT @nytgraphics: Spring arrived early. Scientists say climate change is a culprit: https://t.co/no0VWLa4JE https://t.co/3gOlL6W3NP,805401 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,698939 +RT @HuffPostPol: . @SenSanders tears into Trump’s 'disaster' of a climate change order ➡️ by @lee_moran https://t.co/KIAYaoN17M https://t.c…,814000 +WUWT:Claim: Next 10 years critical for achieving climate change goals #UKIP #SNP #r4today #Labour #tory #BBCqt https://t.co/bG2h14x76c,58299 +@KayWhiteKTCO they also come from people whose job is dependent upon research dollars for climate change.,23273 +"RT @kylegriffin1: Trump called the mayor of an island that's sinking due to climate change. + +He told the mayor not to worry about it. +https…",995061 +What's the point of studying climate change if we can't tell the farmers what it is & how that will impact their li… https://t.co/mHc0bNunkI,676193 +RT @abcnews: 'We're moving forward without him': @algore says @realDonaldTrump isolated on climate change https://t.co/AleyedrC7v https://t…,546056 +RT @MikeBloomberg: There are immediate steps we can take to address climate change & save our planet. #ClimateofHope shows how.…,655182 +RT @NYDailyNews: China to Trump: We didn’t invent climate change and it’s not a hoax https://t.co/cYeg4H9G9L https://t.co/1T3xFKV3KV,69773 +ExxonMobil’s shareholders force the company to confront climate change head on https://t.co/aMZDDaNJF9,587608 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",17138 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,280642 +RT @ClimateReality: We *should* rely on good science — and 97% of climate scientists agree climate change is real and man-made…,371093 +"RT @SierraClub: Former EPA head is worried about Trump, climate change https://t.co/mtwDUd3vxm #pollutingPruitt",779346 +"If you want to convince people of global warming, 'the only way to fix it is to spend money on all the things Dems want' is the worst way.",818106 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,318382 +"Good thing it doesn't contribute to global warming, though. Right, @ScottPruittOK? https://t.co/C2lGCYlBSn",767509 +RT @SenSanders: We don't need a secretary of state whose company spent millions denying climate change and opposing limits on carbon emissi…,777623 +"@Dfildebrandt make a shadow budget, otherwise you are useless to Alberta. Also, stop denying climate change. https://t.co/AU2AiuRfPE",107387 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,130632 +RT @Ottawa_Tourism: Earth hour begins soon! Turn out the lights & show your support for the fight against climate change #EarthHour https:/…,187272 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,566063 +RT @johnmcternan: Have always been glad that the SNP are followers of @LordMcConnell on climate change even though they never admit it http…,286832 +"Teens suing U.S. over climate change ask for Exxon's 'Wayne Tracker' emails + +https://t.co/d7MSp5YKsk",63870 +Lol global warming isn't real. RIP to the dock. https://t.co/izt7d5SeGX,128230 +RT @TIME: EPA nominee Scott Pruitt acknowledges global warming but wants to restrain the agency https://t.co/ibpA62bT3M,197323 +Except climate change. https://t.co/YMZSPf7cuy,716749 +RT @ClimateCentral: Deforestation accounts for more than 10 percent of the global carbon dioxide emissions driving climate change…,957299 +"RT @Ragcha: Joe Heck voted to repeal Obamacare, defund Planned Parenthood and block measures to combat climate change. Wrong fo…",274019 +RT @_JessssicaLaura: Everyone stfu about saying its global warming it's spring get over it or go do something about it instead of complaini…,203658 +"RT @sierraclub: If elected, Trump would be the only world leader to deny the science of climate change. Be a #ClimateVoter! https://t.co/Bi…",191203 +RT @TIME: What cherry blossoms can teach us about climate change https://t.co/vHgDjgFtEI,267003 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,716822 +Trump and his people are not only climate change deniers but fact deniers. Obama did NOT wiretap DT. How bout an apology Pres. Chump?,375666 +"RT @Reuters: BREAKING: 2016 surpassed 2015 as the warmest on record in 137 years due to global warming, El Nino: U.S. government…",823132 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,377725 +RT @jandynelson: Check out this sculpture by Issac Cordal in Berlin called 'Politicians discussing global warming.' https://t.co/73wHMvPGc8,18572 +"@mitchellvii I think Liberal BS is the primary contributor to global warming. Oh, yeah, don't forget Dope Francis. https://t.co/g9BOsnz0mc",356855 +Here’s how Trump’s new executive order will dismantle Obama’s efforts to reverse climate change ... https://t.co/bRnKbkYpX6,105902 +"RT @josephamodeo: @realDonaldTrump @EPA Also, I hope you'll remain committed to the Paris Agreement on climate change. Lastly, please…",827866 +@DaniiiCali yeah screw global warming,478653 +RT @TheLittleProf: Trump could face the 'biggest trial of the century' - over climate change #OurChildrensTrust https://t.co/2oz5TatMNF,349139 +This is a good article about climate change denialism in mainstream media. https://t.co/buvqai0XXW,68048 +Your mcm calls climate change 'global warming',635269 +Day 1 policy is to reverse all climate change policies https://t.co/JwKete4Y9a,363713 +RT @MatthewPrescott: We needn't wait for government to end climate change. It starts on our plates. https://t.co/mT1gEihSol #ClimateMarch h…,87799 +RT @owenxlang: Me realizing our possible president doesn't believe in climate change https://t.co/8qnBW8vlnE,915713 +"@AssaadRazzouk ��The #1 issue we face is global warming. ��By 2030 over 80% of the boys will be unable to read, think, or write ��Vaxxed TV",609213 +"RT @Gizmodo: A brief chat with Elon Musk about climate change, Rex Tillerson, and Donald Trump https://t.co/IJo34UeDSq https://t.co/xrYj3Dq…",1868 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",777800 +@RiceGum @vasulmao climate change exists,574642 +Tory leadership candidate cheered for dismissing climate change #cdnpoli https://t.co/DM1RW5kP0r via @HuffPostCanada #CO2 #AGW #CAGW,858064 +RT @hannahv_08: Do you believe in climate change?,638221 +"Between their climate change denial garbage, the Blackwater reacharound piece, and Maggie Haberman, @nytimes is really not worth my time.",480115 +RT @CNN: Trump's withdrawal from Paris climate accord met by defiant US mayors and governors vowing to fight global warming…,596549 +"All American climate change theorists sitting in Marrakesh &discussing climate change, you've been Trumped #trumpwins #COP22 #climatechange",573227 +RT @BeckySuess: The White House doubts climate change. Here's why the Pentagon does not https://t.co/oNHJGo3aXu,667910 +"RT @astroengine: So, yeah, I really wish it was a climate change conspiracy, because the alternative is an absolute nightmare for our plane…",269505 +@realDonaldTrump An important issue and one of many reason I back you. Please DON'T do global warming crap,681429 +Nowhere on earth safe' from climate change as survival challenge grows - The Sydney Morning Herald https://t.co/IJcJfyQvNH,980390 +climate change isn’t a myth. get out of the way if you do think it is. we no longer have time for yous,904230 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,261374 +"RT @SteveSGoddard: Imaginary climate change is not going to kill you, and only a complete moron would believe that it will",889016 +"RT @byuAP: As for me and my house, we'll believe in global warming when it shows up in the Bible",1873 +RT @jes1003: What is it about global warming and cleavages? Yesterday's Sun and today's Mail both #indenial @TheSun @DailyMailUK https://t.…,427871 +RT @leftcoastbabe: EPA Sec. #ScottPruitt says CO2 doesn't cause global warming. Waiting for HHS Sec. #TomPrice to say cigarettes don't caus…,574530 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,602979 +#weather Cloudy feedback on global warming – https://t.co/H41ouAUlRU – https://t.co/9aRKJpZIn7 https://t.co/MQCUlDrGrT #forecast,347948 +"@nyt_owl69 @jdobyrne1 @AEOByrne +No global warming here! ��Brrrrrr!! https://t.co/SltHFqFREG",282595 +RT @BuzzFeed: Other major nations officially commit to fighting climate change — with or without Trump https://t.co/HuIYFrqnNU https://t.co…,412481 +RT @TaitumIris: Our new president thinks climate change is a hoax. Our new Vice President believes in conversion therapy.,380725 +RT @iansomerhalder: Speaking of climate change-TONIGHT Is another killer episode of @YEARSofLIVING ! 10/9c on @NatGeoChannel https://t.co/T…,63535 +RT @iaafkampala2017: 'Effects of climate change are real and with us. Part of greening K'la was to address #climatechange @iaaforg Amb Terg…,734774 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,179529 +"@ashrafghani @narendramodi we can fight climate change, pollution,poverty etc by introducing rooftop plantation all over the world.",633917 +"CH: 'Trade, security, climate change and migration challenges are all global issues.'",894682 +"RT @maudnewton: Meanwhile, scientists frantically copy US climate change data lest it vanish under Trump. https://t.co/n1qKjAeV4r",158195 +RT @EnvDefenseFund: Why is Pres Trump attacking climate change efforts that the EPA has been working on for decades? https://t.co/0W25UsRpWL,763806 +I'm reading more and more that CO2 doesn't actually cause global warming and that scientists have been muzzled by Liberals and their media.,848639 +"So Tillerson's emails, under his alias that he used for discussing climate change with Exxon's board, we're... https://t.co/TBhFtAo5Rh",194609 +@realDonaldTrump just withdrew our nation from the global commitment of climate change. #ParisAgreement,865198 +"RT @PCGTW: If you want to fight climate change, you must fight to #StopTPP says @foe_us ' @wwaren1 https://t.co/F9c78bvNj5 https://t.co/GPZ…",565875 +RT @andreshouse: what clouds see - great concept to make climate change accessible to children! https://t.co/zazoyDWz8N,496725 +Positive of climate change...my carrots wintered over this year https://t.co/aHP8Db2Sss,953477 +Trump’s denial of catastrophic climate change is a clear danger https://t.co/kLzpRHx6bi,630968 +Michael Moore calls Trump's actions on climate change a 'Declaration of War' against Planet Earth. https://t.co/ui7vFxWtL0 #POTUS @potus,737186 +"RT @MySunIndia: Mitigate global warming by lowering the emission of greenhouse gases. Think wise, Switch to Solar. #SolarizeIndia https://t…",526033 +"RT @kurteichenwald: In full page ad in NYT in 2009, @realDonaldTrump called for urgent action on climate change. Which does he believe? htt…",404501 +@TurnbullMalcolm replaced the 13 scientists that @TonyAbbottMHR removed from the CSIRO climate change centre they h… https://t.co/CKh4BatFz5,558384 +RT @FarmAid: A new study shows how climate change will affect incomes. Check out that agriculture map... https://t.co/m9NgMrBv1u https://t.…,904548 +@TuckerCarlson is owning another idiot liberal academic who can't give a straight answer on climate change.,328893 +Spotlight: World needs binding measures to combat climate change https://t.co/b1ENpnQwtc https://t.co/yDtCsw6Bkn #CHexit #China #Philippi…,455263 +RT @MelinaSophie: I knew global warming exists but now that I'm in Iceland & there's no snow around in DECEMBER + forecast also looks…,411075 +"RT @RisingSign: Retweeted Climate Reality (@ClimateReality): + +We can debate how to tackle climate change – but the science is... https://t.…",370060 +RT @DollaMD_: Damn this global warming good,116665 +RT @voxdotcom: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/cjiuP9xDIy,432933 +@RepErikPaulsen @theaward unfortunately the BWCA may be spoiled by then due to climate change and the dismantling of EPA. Thoughts?,608567 +Ljubljana utility planning more anti-pollution projects - With November dedicated to adapting to climate change... https://t.co/EJzq3XBTfn,908282 +RT @ajplus: Bill Nye wants you to care about climate change. Here’s why. https://t.co/ljQiheoTay,66979 +#China blames climate change for record #sea #level s https://t.co/SgLBvTdtuH,599838 +RT @EricBoehlert: Politico then: she's going to be the climate czar. Politico now: climate change was never really her thing https://t.co/W…,543212 +"Literary writers resist telling stories about climate change -- Enough of that! “Good Grief” by LENS https://t.co/HUTseocne4 +#anthropocene",885689 +Also cited climate change law - oblivious of fact that UK Parliament adopted first climate change act in world. https://t.co/0uLhUihYFc,443882 +"RT @Alex_Verbeek: �� + +This is #climate change: + +Glacier in 2006 and 2015 + +photos by @extremeice via @ddimick https://t.co/n4j1iFAlvw + +https…",876929 +#ClimateChange UK slashes number of Foreign Office climate change staff https://t.co/UiEsM9WaSU https://t.co/fefLtGfzgw,887643 +RT @CNN: The kids suing Donald Trump over inaction on global warming are marching to the White House https://t.co/s6F5DK504K https://t.co/q…,624540 +RT @JimStLeger: It looks like Trump is making good on his promise to deny climate change. He put a top climate change denier in cha…,34911 +RT @DrSimEvans: Seriously though @WorldCoal – is contributing to climate change not a 'basic coal fact'? https://t.co/OSo2PCVti9,580022 +RT @AmBlujay: People who eat KFC or ribs with fork and knife are the reason we have global warming and wars on earth,198211 +RT @AusConservation: Global green movement prepares to fight Trump on climate change. https://t.co/lsZCtFJfQQ,630440 +RT @semodu_pr: Climate change researchers cancel expedition after climate change makes conditions too dangerous…,542738 +Roboter bedrohen in human-caused climate change denial in human-caused climate change denial in der Welt,871903 +RT @americamag: Here's what Pope Francis and Catholic social teaching have to say about climate change. https://t.co/AxYq2GfNRR,716228 +RT @retroJACE: global warming real as hell. al gore told us. leo dicaprio keep tryna tell us. its 82 degrees and its halloween. sumn aint r…,406230 +RT @WIRED: What a Trump presidency means for the global fight against climate change: https://t.co/JhDmByNpNP,668064 +"RT @ClimateCentral: Using the baseline of 1881-1910, a new, more dire picture of global warming emerges https://t.co/VaF7qpTKds",314274 +Two billion people may become refugees from climate change by the end of the century https://t.co/EWcLby0Qco https://t.co/4xWWROOugC,257686 +Trump's Irish wall plans withdrawn https://t.co/9DAgyhzxEf. Trump admits climate change is real.,101227 +RT @thehill: Trump admin buries EPA website designed to be kids' guide to climate change https://t.co/x4fKywkb56 https://t.co/99dEiYRm6E,25290 +RT @fredguterl: Incoming House science committee member has said climate change is “leftist propaganda.” He should fit right in. https://t.…,375891 +Half of US doctors alarmed about health effects of climate change - Billings Gazette https://t.co/MUreRVESc0,34010 +"RT @NRDC: 'I saw global warming with my own eyes, and it’s terrifying' — Kit Harrington, Game of Thrones https://t.co/iirzGls1yP via @thin…",40365 +RT @BarackObama: Global action on climate change is happening—show your support today: https://t.co/UXy7xHlyA5 #ActOnClimate #SOTU,853758 +Hundreds of millions of British aid 'wasted' on overseas climate change projects https://t.co/5dsPkbIjhQ,788125 +RT @thisfooo: I want to enjoy this weather but this is all a product of global warming and our earth is dying https://t.co/bkD6VcHMye,213338 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,180139 +@ItaloSuave @MuslimIQ @GOP what does that have to do with with climate change? do you know what peer reviewed resea… https://t.co/EJtfG8mp1z,55654 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",834951 +"Energy Dept. rejects Trump’s request to name climate change workers, who remain worried https://t.co/7raN96sTbB",627875 +Pakistan becomes fifth country in the world to adopt legislation on climate change: … on… https://t.co/a2whiindfw,251339 +RT @Greenpeace: This is what climate change looks like in Antarctica https://t.co/Z20NdifSnh via @NatGeo https://t.co/YA85UdVkSn,440126 +RT @Liam_Wagner: 2004 report by Andrew Marshall Office of Net Assessment flagged climate change enormous risk to #security https://t.co/6bY…,272326 +"RT @BarryGardiner: You fool! +Donald Trump risks damaging all our interests by not taking climate change seriously https://t.co/VnANgLfqNp",644600 +"RT @Vilde_Aa: climate change isn't fake nd pls be aware of making changes, even if it's the small things like reusing bottles or… ",398471 +7 projects win funding for climate change solutions: Seven Harvard projects will share $1 million to help battle… https://t.co/QwkgDHmHWb,802594 +RT @climatehawk1: N. Carolina military bases under attack from #climate change | @TheObserver https://t.co/Gm6pyqqwtH #globalwarming…,573749 +@XiuhtezcatlM won the right to sue the government for climate change this week- our update on this #Colorado artist: https://t.co/ti5n5LDIyq,52505 +TRUMP DAILY: Trump’s EPA chief: “We need to continue the debate” on climate change #Trump https://t.co/PsSnduqPQZ,434584 +"RT @RobertKennedyJr: No matter what Trump does, US cities plan to move forward on battling climate change https://t.co/uCwsv99euH",438631 +Weather Channel destroys Breitbart over BS climate change story ➡️ @c_m_dangelo https://t.co/KOtcjwHc8A via @HuffPostScience,427939 +RT @TIME: Why unlikely hero China could end up leading the fight against climate change https://t.co/dN8T4k7RMZ,915148 +RT @anuscosgrove: republicans wanna say climate change isnt real then can they explain why its raining in my house?�� https://t.co/5LUZ1j98kd,860272 +RT @voxdotcom: 'Do you believe?' is the wrong question to ask public officials about climate change https://t.co/ui3RptQvtr,368060 +RT @voxdotcom: A new book ranks the top 100 solutions to climate change. The results are surprising: https://t.co/U6Zic2udiA https://t.co/U…,774835 +"In rare move, China criticizes Trump plan to exit climate change pact",354242 +"RT @RepBarbaraLee: Today, scientists announced Earth hit record temps 3 yrs in a row + +Also today, climate change denier Scott Pruitt b… ",570617 +@In4mdCndn and please you can't even explain the cause and effects of the GSA. What makes you qualified to talk to me about climate change?,70495 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",135174 +"‘We are running out of time’ on climate change, expert warns https://t.co/G8C0yc36ks via @wr_record - #climatechange",682907 +Broadcast news coverage of climate change is the lowest since 2011 https://t.co/fRyHa71Pa9 by #infobencana via… https://t.co/opZ0WBsbL9,372076 +"Dundas business owners suffer tens of thousands in flood damage, blame city but ignore climate change. https://t.co/Ftop5pCMCK",367591 +Bird species vanish from UK due to climate change and habitat loss https://t.co/Go1TkZyxZo,815570 +RT @attn: .@BillNye just destroyed climate change deniers with a great analogy. https://t.co/U3REutsRC7,629181 +"RT @SteveSGoddard: 'We' don't cause any significant global warming, and anyone who says we do deserves massive ridicule.",829720 +"Researchers identify more and more clearly the impacts of global warming on the weather +https://t.co/x8WANRgfmo",221249 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,819991 +A historic mistake. The world is moving forward together on climate change. Paris withdrawal leaves American workers & families behind.,237193 +"RT @MuslimIQ: Reports indicate these Ahmadi Muslim youth yelled ALLAHUAKBAR with every planted tree. + +Combatting climate change…",541924 +RT @Shewenzi: Do you believe climate change is real? #CleanerLagos.,27354 +"RT @theblaze: Energy Department climate change office bans ‘climate change’ language — yes, you read that right…",91111 +RT @GusTheFox: What if climate change is just made up and we create a better world for nothing?,182572 +Bill Gates and other billionaires are launching a climate change fund because we need an “energy miracle” https://t.co/jnppIKuxs7,84978 +CNNMoney: Little is known about how climate change regulation and green tech would impact exxonmobil. That could s… https://t.co/jKu7LmauGH,353319 +"OPINION | If global warming worsens, what will happen to the people and places that matter to me? - InterAksyon https://t.co/Rkpf8IjaeC",760882 +"Mixed metaphor or something like that: +Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/cBngqZMmcC",166329 +"RT @jasbc_: To those who don't believe in global warming... +STEP THE FUCK OUTSIDE WE'RE IN FEBRUARY AND IT FEELS LIKE APRIL",640783 +RT @LeeCamp: Just bc media ignored climate change for the past 8 yrs doesn't make Obama an environmentalist. He was a catastrophe even if T…,328610 +"As Earth gets hotter, scientists break new ground linking #climate change to extreme weather https://t.co/YQ28Q1yhaU",7783 +"RT @RogueNASA: If (when?) the time comes that NASA has been instructed to cease tweeting/sharing info about science and climate change, we…",610090 +Direct quote 'let's deal with climate change and science separately.' Right. Ok. #trumpbudget,880345 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,259391 +"Talking like Trump - Lektion 14: + +'It’s freezing and snowing in New York – we need global warming!”",254046 +RT @EnvDefenseFund: The new administration must act on climate change. Here’s how we can move the needle. https://t.co/lcXNUK027l,483168 +Most Americans want 'aggressive' action on climate change: Reuters/Ipsos poll .. https://t.co/mATQcD08od #climatechange,634613 +Mother nature vs. climate change - Jordan Times https://t.co/Ns2A94nKkn,794011 +"RT @YouTube: .@NatGeo teams up w/ @LeoDiCaprio to explore climate change and prevent catastrophe. + +This is #BeforeTheFlood →…",864337 +RT @nowthisnews: Bernie Sanders has a lot to say about DAPL and climate change https://t.co/2mPEHt0I5C,804186 +Trump can't stop the rest of us from fighting climate change - add your name today. #climateaction via @NRDC https://t.co/8tGlRdsqjf,188819 +2015 is the warmest year in recorded history (since 1850) caused by El Niño and systematic climate change.' #CSIR Dr Engelbrecht,133114 +RT @EnergyFdn: READ—>Why @Walmart is doubling down on its commitment to climate change by Rob Walton @climaterisk @WaltonFamilyFdn…,302105 +Urban design in the time of climate change: making a friend of floods - The Globe and Mail https://t.co/s2xMXYIHOY,879752 +"RT @France4Hillary: The https://t.co/SIcGNDQETu pages for climate change, healthcare, civil rights and LGBT no longer exist. THIS IS WH… ",536387 +RT @QuentinDempster: Australia must warn US @realDonaldTrump that we will apply sanctions if it breaches its Paris climate change obligatio…,193423 +RT @Mathiasian: You should know by now that Al Gore blames his dinner for being cold on climate change. https://t.co/gY74tlDC4y,657857 +Yep. Excuse me for being more bothered about his complete disregard for global warming than that he can't get some… https://t.co/21Z6BMhlsd,380045 +@EricIdle Maunder Minimum of 1645. Look it up dummy. This is an examples of true 'climate change'. You are willfully ignorant.,594314 +RT @TheBaxterBean: Weird. America's fossil fuel-funded Republican Party is the only climate change-denying political party on Earth.…,570237 +Mayors in Florida are grappling with the ugly effects of climate change on housing values. https://t.co/HsH1fYDaqn,670097 +We need more global warming. Tell the teachers to tell the students to ask Premier to #stopthecarbontax https://t.co/umwLCzBGrW,918209 +RT @timdunlop: This entry by Clive James for the stupidest article ever written about climate change is going to be hard to beat https://t.…,837336 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,74832 +RT @scienmag: Investment key in adapting to climate change in West Africa https://t.co/uochSoX2g5,599202 +Utilities knew about climate change back in 1968 and still battled the science. https://t.co/Db7iGWBNwh https://t.co/OeWletgtda,345439 +@P01YN0NYM0U55 *Digression alert* Do you believe in climate change and is the Earth flat? Serious answers please.,597691 +RT BT_India: India emerging as front-runner in fight against climate change: World Bank https://t.co/AWwGmngBWy https://t.co/VVJhJDrFZB,623359 +"RT @RitaPanahi: Let's not jump to conclusions. He was probably radicalised by Trump, Brexit or lack of action on global warming... +https://…",154926 +"RT @altHouseScience: We #resist because last fall House Science member @RepJimBanks said climate change is 'largely leftist propaganda.' +ht…",543345 +RT @zackfox: god is the girl on the bus the nigga gettin punched is our ability to solve global warming the one punching is toxi…,47506 +"RT @CIVILBUCK: climate change is fake, kids https://t.co/ONiTZv9epj",968726 +RT @mellierenee: in science class we read bible verses given as 'proof' that evolution/climate change/etc. doesn't exist. your tax dollars…,417810 +RT @joshgad: The mourning stage is over. Now we fight. Putting a climate change denier as head of EPA is an act of war on our kids. #StandUp,143490 +RT @guardian: ‘There’s no plan B’: climate change scientists fear consequence of Trump victory https://t.co/SPSsRcvGeW,378655 +RT @IFADnews: Astralaga: we should shall strive to implement policies/measures to minimize climate change and negative affects of int. trad…,946596 +Trump to face intense G-7 pressure on climate change https://t.co/EELgftwtOE,35342 +@AmericaFirstPol @DonaldJTrumpJr @POTUS @NASA presumably so long as they don't look for signs of climate change or that the Earth is round.,622888 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,832165 +"RT @Claire_Phipps: 'In the Caribbean we are living with the consequences of climate change,' says Antigua & Barbuda PM @gastonbrowne https:…",192832 +RT @INCIndia: Think @narendramodi takes climate change seriously? Think again. #GST #ParisClimateDeal https://t.co/9xEZcbmJSb,97549 +"The scary, unimpeachable evidence that climate change is already here https://t.co/HqLXf7iWPw via @qz",495487 +RT @dana1981: Conservatives are again denying the very existence of global warming https://t.co/tKpGi0JS3h by @dana1981 via @guardianeco,766048 +RT @ClintSmithIII: I'm watching Planet Earth feeling both in awe of the world and despondent over how all progress on climate change is abo…,939033 +RT @NFUtweets: Ahead of @UNFCCC #COP22 we're tweeting one stat every day to show how British farming helps combat climate change…,138800 +"trumps wins slight favour for india though he is tight on terror but he will be against globalization , climate change #Election2016",228761 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,574754 +RT @ZandarVTS: Trump transition team looking to identify Obama climate change experts in Energy Department ahead of 'shake-up' https://t.co…,626985 +"climate change is real, and its man made.",433348 +But global warming isn't real? https://t.co/8C2jTYKut3,192355 +"@AnthonyGiannino @2DNinja @JaredWyand I have no choice and had no vote, but will suffer under his climate change policies. Why is Obama bad?",963107 +I'm not a climate change denier. I just don't trust the word of the world's leading scientists who have been study… https://t.co/OJTAYJhkUs,999981 +"@rkerth Oh, for sure. Actively dismissing climate change for 8 years is big too",617958 +"RT @peta: Meat production is a leading cause of climate change, water waste, and deforestation. If you're concerned about our…",952959 +"RT @Stuff_Daddy: Only in America do they accept weather predictions from a rodent but deny climate change evidence from scientists. +#Groun…",959362 +RT @dangillmor: The @nytimes has found a new way to not call climate change deniers what they are. An embarrassment to honest journ…,192609 +Meanwhile I've just helped a researcher look at the impact of climate change on health. I'm sure there's a connection somehow.....,66246 +"@SakAttack123 @Al_Lietzz Until habitat loss (climate change and deforestation end), unless you want to live to see… https://t.co/oT8D4Frvto",358555 +RT @tbhjuststop: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus o…,813493 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,382756 +Jerry Brown promises to fight Trump over climate change https://t.co/joHcaSLEjv https://t.co/dZ9GVo4JjG,199914 +RT @FactTank: 49% of Trump supporters care not too much or not at all about climate change: https://t.co/HPmL385tJh https://t.co/eOaAdvWdAN,266290 +RT @Dervla_Gleeson: Leading climate change scientist: ‘We are in the driver’s seat’ - https://t.co/BmiRJMrM6o,553116 +"RT @jeffnesbit: Is climate change real? 'How can you even ask that question?' a mother says beside dying, malnourished children. https://t.…",993994 +NC military bases under attack from climate change https://t.co/Kc30MTdzFf,660130 +RT @kurteichenwald: Russia hack deniers & climate change deniers have a lot in common. Either theyre corrupt or they refuse 2 accept univer…,589516 +Swedish climate minister mocks Trump (Who thinks climate change was invented by China)with all-women photo… https://t.co/sufVpzPdJi,46337 +"RT @gracerauh: 'I think it's a mistake because we need to do something to address global warming right here in this city,' BdB says re deat…",514759 +A brilliant sci-fi thriller imagines how the massive floods of climate change could transform Earth https://t.co/FWh7L9IOjF #scifi #books,162622 +RT @exjon: Everyone believes in climate change. Only progressives think it started 100 years ago. @danpfeiffer,644185 +RT @IAMforstudents: Germaine Bryan now making his submission on climate change. He is one of the cofounders of the Integrity Action mov…,739106 +@sherlockmichael Nothing stops the Christian train wreck. Part of my silly atheist theory but it also includes him believing climate change!,971561 +"RT @StarTribune: Minnesota will proceed with its own climate change strategy, state officials say. https://t.co/jExPoLp1zO",659698 +RT @SenSanders: The Dakota Access Pipeline would be a huge blow to our fight against climate change. #NoDAPL https://t.co/47m6yUu4m5,151215 +RT @daylinleach: #Trump #EPA advice on global warming? 'Wear sunscreen' (really!) Their advice on rising sea levels? I'm guessing 'upgrade…,416432 +RT @DineshDSouza: The climate change 'consensus' basically means everyone being paid to find climate change has concluded the climate is ch…,769917 +RT @ChrisJZullo: Marco Rubio caves on oil man Rex Tillerson. Demand he oppose climate change denier Scott Pruitt 202-224-3121 #florida #mia…,788844 +@Martina GOP cruel to animals & can't get it into their heads that they are being cruel to their children by denying climate change,492700 +RT @Jackthelad1947: It's a man's world when it comes to climate change @huffpostblog https://t.co/M3U8HHqUGe #auspol @ABCcompass #thedrum #…,425952 +"Great Barrier Reef 2050 plan no longer achievable due to climate change, experts say https://t.co/hdqB8VRRWI",235477 +RT @albertocairo: Data and charts changing minds about climate change https://t.co/cdXegxSqpy via @SophieWarnes cc @MichaelEMann https://t.…,527302 +RT @Slate: Trump will be the only world leader to deny climate change: https://t.co/nn1tC60Hdg https://t.co/7Klrd2XCj4,958454 +"RT @climatehawk1: Source of Mekong, Yellow, Yangtze rivers drying up due to #climate change | @ChinaDialogue https://t.co/Yu8EOi15Pv…",602185 +"RT @StopTrump2020: #DoubleChinDon & Ivanka meet w/ climate change advocates-could they change his mind? What happened to Chinese hoax? +http…",532355 +"RT @TrumpUntamed: Putin is Anti: +NWO,climate change,Monsanto & very much Pro Christian.. of course the globalist are going to falsely accu…",421607 +RT @4biddnKnowledge: https://t.co/wmb8299gCp Does the European public understand the impacts of climate change on the ocean? https://t.co/i…,479614 +"You can be sure the words 'climate change' won't be uttered. +I wonder how that multi million dollar lift up Miami s… https://t.co/v3hdiYS3DU",438859 +"So the most powerful person on Earth will be a climate change denying, temperamental psychopath. We're completely fucked",543088 +RT @thehill: Leonardo DiCaprio leads climate march holding 'climate change is REAL' sign https://t.co/RTnzhmG89r https://t.co/fJpW6vz9rw,462257 +"RT @Bill_Nye_Tho: she thinkin bout how she gonna die because ya mans doesnt understand climate change +https://t.co/BeoUg1w94N",590371 +"RT @xtralimb: 'Asked me what my inspiration was, I said global warming.' #youtoofuckingcozy",10969 +@Baileyco303 @mic Man made climate change definitely is #FakeNews. Natural climate change happens daily and is real… https://t.co/wmMgq1yW7k,589424 +RT @nxthompson: Trump likely means there won't be a political solution to global warming. So we need a technical one. https://t.co/ZH9UYaRP…,464478 +@greg_doucette one place I think we'll have legislative disaster is climate change. I have feeling they will gut any climate regs in place,429596 +"RT @lernfern: climate change has killed millions of innocent animal lives and will continue to do so at an exponential rate, jacob https://…",798448 +RT @fmlehman: @Heeth04 @henryfountain In a desiccated tinderbox of a forest drained of moisture thanks to climate change.,23909 +"My photobook Solastalgia, a docufiction on climate change in Venice published by @overlapse, is ready for preorders! https://t.co/wXyu3oGL0l",376272 +@RealLucyLawless meme is: 'tell us again about how climate change is bull💩' https://t.co/2De9SoD8pL,923193 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",823747 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,457355 +"Salt Lake City publishes plan to combat climate change, carbon pollution https://t.co/Ze94KBmgYS",347052 +RT @RedPillTweets: DID YOU KNOW? 97% of global warming alarmists can only say '97% of scientists agree' as their argument.,66502 +"RT @hemantmehta: Don't worry, everyone. When President Trump does nothing about climate change, Florida will be the first to go.",299715 +30 terrifying before and after images of climate change @SFGate https://t.co/jpvGzBqamf,312547 +RT @dickmasterson: Research also shows a correlation between global warming and rise in number of dopey Clinton women with Twitter acc…,826591 +RT @GlblCtzn: Want to help help fight climate change? Simple — go vegan. #WorldVeganDay. https://t.co/YiUmDXYizZ,230066 +mashable : Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/OXRNLqNZ1W … https://t.co/r7Qbsm6kwI,907342 +RT @thehill: White House climate change webpage disappears after Trump's inauguration https://t.co/dTxPJNFSs8 https://t.co/0NGY8DGR8P,185909 +RT @MotherJones: Look at all the climate change deniers vying for jobs in the Trump administration https://t.co/w1uov8VE5u https://t.co/xJa…,964603 +RT @SaleemulHuq: Local funding must be UN climate fund's priority for effective fight against climate change https://t.co/xrrGF66hT8,652858 +"RT @anyclinic: I think that arguing for man made climate change should have you held on a psychiatric ward. + @StephenVieting https://t.co/B…",673484 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,659850 +"RT @AdamsFlaFan: Dem senator slags Trump's EPA pick as 'science-denying, oil-soaked, climate change-causing polluter' https://t.co/LRP0y6Of…",325061 +RT @scalpatriot: @US_Threepers @tony_sanky @HillaryClinton Wherever Hillary goes she creates climate change,91808 +US 'forces G20 to drop any mention of climate change' in joint statement https://t.co/t3zYumCrws,123801 +RT @Rogue_DoD: Russia understands the effects of climate change on the Arctic. Too bad @realDonaldTrump doesn't. https://t.co/xmkKfr6MCH,513943 +"RT @JHolmsted: Lot of celebrity/other elite types being ultra blowhard re: climate change & TX/Harvey. Genuinely interested, any of them ac…",860175 +RT @j_g_allen: “Health is the human face of climate change' - Dean Williams @HarvardChanSPH https://t.co/eS33zDtdGE,815056 +RT @thehill: National park deletes viral climate change tweets that defied Trump social media ban: https://t.co/Jh0avdpRX1 https://t.co/AsS…,486326 +RT @JRegina14: So is global warming. https://t.co/pDRhVeB53T,855450 +Has @HdxAcademy come across this which deals with the closing down of the climate change debate by scientists? https://t.co/BYAt3kWBbt,240653 +@stlpublicradio @NPR @POTUS isn't that trip going to contribute to climate change?,757775 +"RT: @nytimesworld :Islamic State and climate change seen as world’s greatest threats, poll Says https://t.co/hD3dkqsUW7 https://t.co/7BytDct",650557 +RT @OSUWaterBoy: How about protecting tax payers from funding climate change. End fossil fuel and all corporate subsidies now!…,610842 +RT @SheRa_Simpson: @Rog008 @JoRichardsKent @jamboden1 @SkyNews Commitment to lowered emissions and climate change action.,399725 +RT @AbbyMartin: Media seems only concerned w/ Exxon CEO Tillerson's *Russia ties* instead of his company's climate change denial & environm…,348551 +RT @thehill: Energy Dept. tells employees to stop using the phrase 'climate change': report https://t.co/FwfpaIJJIH https://t.co/1aiiuBse4L,83045 +"RT @GeorgeTakei: ICYMI, if not for this leak, we may never have seen this important climate change report. https://t.co/TDPCfvpDYM",70637 +RT @vinayaravind: Next @narendramodi will condemn the polar ice-caps for creating global warming https://t.co/ZRNptb988x,237678 +"Trump thinks climate change is a hoax. He is a racist. He thinks women are toys. No matter where youre from, this should affect you",222133 +We are Going Dark for earth hour ! Back later. Wonder how many lights need turning off to counter the mad idea that global warming's a myth,865701 +#PatioProductions 10 Tips for reducing your global warming emissions at home. Read Blog: https://t.co/alyosEzedG,68152 +"RT @MrRoflWaffles: [Baby it's Cold Outside 2025] + +her: i really cant stay + +him: baby uhhhh r u sure,?? global warming has suffocated the ea…",767679 +RT @oreillyfactor: White House: No more $$$ for 'climate change' https://t.co/xL1TSBfmB9,389088 +"Badlands National Park deletes tweets on climate change +https://t.co/E28yuP1MmH https://t.co/yh1aO1iCN1",575093 +"@gregbagwell @MailOnline chill - global warming luckily doesn't exist any more, so it's a zero sum game",755276 +"RT @ddale8: NYT, accurately, in news story: Trump has turned his 'denials of climate change into national policy.' https://t.co/WD1DrDXHEw",125235 +@HuffingtonPost and global warming and racial inequality and equal pay and...and...and,117833 +RT @NatGeo: Entrepreneurs and new start-ups in Kenya are helping small-scale farmers adapt to the challenge of climate change https://t.co/…,850199 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",665252 +"RT @nytimesworld: “For us, climate change is beyond ideology”: How the Dutch are learning to live with water +https://t.co/Jtc8VERyh7",354103 +RT @CTHouseDems: We must resist any policies that would damage our country’s air quality and exacerbate global warming. https://t.co/jMYSt…,85482 +RT @WayneVisser: Here are 11 cities leading the global fight against #climate change - and some will surprise you! https://t.co/Fo3YAm5QN4…,96215 +RT @business: Trump plans to drop climate change from environmental reviews. Here's what else you missed from Trump today…,420392 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,836749 +"@JuliaHB1 1) please get some manners and 2) human-induced climate change is real, regardless if you like the idea of it or not.",96112 +RT @ReclaimAnglesea: 'Vocal minority': Wife of Liberal Party powerbroker quits over lack of action on climate change #auspol https://t.co/Z…,442655 +RT @path2positive: Mayor urged to sign letter to Trump on #climate change https://t.co/n6HrJH4zIp via @coloradoan https://t.co/O9nLXJZVPI,493632 +"RT @EcoInternet3: Tiny pests eating New Jersey's pines march north as #climate changes, report says: Philadelphia Inquirer https://t.co/tdg…",250104 +RT @ABC: New York billionaire Michael Bloomberg urges world leaders not to follow Pres. Trump's lead on climate change…,431638 +RT @nanjmay6478: Gore left his failed bid in 2000 with very little money. He has made mucho $ since on his global warming hoax. https://t.c…,260943 +RT @knoctua: ถ้าข้อสองนึกไม่ออก ให้นึกถึงลีโอนาร์โดดิคาร์ปริโอกับ climate change เอ็มม่าวัตสันกับ gender หรือถ้าดาราไทยก็ปูไปรยากับ immigra…,28195 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",228403 +"RT @MarkusAWagner: Commenting on results of G-20 summit concerning trade, investment & climate change on @FRANCE24. @warwickuni…",434759 +"RT @sbpdl: If you want to see real climate change, look at 90% white Detroit in 1940 versus 7% white Detroit in 2017.... Demography is dest…",609858 +"RT @MoataTamaira: We should actually all be doing more individually to fight climate change though, right? +Esp now it'll have the added bon…",726626 +This Report discusses how taking the perspective of potential new impacts from climate change worries in their member states.,836744 +RT @YourTumblrFeed: stop global warming i don’t look good in shorts,387382 +RT @spectatorindex: BREAKING: G7 statement says the US is 'not in a position' to join a consensus on climate change,566453 +RT @kate_sheppard: It's possible to think that NYT has excellent climate change reporting AND that their hiring of Bret Stephens is an emba…,43761 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,815572 +RT @ClimateCentral: This is what it's like to be a young climate scientist in the age of climate change https://t.co/QX7wfvDA6w https://t.c…,127076 +RT @ian_mckelvey: The science of climate change has exposed 'mass murderers' but the 59 MILLION babies murdered since 1973 is simply…,350807 +"RT @pablorodas: EnvDefenseFund: Thanks to global warming, Antarctica is beginning to turn green. https://t.co/fk7p7mBOeP",37942 +4 Irrefutable truths about climate change https://t.co/q1U3u0kgiV,367769 +Jill Pelto's watercolors illustrate the strange beauty of climate change data | MNN - Mother Nature Network… https://t.co/8M7xk0V0Aw,374290 +Pacific Islands accuse USA of 'abandoning' them to climate change - AppsforPCdaily https://t.co/ISXNmzUMv8,181464 +RT @TomSteyer: We won't allow Trump to erase the truth. We saved the EPA climate change pages here: https://t.co/VO60Pa2jc1 #climatemarch #…,806379 +RT @BizGreeny: How to combat climate change? Measure emissions correctly https://t.co/m9QZk6UVGB #GreenBusiness,61948 +"Act now before entire species are lost to global warming, say scientists: https://t.co/nFQjT7E3sz via @guardian #ActOnClimate",531906 +RT @Farooqkhan97: Participant's messages on climate change #climatecounts @PUANConference #cop22 #ActOnClimate https://t.co/gR2ZJTbA88,658791 +@realDonaldTrump if climate change & global warming dont exist then you were NOT elected president even Tillerman acknowledges it is problem,322278 +"RT @EcoInternet3: Hey anti-science @realDonaldTrump Arctic is 36 degrees hotter than normal and above freezing, still think climate change…",901920 +This is why I was trying to explain climate change to my 8yo this morning. He also asked if Grandma would be OK. (S… https://t.co/tuaF5c1k47,963328 +RT @JulieCameron214: @SGTROCKUSMC82 @Jmacliberty @GeorgeTakei EPA is climate change denier and Betsy devos...whoa,405596 +RT @medialens: The Independent reported this week that May's government ''tried to bury' its own alarming report on climate change…,11922 +17 House Republicans just signed a resolution committing to fight climate change #Congress https://t.co/0HfqZodX0g https://t.co/l235Yy7xph,74085 +"RT @MatthewGreen02: So May wants UK to help 'lead world' in protectionism, islamophobia, climate change denial and silencing opposition +ht…",616402 +RT @CNN: Badlands National Park deletes tweets on climate change https://t.co/DK1Q5UXxfg https://t.co/PIxD1Ix21K,280716 +"This. Is. Devastating. Trump's budget eliminates $ for ALL climate change research & programs, & strips ALL $ for U… https://t.co/aozlRaZEGs",798339 +“Social form of climate change” parallels are shocking! Internet regulation: is it time to rein in the tech giants? https://t.co/bknZR9b1Sd,133412 +"RT @TheDailyEdge: Well done if you voted Green. You helped elect a President who doesn't believe in climate change, loves coal and wants to…",739578 +RT @MAKERSwomen: Watch LIVE: Amy Poehler’s @smrtgrls talk science and climate change at 3:30pm EST for @BUILDseriesNYC:…,480835 +RT @Oxfam: #ParisAgreement is now in force but action is still needed to help the most vulnerable adapt to climate change. RT…,529150 +RT @VFW_Vet: Trump really doesn't want to face these 21 kids on climate change - Mashable https://t.co/u2ygkq5lpw,174969 +RT @thoneycombs: i don't really fuck with climate change analysis centered around how 'humans are a plague on the earth' or whatever,278166 +RT @savmontano: Our president doesn't believe in global warming so we're all doomed regardless,773548 +Pakistan not contributor to global warming but suffered enormously: Justice Syed Mansoor Ali https://t.co/75rgohtHYZ,737855 +RT @thehill: Ex-WH photographer posts photo of Obama in Alaska: 'Where climate change is not a hoax' https://t.co/7m3kr4Zasn https://t.co/X…,410542 +RT @emekapk: #Forests sequestration can help address global climate change https://t.co/iYixin9jkR,211669 +Michael Bloomberg and Mark Carney: How to make a profit from defeating climate change https://t.co/JDxKuGlBer https://t.co/OjiUE1KsNd,423622 +"We had two whole months for this snow to happen, and when it's actually time for spring it wants to snow. *cough* global warming.",708256 +"@NASA with the global warming how much has increased the earth's 'volume'?.if the ozone layer contains a fluid warm,u know the vol increases",448983 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",186031 +"@smbjettyfiremen @lizard51 @RyanMaue You just don't get it man, global warming is causing all the cooling. 🙄",169019 +TanSat: China launches climate change monitoring satellite - BEIJING (APP) – China on Thursday launched a satel... https://t.co/LeU6QoJ6qN,101779 +RT @AstroKatie: Now would be a great time for the rest of the world to find ways to pressure the US on climate change and human rights.,650180 +RT @Da_Rug: the fact that it is going to be 80 degrees today and tomorrow makes me so sad and then reminds me of global warming which makes…,926550 +"RT @woodensheets: Funny, as much bad shit about Hillary there was, she actually was very in favor of net neutrality. Also climate change.",138491 +RT @ron_nilson: Reindeer shrink as climate change in Arctic puts their food on ice https://t.co/EPiQLQN9dL,391450 +"RT @mrbigg450: @tedlieu @DearAuntCrabby 'No such thing as climate change' , coming from someone who is burnt orange.",934166 +"“Oklahoma hits 100 ° in the dead of winter, because climate change is real” by @NexusMediaNews https://t.co/qe0bUUX3Y7",697839 +RT @pablorodas: ClimateCentral: February’s record warmth was brought to you by climate change https://t.co/EHI8h8CssD https://t.co/Q1n9UzOz…,720023 +@AltNatParkSer gives a great new HONEST voice to support climate change research! Go Resisters!,971780 +"RT @ClimateReality: Pruitt denies CO2 is a primary contributor to climate change. + +In other news, cigarettes are healthy and the moon i…",748213 +RT @sarahkendzior: I attended a conference with Pres Niinistro a few months ago. Very concerned about climate change. Should ask him v…,926054 +@meowlickss @BrendaPatt1 @FoxNews @michellemalkin Lol we were talking about global warming you twit.,308665 +pehlay itni garmi hai upar se tire jala ke aur ziyada global warming ko contribute kartey hain,210959 +"RT @jeremycorbyn: . @theresa_may, for the future of the planet, you must remind @realDonaldTrump that climate change is real & not a hoax i…",757381 +RT @BuzzFeedNews: Thousands of science teachers are getting packages in the mail with misinformation about climate change…,519967 +"@tsetiady With global warming and overpopulation, nuclear war is the only hope to protect the Earth from human greed, eh? Very reassuring",517695 +@ClimateNexus @LeoDiCaprio Trump can’t stop corporate America from fighting climate change: https://t.co/64KOxpocNF via @slate,828619 +"@KevinJacksonTBS Actually Nancy, the dishonesty necessary to sell catastrophic, doomsday climate change to any&all… https://t.co/hBLxlrXbw4",786684 +Trump's energy staff can't use the words 'climate change': https://t.co/zkfoHQUqgn,654141 +China very kindly explains to Trump that it didn’t invent climate change as a hoax. https://t.co/H33ga7bosm https://t.co/BCVbGqZbWB,26799 +RT @sweetcheeks5358: The Department of Energy has banned the use of terms 'climate change' and 'emissions reduction' https://t.co/53wgtgjPo2,291929 +RT @ActOnClimateVic: For our mates up in Donald + Charleton: Have your say and encourge Buloke Shire to ramp up action on climate change…,482170 +RT @CBDNews: On Cancún Declaration adopted at #COP13 'Protecting forests is the best way to fight climate change'…,853745 +It is truly a new world when China warns Trump against abandoning climate change deal https://t.co/aQtRZcVkT7 via @FT,300939 +"RT @RobertKennedyJr: A powerful new tool reveals how climate change could transform your hometown +https://t.co/fho5y4uWJn",510814 +"RT @EllenGoddard1: California's conservative farmers tackle climate change, in their own way https://t.co/KTRzYCiOp6",167713 +RT @ivanka: Is climate change real? https://t.co/Q4gcA4azEt,265139 +RT @staycray: y'all voted for a man who thinks global warming was created by CHINA and that's not even the worse thing he stands by,155267 +RT @nytimes: A cheap fix for climate change? Pay people not to chop down trees. https://t.co/fkhYNUYhxQ,228872 +"RT @SominiSengupta: This seed vault was to last forever and save our species. It flooded. Because, well, climate change: https://t.co/8G6rL…",384335 +@isabaedos but did the climate change before humans? Yes.,813193 +CO₂ released from warming soils could make climate change even worse than thought. https://t.co/gkRi3ptlEn,38282 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,183876 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,720812 +RT @Redpainter1: 2 hurricanes in ten days and the mother fucker in the White House still says climate change is a hoax #Irma #Harvey,109534 +RT @KamalaHarris: I intend to fight. I intend to fight against those naysayers who say there is no such thing as climate change.,259492 +"@Rangersfan66 ������Trump/Russia,Orlando massacre had nothing to with Isis,climate change causes terrorism - all prove… https://t.co/FBaoD0WCpF",246290 +#Finnish Gold&Green Foods developed a #vegan meat alternative that could help mitigate climate change. https://t.co/FSuRC40eR7,763749 +@ToryShepherd Birds of a loopy feather deny climate change together. :),642286 +Bloomberg optimistic at start of climate change summit https://t.co/AqQKPRlB02,867952 +"RT @RadioNational: Every day, these scientists face evidence of climate change. They explain how they cope https://t.co/F5Qh4HAeK3 https://…",8216 +@cathmckenna @COP22 @IISD_news more aviation fuel burned impacting the climate change hoax,320110 +RT @billmckibben: Shell took a good long look at climate change--and then went back to drilling. https://t.co/hP7ssox6nG,21464 +"RT @black2dpink824: [FANACC] + +F: Unnie, you're the cause of global warming + +JS: Why? + +F: Because you're so hot + +JS: �� + + https://t.co/RKYiI…",310567 +RT @dana1981: Trump @EPA cuts life-saving clean cookstove program because it mentions climate change https://t.co/aG3LVfDgu6 via @thinkprog…,615005 +"RT @CNNDenverPJ: Al Gore talking climate change and stumping for Hillary in Boulder, CO today https://t.co/veNZJ30JNu",53859 +RT @politico: Pruitt backtracks on climate change https://t.co/GeGxV6ceim https://t.co/IxkjIZrtDq,297063 +Why don't we talk about climate change more? - Grist https://t.co/GxY4X5iPt4,264190 +@EnergyPressSec @SecretaryPerry Too bad climate change DOESN'T CARE.,443998 +Who says climate change doesn't have poetic justice? https://t.co/aF4IERXAnR,757742 +"RT @BryanJFischer: Eco-tyrants: we've passed 'point of no return' on CO2, climate change irreversible. OK, then, LEAVE US ALONE. https://t.…",754862 +Oh god..I just remembered that Trump and the Republican Party refuse to acknowledge climate change is an issue. GREAT! 🙃 #triggered,725854 +"People who deny climate change, C02 issues, poison water…they do it for money. All of it. All of it to make more money right now.",890956 +Donald Trump is slashing programs linking climate change to U.S. national security https://t.co/i3mOc1eVXb by @AlleenBrown,321055 +RT @MattBors: Florida. Half the state's going to disappear in ten years due to global warming. They're going for the guy who says it's a Ch…,634254 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/Q2F7fFl1qS https://t.co/32g…,235754 +RT @EnvDefenseFund: Stuck trying to explain how humans are causing climate change? Here are 9 pieces of evidence that make it easy. https:/…,558955 +"RT @TwitchyTeam: PITIFUL! These ‘instructions’ for climate change protest against Trump’s EPA pick read like stereo instructions + +https://…",65287 +RT @bebraced: Indigenous knowledge crucial to tackling #climate change https://t.co/ncJ2WBDPBM #CBA11 @UNESCO @ODIclimate @IIED…,484377 +I got hot af real quick and now it's cold again. Damn global warming,10455 +"Hey CA48: Just another article showing that DR's 'climate change denial' is WRONG! Pruitt on Climate Change, Again: https://t.co/FuY8v6llAR",286352 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,113454 +The problem with Donald Trump's stance on global warming - https://t.co/YICxNb2Fc4,461270 +"RT @Ashley_L_Grapes: #trump, you promised to represent the people, and we believe in climate change. Please rethink your pick for EPA! Our…",488570 +UK government signs Paris climate change agreement - Sky News https://t.co/G9GLQ0ONx5 #WYKO_NEWS,887186 +Do you think all republicans are wearing hats and scarves today since global warming doesn't exist?,758368 +@HuffPostPol Mike Pence lies as much as Trump and knows full well that climate change is a nonpartisan issue!,814188 +RT @NatureClimate: Air pollution deaths expected to rise because of climate change https://t.co/WyB2KaODDM --- NatureClimate in the news,8804 +Naw just the end of civilization as we know it due to climate change. Great movie score if you like crying and I… https://t.co/PF94RLnwUJ,919559 +RT @mattblaze: Most Americans think global warming is real but will only harm others. Interesting study of how we view risk. https://t.co/Y…,902551 +"RT @billmckibben: Hey, a hit of good news: judge allows youth lawsuit against fed govt on climate change to proceed! https://t.co/P4Y11CEbaQ",836655 +"RT @DineshDSouza: Who are you gonna believe, the global warming lobby or your own lying eyes? https://t.co/XceQUoV9im",259266 +~minor~ details: our new president thinks climate change is a hoax and the KKK openly supported him https://t.co/ITU77sQeGi,843290 +Not only climate change: use/abuse fosil fuel kills 1.7 million children under 5 each year https://t.co/KaU5cm33QI,89878 +"#UpgradeTheGrid video shows how to turn down dirty power plants, clean our air, fight global warming & save us money https://t.co/jCk8gpZ8up",177737 +RT @TheSpinoffTV: 'Bill English says Kiwis don’t care about climate change. That’s not true for the kids I teach on the West Coast' https:/…,709915 +RT @jawshhua_: It's November in Vegas and I'm still wearing shorts and a t-shirt... but global warming doesn't exist right? 🙃,538854 +"@realDonaldTrump confirms the withdrawal from Paris Agreement. He says it's not the climate change, it's just weather. ��",916160 +"RT @FastCompany: Yes, the Vatican has a tech accelerator–and it’s focused on launching startups that tackle climate change. https://t.co/0P…",226541 +"Trump has claimed that climate change is a hoax, so what will that mean for environmental policy on Delmarva? https://t.co/bZRszN5OLx",138347 +Hey @realDonaldTrump good thing all that climate change is bollocks right? All hell breaks loose as the tundra thaws https://t.co/CCDDpyD2ue,189907 +RT @RepJaredPolis: The National Climate Assessment is vital to combating climate change. Disbanding it will only set us back. https://t.co/…,835957 +RT @UCSUSA: MYTH: you have to be a certain type of person to care about #climate change. https://t.co/NgdyNl2G7V https://t.co/h5VXTBHArV vi…,2453 +"RT @jaketapper: On Friday the EPA removed most climate change information from its website, to “reflect the approach of new leadership,' pe…",288234 +"RT @nature_org: If we are going to slow climate change, we must emit less carbon. Protecting nature is critical to that. https://t.co/boTRe…",892628 +#U.S. environmental agency chief #humans #contribute global warming https://t.co/snwYoz2ehP,347594 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",235588 +"RT @Cernovich: Same 'experts' who said Hillary would win claim 'climate change' is real. LOL! Go away, morons, you know nothing and you los…",468709 +"If we want to stop climate change, we're going to have to pay for it https://t.co/T8MsVTF192 via @HuffPostGreen",475853 +"RT @SenatorSurfer: This guy is on my witness last for Senate inquiry into climate change and oceans. Tonight he was close to tears, vi…",508767 +"RT @RiceRPLP: Religion plays a bigger role in evolution skepticism than climate change denial, (our) study finds… ",141974 +Google:Mountain glaciers are showing some of the strongest responses to climate change - UW Today https://t.co/mlVZuY6PKw,505807 +RT @TeamTrump: .@realDonaldTrump will cut taxes & cancel billions in global warming payments to the UN so we can use that money to…,966179 +Trump abolishes climate change in first moments of regime https://t.co/z0VYLcuWKR,800564 +Before the Flood - special screening of this climate change documentary with special guests. At The Brewery Mon 13t… https://t.co/a678gGzGiu,897987 +RT @voxdotcom: We have to bury gigatons of carbon to slow climate change. We’re not even close to ready. https://t.co/eFBz9xvbnN,566665 +"RT @MarsNoelle: Don't talk to me about global climate change if you eat meat, it's like drilling a hole in your boat and complaining about…",31082 +"be formal or informal, find solution for climate change + +@PUANConference @PakUSAlumni #ClimateCounts #COP22",893407 +"Republicans want to fight climate change, but fossil-fuel bullies won't let them - Washington Post https://t.co/VjnrLXELTm",497793 +RT @JRX_SID: Salut Leo DiCaprio sdh berani bikin dokumenter tajam ttg global warming: kritis mengupas nama besar di balik polemi…,271869 +"On global warming and the economy, we’re trapped in an idiotic netherworld https://t.co/GXxDUypyFl https://t.co/If9zgSI0yn",952902 +#EarthHour! Turn off lights at 8:30. But remember animal agriculture is the main cause of climate change! Go Vegan… https://t.co/fyYB0uUJGq,249204 +RT @ReutersUS: NY prosecutor says Exxon's climate change math 'may be a sham' https://t.co/Hhzc7ed6oj https://t.co/OVmoo33UuK,425573 +Donald Trump's likely scientific adviser calls climate change scientists a 'glassy-eyed cult' https://t.co/0t9P2NzGqb,857643 +@MSNBC I hate with a dose of reality. Learn 2 work hard & stop whining about safe spaces and ur global warming hoax. Grow up and make ur way,970991 +@Tyguylf4 mine knows global warming is a figment of the liberal media,820814 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,771165 +How hot are you on global warming? Try our climate change quiz: What is the impact of… https://t.co/kJOR3ho8o0,522475 +Former US Energy Secretary Steven Chu excoriates the Trump White House's climate change policies:… https://t.co/erdKJIU9LE,134378 +"RT @Reuters: In a rare move, China has criticized Trump's plan to exit the Paris Agreement on climate change:…",208843 +"RT @twizler557: Trump is jeopardizing Pentagon’s efforts to fight climate change, retired military leaders fear - https://t.co/r4rdvoNde1",781292 +Cartoon: If the media covered climate change the way it covers Hillary's email https://t.co/SzPDHxISd3,488788 +RT @tveitdal: 50 countries who are disproportionately affected by global warming vow to use 100% renewable energy by 2050…,56755 +"Depression, anxiety, PTSD: The mental impact of climate change It's a dream many city-dwellers long for: moving to… https://t.co/vshmH8hxB2",677231 +And the next president thinks climate change is a hoax created by the Chinese... https://t.co/3xyMhii5u4,430403 +"RT @tarotgod: when will ppl understand that global warming, deforestation, & consumption of animal products is a bigger threat to the earth…",492666 +RT @Aprilll_Mariee: Your Wcw doesn't believe in climate change :(,690704 +How will climate change affect the cost of water? A natural resource economist explains. https://t.co/fjTnNwZVL9,86820 +RT @planetizen: For the good of the planet: a series of four courses on local actions for climate change. https://t.co/2k9vZipnN9 https://t…,729700 +"RT @Moltz: Remember, everything Trump does, from deportations to promoting global warming to congratulating dictators is on the whole Repub…",910595 +#NEWS @USATODAY Punchlines: Want to fix climate change? Just ban the phrase! The week in… https://t.co/iQ8bHZlVVC,627411 +RT AP_Politics: White House official: Trump feels 'much more knowledgeable' about climate change after discussions… https://t.co/N6SFqTCEIE,544675 +Reindeer shrink as climate change in Arctic puts their food on ice | World news https://t.co/e0E9ZZId6B via @ZosteraR,236936 +"RT @OhNoSheTwitnt: [Trump reads that it's the first day of Winter] +See? I called it! I told you that global warming was a myth!",707145 +"RT @ryebarcott: Europeans 'think impacts of climate change such as severe floods and storms are already affecting them, according t… ",723320 +RT @yceek: Breaking discovery: the entire 'climate change' scare is based on faulty mathematics. .. We all KNEW!…,534852 +RT @energyenviro: 'Heat island' effect could double climate change costs for world's cities https://t.co/2t9Gv1oeoj @physorg_com #cities #H…,585851 +"RT @eemanabbasi: Let Harvey (& Sandy, Katrina etc) be a lesson to our leaders tht climate change is real-and deadly. Innocent ppl will keep…",789872 +"@NASAClimate On the other hand, many THOUSANDS of scientists agree global warming is real.",489844 +RT @thehill: Trump climate change order undermines Paris climate deal: https://t.co/EUiCV4L1i3 https://t.co/SQWAIy36bD,626956 +How will a warming climate change our most beloved national parks? https://t.co/wMSl2k0CD0 by #NatGeo via @c0nvey,520654 +@CounterMoonbat In 1970 it was global cooling in the 1990 it was global warming. Now its climate change. Now they'v… https://t.co/UluO1CebfD,466279 +Via @RawStory: Farmers can profit economically and politically by addressing climate change https://t.co/lI1pGI51Rt… https://t.co/ttxZy8VgfP,615839 +RT @GarbageApe: Here's an illustration of the Guardian article 'Neoliberalism has conned us into fighting climate change as individ…,340614 +"If governments were serious about climate change, they would stop funding the problem. #StopFundingFossils… https://t.co/AnHYoy3JBc",578623 +"RT @sleavenworth: Trump picks leading climate change denier to guide NOAA, alarming agency scientists, by me https://t.co/bNP3xxO9ur",986836 +RT @Bill_Nye_Tho: all i wanna do is *gunshot* *gunshot* *gunshot* *gunshot* *click* *cash register noise* and talk climate change,699946 +RT @HarvardCGBC: New #research: Could #governments and oil companies get sued for inaction on #climate change? via @TorontoStar…,491981 +"RT @TheAtlantic: Yes, global warming is real. Here's the kind of question that climate scientists are actually trying to answer.… ",302985 +RT @Doughravme: Left pressures Clinton for position on pipeline https://t.co/XBr4ogxQu3 Back #JILL & work at slowing climate change for our…,821321 +RT @zxkia: if global warming doesn't exist then why is club penguin shutting down,872096 +From Can making houses smarter help combat climate change with a denier.,83112 +Indigenous Canadians face a crisis as climate change eats away island home: Rising sea levels mean that Lennox… https://t.co/IKCBKFlmiO,916902 +"Scott Pruitt's latest climate change denial sparks backlash from scientists, environmentalists https://t.co/IgRFMU6tQh",74318 +"RT @FemaleKnows: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https://t.…",41781 +"RT @Slate: At Exxon, Tillerson allegedly used a hidden alias email to discuss climate change: https://t.co/5DJd1yZL20 https://t.co/uE2qVx59…",108426 +An idiot who thinks climate change is a hoax created by China. Who wants to get rid of the Environment Protection Agency. #Election2016,540514 +RT @SenatorShaheen: Shameful that @EPAScottPruitt refuses to accept science & the role CO2 plays in climate change-isn't up for debate http…,350015 +RT @caitylotz: EPA head doesn’t believe we are causing global warming. Friday @EPA took down most info on climate change science f…,504130 +RT @NickMcKim: Oh dear. I said in the Senate today that Trump thinks climate change is a Chinese hoax. Nationals Senator Barry O'Sullivan s…,569630 +Trump makes major change to US climate change narrative #KeepItInTheGround #ClimateAction https://t.co/nnSdV3DFkr,48076 +Clean cars' will save us from climate change deniers - The world is turning to clean energy and so is the car ind… https://t.co/Nl41uFsaOc,582428 +RT @bpolitics: Donald Trump's position on the origins of climate change remains a mystery https://t.co/iz0JU2v3AV https://t.co/UT5sfaFb0h,678581 +The EPA removed most climate change information from its website Friday https://t.co/iTyuDwbal2 by #CNN via @c0nvey https://t.co/YdZIstMX7H,933542 +"RT @MaryMcAuliffe4: short intro to DUP-not big into women's rights,LGBTI rights,climate change or opening businesses on Sundays! https://t.…",204455 +RT @CNN: Jill Stein: Al Gore needs to 'step up' in climate change fight https://t.co/lHr8LM7ULI https://t.co/RfKZquMLBk,483251 +RT @DJ_Pilla: Everyone pls watch @LeoDiCaprio documentary #BeforetheFlood It is an important/interesting look at climate change. https://t.…,101551 +@PeterGleick Crazy. And even crazier how some people don't believe in climate change..,596456 +"RT @pharris830: Trump natl security advisor thinks Obama is a secret muslim, EPA head a climate change denier, and considering Ted Cruz as…",98551 +RT @WIRED: .@AlGore answers all your burning climate change questions. https://t.co/MYHtlsR2jF,136985 +"RT @ABC: US to continue attending UN climate change meetings, even as Pres. Trump considers pulling US out of Paris agreemen…",378502 +"RT @c40cities: How to fix climate change: put cities, not countries, in charge - +Benjamin Barber https://t.co/3gFPlt3cjT https://t.co/ydhM1…",661017 +@itisprashanth nee Enna ramanan sir eh ?? Dae naayae unaku Enna theriyum climate change pathi ??? Daily firstu Nee kuli,631081 +Government climate change report contradicts Trump's claims: NYT https://t.co/uCgymaRsV0,397495 +Plus investigation into Tillerson's @exxonmobil on climate change. @AGSchneiderman job is to do these inveatigation… https://t.co/Ex52U3Q1O7,429301 +RT @EdwardARowe1: Investors worth $2.8 trillion are uniting against Donald Trump's climate change denial https://t.co/3Io8bOap1K,653053 +"RT @BloktWriter: 'You will die of old age, our children will die of climate change' #NativeNationsRise #NoDAPL by #RuthHHopkins https://t.c…",873776 +"Mereka, borjuis, dengan konsumsi tumpah ruah, mobil pribadi dengan AC dingin, kamar dingin, mungkin tdk trll mrskn efek climate change.",85162 +"RT @NPR: Trump thinks climate change is a hoax & and it probably won't be hard for him to ditch the Paris climate deal. + https://t.co/HZyfy…",721865 +RT @newscientist: Trump could land fatal blow to the fight against climate change https://t.co/zPo0wntgIb https://t.co/FBIaQwPsur,142098 +"Retweeted Climate Reality (@ClimateReality): + +Idaho has dropped climate change from its K-12 science curriculum.... https://t.co/BoUYPdppcN",957871 +RT @amjoyshow: CDC cancels major climate change conference https://t.co/autQvEom5D via @thehill,885270 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,63750 +"@FT US has possibly been the highest contributor to climate change funds,G19+1 will feel the strong pinch in time.",258944 +RT @climatehawk1: Australian farmers planting in smart greenhouses to combat #climate change | @ABCNews https://t.co/ggaqEkX1Yz…,86728 +"Letter to the editor: Pipeline, climate change threaten Maine directly - https://t.co/mEl3pL812g...",70534 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,790364 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",643306 +RT @peterwhill1: That global warming hoax still gets traction though eh???? https://t.co/yG0sWlN2bm,298528 +"RT @washingtonpost: 'It was really a surprise': Even minor global warming could worsen super El Ninos, scientists find https://t.co/JFQ0aTB…",240070 +everybody who brews ale and watches the yeast all die should be able to understand the basic principles of genocidal global warming effects,445578 +RT @CheHanson: We're about to have a president who said global warming is a hoax created by the Chinese.......,678471 +World leaders reaffirm commitment to fighting climate change - Fox News https://t.co/ATN9mityft,112618 +@harrowsand @hockeyschtick1 @tan123 yes this gender crap and climate change lie is alive and well down here in Australia,838761 +"@ThatTimWalker @adamboultonSKY because climate change denial fundamental 2 all of them, those r the regulations Rees-Mogg & co want rid of",604353 +The ECB’s ‘quantitative easing’ funds multinationals and climate change | Corporate Europe Observatory https://t.co/14mRp24hQ3,355764 +WEN have joined the call on health leaders to recognise and act on the interconnectedness of climate change and hea… https://t.co/dd9e7qSTh4,829347 +"RT @PenguinUKBooks: This month, we're launching #LadybirdExperts: a new series for adults, covering climate change to quantum physics.… ",157025 +"@Foxgoose @CllrMikePowell + +Well I certainly don't teach them that man made climate change is a conspiracy theory",528161 +RT @JuddLegum: 3. The problem is that doing something about climate change requires principles and sustained action.,439782 +@bitchxtheme @BABEXFETT we have strong feelings about global warming and 100 demons https://t.co/MyIxd91E9F,412030 +.@joni_yp from @UNICEF_uk children are most vulnerable to climate change,764877 +RT @niallweave: all because of electoral votes the next president is a racist misogynist climate change denying ignorant piece of s…,53914 +@trueelite7 @YGalanter @Unfather @mark_desser @seanhannity The most scary: - There is no climate change!,197159 +RT @NewSecurityBeat: “Experts predict climate change will spur some to move from their homes. How will national security be affected?”…,87861 +synergize - the #COP process tackling climate change goes hand in hamd with implementation of #NewUrbanAgenda https://t.co/Azl4RLrENr,626983 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,852887 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,130659 +An open letter from academics to the Trump administration on climate change. Sign away folks: https://t.co/DTdan9GQei #ParisAgreement,532269 +RT @gazregan: EPA head falsely claims carbon emissions aren’t the cause of global warming https://t.co/QacsYI1glT,721124 +"US Alumni in Pakistan are discussing climate change this weekend - +Dr. Ramay #ActOnClimate https://t.co/SWKtydZuRi",207930 +RT @EverySavage: Pruitt’s office deluged with angry callers after he questions science of global warming - @washingtonpost #Resist https:/…,555759 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,971279 +RT @MousseauJim: Ya now you are muzzling scientists that have proven the climate change is a scam. https://t.co/8AiGh1nTGO,303159 +RT @PopSci: The mystery of Greenland’s icy history could help us survive climate change https://t.co/WpPU06H8T4 https://t.co/wPK2gCMxLo,507693 +"RT @LeeCamp: The fossil fuel industry is spending millions to fill K-12 schools with pro-oil propaganda, to breed more climate change denie…",465871 +"China warns Trump on climate change + +BUT Obama gave China green light for 100's of additional coal fired plants! https://t.co/jnyW5BH4oT",934290 +@TheRealRolfster @MattMcGrathBBC there is plenty of evidence of climate change. However there is few evidence for denial. Come on +,182683 +RT @Newsweek: Why did Donald Trump ignore Ivanka on climate change? Al Gore has the answer https://t.co/Qj2NuRvgR7 https://t.co/mg5DQQ1fIt,825197 +Lmao wait.... global warming??! https://t.co/H8SAHdBpzM,436717 +RT @Fusion: Cartoon: If the media covered climate change the way it covers Hillary's email https://t.co/SmFbaJ97YT https://t.co/U41LmmKl9R,866022 +@DattiloJenna climate change,113016 +RT @Oxiunity: if global warming isn't real why did club penguin shut down,244750 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,502527 +RT @stewartetcie: Ummm... This op ed is from the husband of Canada's minister responsible for climate change. https://t.co/iachAlgpT7,162559 +RT @sad_tiddies420: Trump's top choice for the Environmental Protection Agency is a top climate change denier https://t.co/0FVQJdmIPG,463464 +Why did God bring this hurricane ��' last I checked we are the cause of climate change so.. �� pick ur responsibility up and shut yo mouth,763405 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,18702 +"In race to curb climate change, cities outpace governments: A surfer carries his board as… https://t.co/RWwQDNHN49",238567 +"Trump's new Communications Chief is an anti-science, young Earth, climate change denier. Scum rises to the top. https://t.co/Kw5bbFNooQ",704788 +Hot weather is getting deadlier due to climate change: https://t.co/bIy6F0fNhB via @researchgate,651389 +New York AG: Sec. of State Tillerson used pseudonym 'Wayne Tracker' to discuss climate change while CEO of Exxon… … https://t.co/P3LuNOHmoi,744950 +"#science China to Trump: Actually, no, we didn't invent climate change https://t.co/AvPNdxzjJY https://t.co/OeyeVfJP94 #News #Technology …",129143 +Educate yourself! >> 'How cities can stand up to climate change' via @Curbed https://t.co/w8XT9xqT8A https://t.co/jR4XtmxvNZ,384556 +"RT @robn1980: #Russia a 'growing threat' say MI5. Not up for discussion: tangible threats such as climate change, austerity, fore…",76106 +Experts say global warming may make fish toxic https://t.co/0YIJNfeFcP,256890 +Just watched Leonardo DiCaprio's excellent and eye-opening documentary on climate change entitled 'Before The... https://t.co/n6UQmRfZHX,520293 +Adani Carmichael mine opponents join Indigenous climate change project: The Wangan and Jagalingou are divided over… https://t.co/AP2BifvQoQ,889555 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,746129 +David #Attenborough on climate change: 'The world will be transformed' – video https://t.co/pbn3b51Hp7 #climatechange,427951 +@benshapiro to really make it global warming you need to mention how it's the worse rain in years,731007 +Could abrupt climate change lead to human extinction within 10 years? https://t.co/blubAHZ9qX @whitleystrieber @earthfiles @coasttocoastam,429288 +RT @CatherineForNV: I believe in science. I believe in climate change. Let's protect our precious resources including the air we breathe &…,20860 +"RT @OwenVsTheWorld: The earth is dying and our well-educated, elected officials deny climate change to protect the corruption but.. sho…",993045 +Increasing tornado outbreaks -- is climate change responsible? | EurekAlert! Science News https://t.co/4QQ571wMt7,176478 +"@nbc6 .Earth is not going anywhere. Alaska's Bogoslof Volcano erupted Sunday, sending ash 35,000 feet into the air. that is climate change.",895762 +"@mashable global warming for sure,maybe someone should alert Al Gore and others....",569333 +RT @LoganWi91912989: @SpeakerRyan Great! Glad you will be working on climate change.,212305 +Pollution cause climate change because pollution were designed by sin. It changes what God original plan for this earth. #climatechange,725658 +RT @HeadphoneSpace: @Roger_McYumYum @SenSanders @acobasi the possibility of a rational approach to combatting global warming.,728982 +12 #globalgoals are directly linked to climate change. The #ParisAgreement is... https://t.co/ExW7IJ5Pvm by #ClimateReality via @c0nvey,933352 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",484356 +RT @mariaah_s: open this tweet for a secret message ㅤㅤㅤㅤㅤㅤglobal climate change is real. ㅤㅤㅤㅤㅤㅤㅤㅤㅤ,255786 +"Offshore wind, clever concrete and fake meat: the top climate change innovations! �� https://t.co/NgBUvjBolJ",829635 +"An activist hedge fund put a climate change denier on the board of NRG, which is trying to boost renewables https://t.co/jIhRD5HViu",334593 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,188684 +"Rick Perry wants to hold a dangerous, totally BS debate on human-caused global warming https://t.co/cnBAAtNtBM",815072 +"please watch chasing coral on netflix, and maybe you'll believe in global warming !!!",442122 +shareholder proposals re climate change; C) It's a great talking point to show that Wall Street is recognizing the significant economic /5,36020 +Mondo: 4 PMI su 5 temono impatti del climate change sul business. Italia: rischio sottovalutato https://t.co/TNJ4wedF41,421230 +"WashPost: Thanks to global warming, Antarctica is starting to turn green https://t.co/IwZfY196kk @chriscmooney",627623 +"RT @ChrisJOrtiz: joe: im going to keep the nest password +barack: no youre not +joe: well see if they believe in global warming when i…",980821 +"RT @TwitchyTeam: ‘Do you even science, bro?’ Neil deGrasse Tyson uses the eclipse to prove climate change, trips over SCIENCE https://t.co/…",781008 +"RT @michiganprobz: According to Popular Science everyone will move to MI in 2100 due to climate change..hopefully they be done with I75 +htt…",645631 +RT @JulianCribb: Global 'March for Science' protests call for action on climate change https://t.co/EClvgfNgqg,163845 +RT @Reuters: EPA chief unconvinced on CO2 link to global warming https://t.co/wjaK7belcz https://t.co/NgWBbXPP7u,949415 +Most people don't see how climate change is affecting their lives—and that's a problem https://t.co/U6Ukh4kmqd https://t.co/cD6F7HfOs9,284280 +RT @bets_jones: I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/68CDtDHzHI,961923 +"@alroker +Saw your interview on global warming being real. You should post. ���� +#WeAreAllStewardsOfEarth",138561 +How bucking climate change accord would hinder fight against HIV/AIDS https://t.co/FocaxMSIli https://t.co/fd2FTDJh8c,935550 +"RT @Bentler: https://t.co/rhXbB8VlTO +(Audio) Even in Texas, people worry about climate change +#climate #texas #transition https://t.co/AIBt…",832262 +The CDC canceled a climate change event. Al Gore will host it instead https://t.co/ToezHV4wiZ,712116 +Reports: Trump meets Al Gore for 'extremely interesting' climate change discussion https://t.co/ySmkVvNpFr,713337 +RT @TeslaMotors: Rising temperatures put millions at risk as climate change hotspot @third_pole (world's 3rd-largest store of ice) is melti…,784039 +RT @BrooklynSpoke: Our mayor is so concerned about climate change that his SUV drivers leave their engines running while he rides a st…,702165 +RT @dumbwinks: maybe jesus isnt coming and we've neglected warnings from scientists about climate change for over 30 years,738465 +RT @RichardMunang: Africa smallholder farmers among the most affected by climate change https://t.co/5EXIbOzUUw via @NewTimesRwanda,132050 +Good discussion on cross-party climate change policies in #chch tonight with @KennedyGraham @stuartsmithmp & Denis… https://t.co/FezLTceUKs,499967 +Putin thinks Russia will benefit from climate change and communities will ‘adjust’ - https://t.co/T9kEIY3xdx https://t.co/l8m1OhoN7M,367567 +Trump admin do not believe science about global warming and challenge it based on Technology. #inanefuckingidiots,623626 +RT @danadolan: Great chapter on US climate change policy in @r_deLeo's Anticipatory Policymaking. Doubling back to the chapters I impatient…,825528 +RT @nvisser: Pretty much EVERY living thing on the planet has already felt climate change https://t.co/Xh0AfQWCS7 #COP22,375901 +fuck global warming ��,810713 +"RT @Alex_Verbeek: ���� + +Artist takes on climate change with giant sculpture in Venice Canal + +https://t.co/hK6LNoxQOv #climate #art…",712277 +"Climate deniers welcome climate change, in a cognitive dissonance larded by self interest #conspiracy",102007 +Most people don’t know climate change is entirely human-made | New Scientist https://t.co/m0OVMJ7pII,187527 +#stopthechange check this informative image out to figure out ways to prevent further climate change! https://t.co/frjYMUj1k6,378155 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,634492 +"RT @guardian: We can fix climate change, but only if we refuse to abandon hope | Zoe Williams https://t.co/nKoxFUrkJr",675346 +RT @Lutontweets: Monster snowstorm in Colorado forces postponement of climate change & global warming rally https://t.co/XLdWHNFQVy…,901159 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,466180 +The most effective individual steps to tackle climate change aren't being discussed https://t.co/4HShGrNZ0x,915897 +"RT @jimferguson: What do Dutch trains have in common with climate change deniers? + +They both run on wind power. + +https://t.co/kyQYVV20W4 vi…",804521 +RT @guardian: Merkel vows to put climate change at centre of G20 talks https://t.co/jUWpHBrp2k,145454 +David Hempleman-Adams urges climate change action after Arctic voyage https://t.co/QNcbaoTFUH,178673 +RT @MomKnwsShopping: #NYPost Meteorologists debunk EPA chiefs climate change denial https://t.co/94QdNlJZ1i,617471 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,875322 +RT @OSU_Beaver4life: 'X' marks the spot. #LookUp �� #GeoEngineering #chemtrails the real global warming. ✈️ ��@Dan_E_V @TruthSeeker2115 http…,129150 +We just lost an an area of sea ice as big as India to climate change https://t.co/t1obYQIAZB,622678 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,21744 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,704991 +China may leave the U.S. behind on climate change due to Trump https://t.co/mark30IqCj via @YahooNews,519115 +"On climate change, Scott Pruitt contradicts the EPA’s own website +https://t.co/G2OKWG2syZ",380592 +@fisherstevensbk #beforetheflood taught me more about climate change than my entire formal education!! insightful and bold!!,268542 +RT @DineshDSouza: The real climate change the media now has to adjust to is @realDonaldTrump https://t.co/080YqPw1Ng,291316 +"RT @9GAGTweets: But go on, global warming isn't really a thing... https://t.co/itq5NcnVoz",338268 +RT @wef: Best of Davos: President Xi Jinping on globalization and climate change. https://t.co/FsOm1Z25Sz https://t.co/jA9gu6lsam,239293 +"@sixirontg @stevereneshow @glennbeck billionaires, liberals at highest positions.A trillion $ stimulus, tariffs, amnesty,global warming...",531330 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,300066 +"In the Netherlands, climate change is not a hypothetical or a drag on the economy. It’s an opportunity. https://t.co/Z7KoLwlLx4",50540 +"RT @EPAWouldSay: If you know scientists, you know it's rare to get a room full of them to agree on anything. Except climate change.…",113908 +"Longer heat waves, heavier smog go hand in hand with climate change - DailyRant https://t.co/H5oTQulSvl",585990 +"RT @Grimeandreason: If you don't think climate change & neocolonialism are issues that can bond developing states against us, you got a rud…",752092 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,79291 +"Ugh, six more weeks of winter AND no global warming https://t.co/K9wwa6NhGz",347916 +@sakrejda going to start blaming Bayesians for global warming.,864940 +"climate change denial &racism 4 poor masses, Superconcentratn of wealth &power 4 rich &powerful #auspol THATS TERROR NOT DEMOCRACY #lnp scum",7787 +RT @WorldfNature: Reindeer are shrinking because of climate change - New York Post https://t.co/bECNHPHybW https://t.co/L687FOwy4p,629207 +Thank god for the U.S. allies that plan to give Trump an earful on climate change at G-7 summit https://t.co/LP0mXZPOU0,575917 +"@AJEnglish Uhm, and climate change. Interested to hear if Paris Agreement is brought up.",432436 +Feb 14th e4Dev invites you to watch Before the Flood and witness climate change firsthand w/Leonardo DiCaprio.… https://t.co/3xHiPpVDEs,597885 +RT @jenninemorgan: There is no global warming due to CO2. It is a scam. Climate change happens but is unpredictable as there are too m…,173756 +@realDonaldTrump I voted for you but you need to understand that climate change is real....so please look into it more,867822 +RT @JoshBBornstein: Guy who says climate change is a giant international conspiracy advocates ABC be staffed with serial sexual harasse…,278415 +RT @motherboard: Mayors unite to fight climate change from city to city: https://t.co/yj3e4z2xQ0 https://t.co/CBZpwE7NB7,528119 +"RT @FabiusMaximus01: The cold facts about the Paris Agreement, global warming, & the Constitution https://t.co/Ny8uv5t17H https://t.co/hJ6q…",118755 +RT @VICE: What the future looks like with a climate change denier in the White House: https://t.co/957NwcUBbq https://t.co/cNoEW5AGRW,356576 +climate change is a chinese hoax! Sad! https://t.co/d0Oc7ug5xy,748080 +"@marcorubio yay so cool to see a homegrown miami boy denying the science of climate change, I'll miss you miami, sry grandchildren congrats!",51429 +"RT @OwenJones84: And lo! The Tories did conjure up the magic money tree to shower gifts on their homophobic, anti-choice, climate change de…",698409 +RT @MohamedMOSalih: Sadly we'll see more natural disasters being called man-made disasters if we don't ALL act on climate change.,388085 +RT @tricyclemag: Few are optimistic about reversing the effects of global warming. And then there’s environmentalist Paul Hawken: https://t…,307283 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,704405 +It's such a beautiful day to think about climate change eroding the fabric of civilization.,812733 +Seth Meyers has some thoughts on Donald Trump and climate change https://t.co/ZFRUPgdFk3 via @TheWeek,717339 +Who wants to place bets on @realDonaldTrump calling global warming fake tomorrow morning because of the snowstorm?,293579 +Al Gore is going to build a wall to stop global warming,406738 +"tanghaling mainit, gabing malamig. ramdam na ramdam kita climate change.",228132 +"RT @ResisttheNazis: Trump will be the only world leader who denies climate change, giving the U.S. the official title of Dumbest Countr…",286368 +RT @AgriEngrs: I invite everyone to plant some trees! Spread awareness and do your work to stop climate change. https://t.co/kQ7iinJRgt,577734 +RT @pepcanadell: Can we slow global warming and still grow? The New Yorker https://t.co/gFvIovHDNV https://t.co/ggZ53ZcVlB,135143 +RT @peddoc63: Forget about cow farts causing global warming. How about the flatulence being excreted by liberals at all their sil…,620854 +RT @homemadeguitars: They'll have to quit. Their new Scammander-in-Chief doesn't permit acknowledging global warming. Sorry. https://t.co/R…,369683 +RT @ClutchGodx: Oh so y'all still think global warming a joke huh https://t.co/mmTeVs6l8t,323400 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",417301 +Company directors can be held legally liable for ignoring the risks from climate change https://t.co/zAggEUS5p5 https://t.co/rrxllsi0ti,436059 +RT @6esm: Economists call for $4 trillion carbon tax to save humanity from climate change https://t.co/m2tomoZxdq - #climatechange,721249 +"Effects of climate change may 'wreak havoc' on mental health, doctors say https://t.co/BwLlVvN5SW via @upi",773767 +"RT @GeorgeMonbiot: Talking about climate change in the context of #HurricaneHarvey is 'politicising' the issue? No, *not* talking about it…",333656 +Rex Tillerson: Secretary of State used fake name ‘Wayne Tracker’ to discuss climate change while Exxon Mobil CEO: C… https://t.co/vQVq0M6CxH,568768 +#CLIMATE #p2 RT Do mild days fuel climate change scepticism? https://t.co/rxRJo8lWK9 #tcot #2A https://t.co/i12sd3BMPN,43272 +"Mitigating climate change isn’t the only issue, says Gord Beal of CPA Canada. Adaptation also needs a national plan. https://t.co/A3dXUaYZLY",938568 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",172948 +Feeling helpless when it comes to climate change? This article offers small actions we can take to help. https://t.co/rk84fwiOx9 @UpshotNYT,983276 +"Youth interested in climate change adaptation and mitigation?? Don't miss +https://t.co/uHrqc2zvOU",803312 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",76720 +"RT @otterhouse: National Geographic images of climate change, from California to India https://t.co/AauOzdLwBK by @drcrypt via @FastCoDes…",511620 +@anniebeans59 @tofs1a @foxnewspolitics it was dumbfuck Republicans who refused to believe global warming b/c they needed a jacket outside,512613 +Bloomberg urges world leaders not to follow Trump's lead on climate change https://t.co/6Y7nF07ok0,984860 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,95573 +"RT @MikeElChingon: Trump put a climate change denier as head of EPA and an anti-labor, anti-healthcare for min wage workers as Labor Secrat…",850914 +AGU responds to comments by EPA Administrator Scott Pruitt denying CO2 role in climate change. https://t.co/83bZ6wmkb1,482213 +Petro Industry News: How does climate change compare to other national threats? https://t.co/WC5rRZz7l1,269621 +Lifelines: A guide to the best reads on climate change and food' #podcasts #feedly https://t.co/kg8Vsq1TuG,193531 +#WorldNews Donald Trump's environment boss doesn't think humans are driving climate change despite…… https://t.co/sEyCC1fFzS,595368 +How climate change is a 'death sentence' in Afghanistan's highlands https://t.co/zWubvxJ55V,107866 +"RT @esmewinonamae: Boy - 'What that mouth do?' + +Mouth - 'Animal agriculture is the leading cause of: climate change, species extinction & o…",469303 +". Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/lH2yMhL3Ll via @ShipsandPorts",818727 +G7 leaders blame Trump for failure to reach climate change agreement https://t.co/QS6jbSxc2U,635858 +RT @UN: Starts today in Marrakesh: @UNESCO conf. on indigenous knowledge & climate change https://t.co/obyaU13EWR…,965686 +"RT @democracynow: .@guardian columnist @GeorgeMonbiot: 'By not mentioning [climate change], you are politicizing it... It's a politic…",299643 +RT @SwankCobainn: Donald trump doesn't believe in climate change this nigga is actually an idiot I'm concerned lol,624867 +RT @Newsweek: Trump is hurting thousands of small towns with his denial of climate change – and here's how https://t.co/69bLhLTUF8 https://…,304109 +RT @MomeeGul: Real player for change are private sector. Regional coopertion on climate change @ShakeelRamay #SDC2016 https://t.co/m8WCXHA…,88015 +"RT @RollFwdEnviro: Economy continues to grow, but you WON'T BELIEVE the impact on global warming pollution...for THIRD STRAIGHT YEAR!!…",26930 +"@pattonoswalt @lesleym14 @scott_tobias global warming, dude.",764165 +Oh lovely—EPA Scott Pruitt voicing claims that carbon dioxide doesn't have anything to do with climate change! Say goodbye Planet Earth!,830407 +RT @thehill: Sanders tears into EPA head for saying CO2 isn't a 'primary contributor' to climate change https://t.co/s46XxZqRCw https://t.c…,533945 +What you can do to help with climate change: https://t.co/cg0V8OaCBd,832256 +RT @FortuneMagazine: Donald Trump’s energy pick softens stance on climate change https://t.co/wm35sNIWlu https://t.co/0c3bBSi0H1,730474 +"@RepBost @HouseHomeland Threats to Peace and Stability: global terrorism, climate change, geopolitical crises, econ… https://t.co/km31NzrVyH",142120 +RT @Travon: The CEO of Carl's Jr opposes minimum wage increase and gets to be labor secretary. A climate change denier gets to…,52465 +"97% of climate scientists believe in global warming. Know what else 97% of scientists believed in at one time? Geocentrism. +#Woke #Kony2012",970804 +"It didn't take long for #China to fill #America's shoes on #climate change +https://t.co/yCGqRZJCkb",415836 +We destroy so many good things. Hopefully global warming kills us all,605423 +RT @SteveSGoddard: The brutal global warming in Colorado continues https://t.co/pKxPl3ezpF,472333 +#RhodeIsland #IdiotDemocratic senator uses Okla. tornado for anti-GOP rant over global warming https://t.co/KxNsXtOvQM via @dailycaller,248830 +"RT @IseeBS: @realDonaldTrump 1/ Liberals love declaring settled science on climate change. Yet when it comes to gender, they ac…",47690 +The importance of palaeo studies for understanding climate change. https://t.co/n2zgfm3Pjm,816723 +"RT @samwhiteout: If only there was a scientifically established explanation for this... + +climate change. https://t.co/ZKBuBOFMZz",278217 +The video-clip says 'mining' is part of climate change we humans are all suffering now. Might be a sweeping... https://t.co/iZFFGbVoST,204745 +"RT @EricBoehlert: reminder: network evening newscasts this yr spent 125 mins on Clinton emails, 0 mins on climate change;…",100347 +"RT @Energydesk: On #IntlForestDay, watch how 750 billion trees at the top of the earth could make or break climate change https://t.co/Hz1g…",17989 +"RT @GigiDatome: Tonight will be #EarthHour, let's fight the climate change! At 20:30 turn off the light for one hour, let's win... https://…",385330 +The scientist cooked books for government climate change whistle blower says scientist part of obamas SS network in government t yrs cl up,659215 +"Longer heat waves, heavier smog go hand in hand with climate change https://t.co/uGLMKX9atN https://t.co/Dl0DQLX5zS",575962 +"RT @StevenCowan: As Jacinda Ardern says 'climate change' is a defining issue, will Labour now change present policy and ban all offshore oi…",41877 +What if climate change was brought about by witchcraft,147107 +"RT @starburstt: Tonight, we go undercover. But first, nachos and a Cold War Cocktail (melted, but hey, global warming, amirite?)…",12509 +@mglessman @weatherchannel Thank you for sharing the information about climate change!,873931 +"Watch J-CCCP's 'Feel the Change' campaign video, launched as a part of the Belize climate change communications... https://t.co/GGdYdvEaoH",961460 +RT @etribune: Four forestry initiatives #Pakistan is taking to fight climate change https://t.co/X8aEO97K6E https://t.co/LkceCG7LbA,991948 +Want to know how we tackle climate change in the Trump era? It starts with cities & states stepping up to the plate https://t.co/Wyd3Txr7kG,882799 +@puglover3817 @PBS they push climate change,597075 +RT @WFS_Geography: Refugee crisis: Is climate change affecting mass migration? https://t.co/9VcsxYaPRH #geog4b #WFSyear13,397560 +"RT @Lucan07: 3000% years ago humans stopped eating Cows & started worshipping them global warming spiked, then came McDonalds &…",922131 +when i was a kid i always thought all star was about global warming,516390 +Nicholas Stern: cost of global warming ‘is worse than I feared' #COP21 https://t.co/mPA3lXpTqm,36679 +"RT @cnni: Polar bears will struggle to survive if climate change continues, according to a new US government report… ",355749 +RT @vaqarahmed: Thank U Dr @AdilNajam 4 talk on #post-truth narrative and #climate change at @SDPIPakistan #globaldev,111961 +RT @theecoheroes: Shareholders increasingly concerned about impact of climate change: Teck #finance #climatechange #environment…,333377 +#StrongerTogether #Debate #Rigged #DNCLeak #Iamwithher climate change is directly related to global terrorism https://t.co/6SoXS3kdim,519677 +RT @KekReddington: @AmyMek @GemMar333 There is no man made global warming https://t.co/mXTgSrtX2Y,292196 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,200571 +"RT @AyaanG: @marianokhadar @Somaliland could not agree more, we have to proactive and not responsive to effects of climate change",532693 +Efforts to slow climate change could keep the planet habitable and boost the world economy by $19 trillion! https://t.co/CRu41wXREo,696374 +RT @BeingFarhad: 'Trump is wrong — the people of Pittsburgh care about climate change' https://t.co/bayVMbJY4g via voxdotcom #ClimateChange,36398 +RT @WorldResources: #NowReading Trump disbands federal advisory panel on climate change @thehill https://t.co/AqALMAds46 | Learn more…,963871 +RT @FollowYayu: I blame you for global warming… your hotness is too much for the planet to handle! https://t.co/R1qXVAQ5EB,760952 +RT @omarchahrouk: Collaboration. Communication. Cooperation. To achieve climate change action! @ourcbcity @dizdarm @RamadanHal…,507103 +"RT @imskytrash: evidence global warming is not a hoax: + +1) record temperatures +2) water levels steadily rising +3) FUCKING CLUB PENGUIN SHU…",243383 +Trump to drop climate change from environmental reviews: https://t.co/07E5BdcY4P via @AOLGood for you Mr. President.,51662 +RT @ChinaEurasia: China may assist Pakistan agriculture on climate change affects under CPEC https://t.co/tcE9hbPCAK,788143 +"RT @XiuhtezcatlM: Join my Q&A with @DefendOurFuture, young leaders in the fight against climate change at 3pm EST! #DefendOurFuture https:/…",193781 +"RT @realDonaldTrump: Give me clean, beautiful and healthy air - not the same old climate change (global warming) bullshit! I am tired of he…",102407 +RT @SierraClub: Trump administration sued over climate change ‘censorship’ https://t.co/tIBDcZ0g5s (via @ClimateHome),76051 +RT @qz: Angela Merkel’s husband is taking Ivanka and Melania Trump on a climate change tour https://t.co/Z5P7MalB0C,41988 +if taking an env geography class has done one thing for me it has allowed me to shitpost more efficiently in /pol/ climate change threads,29210 +RT @RogueNASA: Energy Department climate office bans use of phrase ‘climate change’ https://t.co/4zdhWPcwJe,733080 +"RT @amlozyk: Trudeau is injecting climate change fear to people by taxing us. Dividing, I will not get into that, but he said 'w…",985373 +RT @UN: Most hungry people live in places prone to disasters; climate change makes it worse. @WFP & @Oxfam on #r4resilience https://t.co/h…,872691 +@SadUSNVeteran not global warming crap that's just normal always have been since I could remember,49560 +"RT @Greenpeaceafric: Research shows that more people are starting to see global warming as a current crisis, not something to come:…",198799 +78° in Mid-November. Sure glad that climate change thing isn't real.,601351 +RT @SenFranken: You can’t erase facts. Man-made climate change is a fact. @POTUS' EO is a political ploy not grounded in reality. https://t…,767895 +RT @CauseWereGuys: if global warming doesn't exist then why is club penguin shutting down,88166 +"RT @ClimateNexus: New Gallup: 45% of Americans now say they worry 'a great deal' about global warming, up from 37% a year ago…",272120 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,761653 +RT @Crudes: if global warming isn't real then explain why club penguin is shutting down?,439734 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,225986 +"RT @TheRickyDavila: Al Franken shutting down Rick Perry over climate change is everything & more. +https://t.co/OaNYolpEjH",271947 +RT @thatonejuan: 'What's harder? Convincing a Trump supporter that climate change is real or convincing Mello gang that Deadmau5 is better?',20794 +"RT @whitefishglobal: Two words the Trump Administration can't say: climate change +#resist #TheResistance https://t.co/Rfpjkw9dp4",172350 +"RT @ScottAdamsSays: How Trump makes money for the country out of nothing. Also, some climate change stuff: https://t.co/BQczBRfYHG #Trump #…",93349 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,207577 +"RT @SovietSergey: School history teacher, year 2150: + +'And then Donald googled 'climate change hoax' and that is why we all must now… ",193393 +RT @philkearney: Climate deniers blame global warming on nature. They are wrong. Here's the data from NASA. https://t.co/oSilqgmDhO Worth…,919838 +It's unfathomable how anyone can deny climate change,303267 +Who needs global warming when you can simply light $1.6 billion on fire. https://t.co/K9fBxXxqfv,215238 +RT @EnergyBoom: China: Trump's election will not jeopardize global efforts to combat climate change #COP22 https://t.co/diYvzdVwNP,753001 +RT @UNESCO: It is essential that we work as one together with indigenous peoples to address climate change…,860932 +"RT @AngelicaJoy__: It's so nice out LOL global warming, we're all finna die https://t.co/8QsUzRURXz",731781 +I've failed to tell you global warming,772579 +"This is the letters from Americans. Today, 20M more Americans now know the financial security of climate change is dangerous.",945782 +RT @BirdLife_News: Researchers in Denmark conclude that climate change is a threat to the survival of migratory birds…,565594 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,668399 +RT @WorldfNature: Alaska wildfires linked to climate change - Alaska Public Radio Network https://t.co/xiNzFmI3W1 https://t.co/Ey2PjdmFms,187894 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",24733 +"Guys, go watch National Geographic / L. DiCaprio's doc on climate change, Before the Flood. It's free so no excuses. https://t.co/sNqiOes2UL",127237 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,57546 +So it's 50 degrees on January 3rd and you guys still don't believe in climate change huh,813037 +"I saw this on the BBC and thought you should see it: + +G7 talks: Trump isolated over Paris climate change deal - https://t.co/jPWk5vFog8",365946 +RT @noturbine: @SpaceWeather101 @wattsupwiththat It's not global warming. Industrial wind turbines that do that.,486202 +@MrBanksIsSaved @jbarro to equating BLM to the KKK and calling global warming bullshit.,226177 +RT @nytimes: Senator Tim Kaine challenged Rex Tillerson on his climate change views https://t.co/NeTBkpFS9L https://t.co/ahyVybQqYg,83339 +RT @350: What American workers know about climate change: it's real and we can fix it. @1199SEIU + @billmckibben lay it down…,475772 +"RT @Greenpeace: If climate change goes unchecked, many areas in southern Europe could become deserts. https://t.co/PGRHflqMtb #scary https:…",733562 +EPA chief: Carbon dioxide not 'primary contributor' to climate change https://t.co/G4l6z57wlB,672377 +Corbyn says he would confront Trump on climate change if he were Prime Minister https://t.co/9XjRsR7Cfb,325473 +"RT @ArthurNeslen: Lobbying data reveals carmakers' influence in Berlin, by me on climate change news: https://t.co/MaGuWjrXFP via @ClimateH…",960228 +So much for global warming ... don't they wish! https://t.co/0RnM39hphL,338453 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",303865 +"RT @AynRandy: Hell yeah I wanna FUCK + +F ind solutions to climate change +U ndo the damage caused to the reef +C ombat skeptics +K support the…",984308 +"Parks season has officially started! Today I met @cathmckenna, the minister of environment and climate change today… https://t.co/TvghgtWGks",176390 +RT @Independent: The proof that something terrifying really is happening with climate change https://t.co/fle5ks3xm9,110266 +"@AbundanceInv Fur sure would! Seen how activists have been impacting energy companies, due to climate change? https://t.co/YdKTOIXIu7",723823 +RT @LodhiMaleeha: I was honoured to deposit Pakistan's instrument of accession to the Paris agreement on climate change at UN today. https:…,713426 +"@CNN ♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/dLAgihdmOI",65837 +"RT @Robbinsds: US the outlier The divisions were most bitter on climate change, 19 leaders formed a unified front against Trump. https://t.…",959568 +RT @YahooNews: Billionaire climate change activist says he’ll spend whatever it takes to fight Trump https://t.co/9PxJKpE4hR https://t.co/8…,259915 +#CLIMATEchange #p2 RT Centrica has donated to US climate change-denying thinktank https://t.co/wBHriFEWQD #COP22 https://t.co/16xjXKntDx,414319 +RT @afreedma: Amazing to me that @CNBC isn't responding with a segment on what the science actually says on climate change. It's not hard t…,734239 +RT @LKrauss1: Major drivers of climate change involve basic physics and chemistry. That is why denying them is so fundamentally misplaced.,951585 +RT @BBAnimals: The effects of global warming https://t.co/twFnLF4XNw,991551 +"I think the Pope needs to get his shit together. W/no moral high blathers on about Trump, climate change... +Hey Va… https://t.co/mwPwD5WzVE",538053 +RT @AdrianoVeneto: @fattoquotidiano global warming IS a hoax,159032 +@realDonaldTrump As you're signing these EO's just remember ' DC's avg. temp is higher than your approval rating' global warming is real,760242 +The Paris Agreement on climate change comes into force https://t.co/UILnLPKkJK,511303 +No such thing as climate change idiots! It's called weather and weather happens. https://t.co/E8CCjgykr7,205139 +RT AlexCKaufman: scootlet: Jeff Sessions last year said climate change is a conspiracy against poor people and I g… https://t.co/cpNOFDRBsq,713411 +"RT @MikeOkuda: The so-called 'president' wants less warning of hurricanes, because he's afraid of more data on climate change. https://t.co…",404299 +"Anna Coogan on Trump, climate change and breakup songs - The Independent https://t.co/mrejrldmky https://t.co/ROrjKhqTI9",520934 +RT @eemanabbasi: I'm just tryna enjoy this 50 deg weather in the middle of winter but I kno it's bc of global warming & polar bears…,962258 +RT @Green_Europe: #FutureofEurope enhances energy efficiency & keeps global warming well below 2°C. Join #SDGambassadors @ #EP…,589683 +RT @jfagone: Trump admin apparently taking steps to purge scientists who study climate change. https://t.co/mxo5WQCxYd,879487 +Still pushing the global warming scaremongering... Maybe ppl shouldn't build houses in such areas! �� https://t.co/WjxnUgJiFa,595853 +"RT @ReclaimAnglesea: How climate change battles are increasingly being fought, & won, in court (Courts ⚖️step up as pollies fail #auspol) h…",893537 +RT @danprimack: Mulvaney: 'We are not spending money on climate change anymore. We view it as a waste of your money.',510701 +"RT @lisapjackson: 'The main culprit, experts say, is climate change.' https://t.co/57puMM6H5z",506168 +"RT @mattmfm: 1) Plans to cut insurance for 24M +2) Doesn't believe in climate change +3) Has no economic agenda +4) Is a policy dun…",935401 +Excuse me? Dems are NOT worse than GOP. #MuslimBan the blocking #ACA along with the denial of climate change? You s… https://t.co/kjueEvDUst,172217 +RT @wikileaks: Full doc: Leaked draft NASA/NOAA US climate change report https://t.co/OdGBsPt9MM https://t.co/FWie4E28Eo,107737 +RT @Jackthelad1947: Company directors to face penalties for ignoring climate change #auspol politicians should too https://t.co/sHkGVfRQUm,843898 +RT @TIME: Justin Trudeau kayaked up to a family to talk about climate change https://t.co/Gwj1ImAJHe,75963 +global warming toys for teens https://t.co/ODdU3PQfFo,792583 +"RT @insideclimate: In the draft U.S. climate report, scientists describe overwhelming evidence of manmade climate change underway now. http…",788850 +RT @Adam_Stirling: The idea that carbon pollution must have a price is the most important tool human beings have to fight climate change. P…,171453 +GE CEO Jeff Immelt seeks to fill void left by #Trump in #climate change efforts: Biz Journals https://t.co/xsmuz923u4 #environment,721682 +"It's important we start talking to our children now about climate change that will affect their future, our... https://t.co/BYpvAexnZV",504393 +The remarkable pace at which nations of the world have ratified the Paris Agreement on climate change gives us all hope. Mitigation...,457122 +RT @SOMEXlCAN: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/WQA1LQp07o,967876 +RT @MarianSmedley: Of course we can - and we need to to tackle climate change https://t.co/ok0Mgc5BxC,778564 +"RT @NPR: Trump plans to cancel billions in payments to UN climate change programs & use money to fix America's water, environmental infrast…",384288 +"RT @pablorodas: EnvDefenseFund: The White House calls climate change research a “waste.” Actually, it’s required by law. #ActOnCli… https:/…",918649 +I'm ready for climate change! The desert sucks!,932202 +RT @yourlocalemo: TELL YOUR BOYFRIEND IF HE SAYS HES GOT BEEF THAT animal food production is one of the leading causes of climate change an…,596826 +How untreated water is making our kids sick: Researcher explores possible climate change link - Science Daily https://t.co/Tvxws1llou,533476 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",510491 +RT @TheEconomist: Uncoupling emissions growth and economic expansion is important for slowing climate change https://t.co/hliGxDO4wa https:…,542316 +RT @GWPnews: .@VivDeloge @BWS2016: Involving #youth in decision making ensures the climate change transition @ofqj_france https://t.co/FUUG…,994967 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,19929 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/IXW10VS2uP https://t.co/LLG…,600094 +RT @latimes: UCLA scientists mark Trump's inauguration with plan to protect climate change data https://t.co/JJV1snB4AF https://t.co/1isbR5…,415619 +"@icouldbeannyone I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",954438 +"RT @816Bike: Hey since it's super nice lately (global warming perhaps?), we are bringing back (weather permitting) BIKE SALE SAT… https://t…",68040 +"esok presentation bi gp +aq tntang global warming.. +wish me luck.. ������",621500 +"RT @nytimes: As global warming cooks the U.S. in the decades ahead, not all states will suffer equally https://t.co/iYOuzqhB7r",219085 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",511936 +RT @katya_zamo: . @realDonaldTrump how can u deny climate change when my pussy this hot 🔥☀️🔥 https://t.co/NFISe5vliE,24310 +"RT @c40cities: Urban heat threatens not only public health, but local economies too. #CoolCities keep the costs of climate change…",92102 +RT @MikeCarlton01: The culpable idiocy of Abbott and the climate change cranks https://t.co/jh7zXDdm9K via @ABCNews,606534 +RT @elizabarclay: Trump’s budget envisions a US government that barely deals with climate change at all https://t.co/jhF3QDBMjf via @voxdot…,71316 +RT @MandaPrincessXo: So the very people protesting climate change are lighting cars on fire which put toxic fumes out into the air...�� M…,680063 +RT @ilo: Decent work for indigenous peoples helps advance the fight against climate change #WeAreIndigenous…,322709 +RT @frankieboyle: Don't worry about Trump. With air pollution and climate change in 50 years we'll all be dementia sufferers fighting off 1…,489062 +RT @LarrySabato: I for one am thrilled that we've partnered with titans Syria and Nicaragua to deny climate change. It's the New World Orde…,508651 +RT @wassilaamr: people worried abt egypt's falling economy and not realising we're all dying bc of global warming lol,727703 +@realDonaldTrump I hope you reconsider your position on climate change. Consider the cost of possibly being wrong - is it worth it?,4932 +RT @SteveSGoddard: This week in 1988 marked the beginning of the global warming scam by @NASA's James Hansen. This is an important rea…,962717 +@grouch_ass @RalstonReports that's like saying global warming isn't a thing because it's freezing on a certain day.,261801 +@HeyTammyBruce @NYJooo State of Fear by Michael Crichton is good about global warming,235490 +"this might be a matter of opinion, but climate change is real, love is love, and a woman does have right to choose.",526141 +RT @MattBellassai: i bought an amazing winter coat so im gonna need global warming to stop fuckin around with my ability to achieve a winte…,464597 +"RT @fifaroni: the stock market is crashing, California wants to recede, & our newly elected president believes climate change is…",402932 +RT @schemaly: 48.4% of conservative white men think global warming won’t happen compared to 8.6% of other adults #whitemaleeffect https://t…,874966 +@tedlieu It's why they still deny climate change. They're owned by the fossil fuel industry. EPA chief Pruitt would… https://t.co/7hdoypdxBZ,38647 +RT @irinnews: How does climate change affect food security? What can farmers do? Read our helpful guide: https://t.co/NRN9xcp7nq https://t.…,874952 +#Climatechange Belfast Telegraph Ellie Goulding urges action on climate change ahead of Earth Hour…… https://t.co/Usl3KTpBfb,45839 +"Al Gore slithering on climate change, future of Paris accord https://t.co/oUNp2BsHvT",11704 +RT @Reuters: Trump to officially scrap climate change rules: https://t.co/llU62LQ6sV via @ReutersTV https://t.co/esGhI8ZvOe,415601 +RT @washingtonpost: Why so many white evangelicals in Trump’s base are deeply skeptical of climate change https://t.co/D1AhkGxQcH,62116 +"RT @mitchellvii: CBS News This Morning: 'Isn't this hurricane proof of climate change?' + +Sure, just like the climate change in 1900 when Ga…",857982 +RT @RichieBandRich2: 75 degrees in Chicago on November 1st...global warming but aye it's bussin,270552 +"RT @Devilstower: Trump team has demanded names of people working to study climate change, protect women's rights, and fight hate groups. #L…",916824 +"@mariepiperbooks And maybe we can get down to pressing issues - climate change, for starters.",195763 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,580302 +Keynote: Modeling impacts of climate change- what are information needs? Tim Carter Finnish Env Institute #SASAS2016 https://t.co/ySnbZ9eSFp,746004 +"On climate change, Scott Pruitt contradicts the EPA’s own website https://t.co/jdcIBxMjsH https://t.co/QepMcn8ugt",21524 +.@CNBC's @JoeSquawk praises Rick Perry for saying seawater probably causes climate change. ��https://t.co/imXRIlkEyT https://t.co/zY4K16tlXG,756045 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,291523 +RT @NatGeoChannel: Nearly every week for the past 4 years Democratic @SenWhitehouse has taken the issue of climate change to the senat…,168193 +"@ddiamond To the person, who send me a tweet on no climate change, what do you call this pollution",951740 +RT @mmfa: None of the corporate broadcast news stations covered the impact of climate change before the election:…,719914 +Does he think China will give a rip what a gov of a state thinks about climate change? China will always do whats… https://t.co/70TYM8p1Wc,221414 +RT @mpsmithnews: 'Thought-leader & change-agent' Chelsea Clinton says climate change interconnected to child marriage https://t.co/pBX6P3Dp…,46653 +RT @climatetruth: The @EPA just buried its #climate change website for kids https://t.co/7UNpV35nD4 #StandUpForScience #ScienceNotSilence,682720 +RT @billycastro16: Girls are the reason for global warming https://t.co/5JFkb0GZrV,358950 +@SFmeteorologist @ReasonablySmart Just wait for 'unskewed' weather forecasts to hide climate change.,287098 +"RT @ABCPolitics: Sec. of State Rex Tillerson used alias account in some climate change emails during tenure at Exxon, prosecutors sa…",98062 +"RT @RokuPlayer: Watch @LeoDiCaprio 3-year journey exploring the subject of climate change, #BeforeTheFlood now on @NatGeoChannel:…",129794 +RT @MallowNews: Enda Kenny has warned Theresa May against doing a deal with a group of climate change denying crooks https://t.co/LQV3hXQ0ia,881908 +"RT @newsduluth: As Trump dismantles U.S. efforts to thwart climate change, his defense secretary says it's a huge security issue: https://t…",346851 +"@thehill climate change has been happening for billions of years, it's natural, blow up the planet is the only way to stop it",420600 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,496637 +i'm literally the only person in my family who believes global warming is a thing 🤦🏼‍♂️ it's time to head back to civilization,184565 +RT @USS_Armageddon: https://t.co/GhjLehYyuA Good. It's a scam anyway. The anthropogenic hypothesis of global warming (which is now called c…,806189 +Climate change deniers are starting to say 'hey it's getting cold in places! There's no climate change!' It's... https://t.co/OH6aDr80qR,309088 +RT @EnvDefenseFund: Global climate change action ‘unstoppable’ despite Trump. https://t.co/9Bf9QDIz1s,377531 +"POTUS Trump can take care of climate change Hillary I mean after all if he can take care of U, the Devils spawn, wh… https://t.co/Bqgsk9kzjv",767728 +@Carbongate anyway to speed up global warming? It will help..,366827 +“Chevron is first oil major to warn investors of risks from climate change lawsuits” by @climateprogress https://t.co/8TGls4o5yC,268773 +Your mcm thinks climate change is a hoax.,434121 +.@UNFCCC @CarbonBubble You people do not understand climate change. Decades. Centuries. Millions of years. https://t.co/QbkLJ5JdJ4 #climate,416182 +Jill Stein: Al Gore needs to 'step up' in climate change fight https://t.co/IkLELrjq9Q,768348 +"RT @Scgator1414: Question, leftists claim global warming, this mean all the snowflakes will defrost soon? https://t.co/mWzWn8WOZM",451039 +RT @SpiKeyyy_101: Ok calm down global warming because I i just put away my shorts.,141243 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,400389 +RT @business: This ski-resort exec is going uphill to beat climate change https://t.co/0Pb7W38giT https://t.co/f5lrSNDewx,984894 +RT @CounterMoonbat: The people who predicted parts of Manhattan would be underwater by 2008 due to climate change are concerned about 'fake…,844684 +RT @Dennis_QH3: One of the top debunkers of climate change fear-mongering on Twitter is @SteveSGoddard. You need to follow him. His feed is…,413599 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",366303 +"If global warming is real, then why did @clubpenguin shut down?",934357 +Government face being sued over failure to fight climate change https://t.co/BeFcuSbFUS,710000 +How to market the reality of climate change more effectively. https://t.co/3L034cLTkH @DericBownds #Psychology,76567 +If you aren't watching Leonardo's documentary on climate change then wyd,273418 +"RT @EmmaCaterine: No, his ties to oil are why we can't trust him. Russia did not block climate change studies. Russia did not steal o… ",169343 +RT @ckmarie: The scientific consensus that human activity is driving global warming has only grown more conclusive. https://t.co/NuKx9EF9aS,158615 +RT @TomCrowe: It's... it's almost as if major planetary climate changes have little to do with human activity... https://t.co/tusLgqk6WA,568416 +"RT @evattey: ..improve living conditions, and solve climate change, then I think we are onto a winner- President @MohamedNasheed #EmergingPV",529243 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,951670 +RT @buzz_us: Apple and Walmart stand by climate change policies despite President Trump’s... https://t.co/ix2fyK9maY by #helenmag via @c0nv…,163851 +When did global warming turn into climate change? Hahaha,111020 +"What's causing the 'pause' in global warming? Idk, I'm not a scientist. Low solar activity might be slowing down global warming temporarily",222806 +"RT @TheRickyDavila: Angela Merkel is in no way backing down from fighting climate change. (A real leader). +https://t.co/HPsEuPf7xe",504194 +RT @EcoInternet3: Energy Secretary Rick Perry incorrectly claims CO2 is not primary cause of #climate change: Climate Feedback https://t.co…,403341 +RT @joelgehman: A classic splainer: Climate deniers blame global warming on nature. This NASA data begs to differ https://t.co/jMZbWQHNbT,409964 +What do you think of the DNR's removal of language saying humans cause climate change? https://t.co/PTiUJUQrP4,164886 +@realDonaldTrump pulling out of Paris deal! He don't give a fuck about climate change he here to snatch America by the Pussy!,575926 +"RT @AP: The Latest: Germany leader says G-20 summit talks were 'difficult,' U.S. position on climate change 'regrettable.' https://t.co/F0s…",50353 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",511508 +"RT @awudrick: If climate change and debt are equally bad, why does your government only care about one of the two? #cdnpoli https://t.co/15…",824922 +"RT @APHealthScience: Some warm-blooded animals got smaller in response to ancient global warming, scientists say. By @borenbears https://t.…",306457 +RT @SteveBrownBC: Instrumental recordings and as of 1978 satellite measurements show no catastrophic global warming. But computer mod…,791734 +"RT @Alex_Verbeek: �� ���� + +This is climate change in your lifetime + +https://t.co/12Tva4urTT + +#climate #glaciers #travel #hiking #Chile…",320087 +RT @Forbes: Countries are turning to green bonds as a way to enlist private investors in their fight against climate change. https://t.co/4…,389556 +"Spotted skunk evolution driven by climate change, suggest researchers https://t.co/FDB0XS1agz",7867 +"@_Incech @topical_storm Not true....im a racist, xenophobic, sexist, climate change denier that wants to destroy the NHS.",266834 +Trump takes aim at Obama's efforts to curb global warming https://t.co/rNfJBQffSi,297246 +"RT @nytimes: This Alaskan village is losing an estimated 38,000 square feet a year due to the effects of climate change… ",972720 +"Liberals love to credit science when it comes to climate change; the moment we talk about gender, science is off the table.",832558 +"RT @BernieSanders: Trump's choice to lead EPA doesn't just deny climate change, he's worked with oil & gas companies to make us more depend…",973815 +RT @Forbes: What does China’s new and growing dominance of global energy financing mean for climate change?…,121239 +RT @TIME: 'Acting on climate change is actually where the money is' https://t.co/WhpRiKNbSD,173190 +"@SteveSGoddard Global Warming; climate change; & unusual weather all caused by human production of CO2, now .04% of… https://t.co/wIOvmuGSBj",347349 +"RT @AP: In a #360video, scientist drill into in an Oman mountain range to study carbon’s role in climate change. Read more:…",801067 +Reducing #foodwaste is also one way to mitigate climate change. #sustainableag https://t.co/w0ro3cojZn,554970 +If you still don't believe in climate change you are a fool.,942489 +RT @SenKamalaHarris: We can either be part of a climate change solution or force generations to come to deal with this problem.,318547 +RT @tauriqmoosa: @PolitiFact This is how the President of America discusses the major issue of international climate change control:…,433231 +"RT @drjanaway: Ironic that oil companies denying climate change cosy up to creationists that deny dinosaurs. + +Where's your fuel coming fro…",214255 +Pakistan determined to deal with impacts of climate change: PM Nawaz https://t.co/gaGJ6Xb8Ef,964352 +"National Geographic asked photographers to show the impact of climate change, here’s what they shot https://t.co/PhRbcBy2NA",296345 +RT @TIME: EPA chief says carbon isn’t a ‘primary contributor’ to climate change. Science says he’s wrong https://t.co/kGLtWgsz6M,369301 +@itsmimiace I actually bitch frequently that if the world when vegan we would pretty much resolve global warming and world hunger,786938 +RT @ThomasB00001: We can debate how to tackle climate change – but the science is settled #ClimateMarch #ActOnClimate https://t.co/llNRliCf…,248151 +RT @Underdawg47: #ImVoting4JillBecause she is the only candidate truly dedicated to fighting global warming,706539 +RT @guardian: Heathrow third runway 'may break government's climate change laws' https://t.co/26iK4Rltfx,243277 +Why the media must make climate change a vital issue for President Trump https://t.co/0ln1kLn2et https://t.co/Wok0SIe1b9,1848 +"RT @wef: Many young people fear climate change and poverty, as much as they fear terrorism https://t.co/AAKBNN5IkP https://t.co/waO86tUyjj",988928 +RT @businessinsider: A climate change skeptic is leading Trump's EPA transition — but these charts prove that climate change is very real h…,829412 +RT @ClimateReality: There is no scientific debate about climate change. It’s irresponsible journalism to pretend otherwise https://t.co/lX4…,876162 +RT @WorldBankWater: .@WorldBank launches MENA #ClimateAction Plan to address climate change in the Arab World: https://t.co/KYLIDGHfc4 #CO…,983975 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,920807 +RT @Aiannucci: The US elected Trump but the rest of the world didn't.So what do we do if US policies ( e.g. climate change) threaten the re…,857409 +@JoyAnnReid 2016 is the Hottest Year in recorded history.....but there's no climate change! https://t.co/Y8YGVQIoRi,642964 +"RT @Independent: Secret government documents reveal climate change measures to be ‘scaled down’ in bid to secure post-Brexit trade +https://…",740115 +@HaezelBae tru climate change is the more technical term sowee ��,287561 +"RT @ClimateCentral: A new, interactive map shows where climate change has affected extreme weather events https://t.co/MSooXzkQpR",65414 +RT @jonathanvswan: 'We will cancel billions of dollars of global warming payments to the United Nations. We don't even know what they do wi…,115578 +"Me a couple years ago: +'At least the Appalachians will be safe from climate change disaster.' +Today: +https://t.co/1ruRvqCOqI",996029 +RT @RushHolt: Ignoring evidence of climate change = ignoring evidence of gravity & jumping off bldg. #EPA should follow evidence. https://t…,530221 +"RT @ClimateCentral: Remember hearing about that climate change lawsuit filed by 21 kids in Oregon? + +It's moving forward. + +Against Trump. ht…",390917 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,879745 +RT @UN: New research predicts the future of coral reefs under climate change - @UNEP explains: https://t.co/TKxyf4GwqU https://t.co/PyFbkwO…,664859 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",29179 +"GOOD! If the PEOTUS & EPA appointee won't fight climate change in the 2nd most polluting country, the rest of us ne… https://t.co/Ej44pQaRZi",329827 +RT @business: Google and Facebook join cities pledging their support for policies combating climate change https://t.co/D79SXUxE26 https://…,76057 +"RT @IndiaExplained: Why not also throw in animal cruelty, global warming, potholes in Mumbai, and the Bombay Gym denying women membersh…",815249 +RT @TheCritninja: #HurricaneHarvey didn't come out of the blue. Now is the time to talk about climate change. https://t.co/GcNtOtacPx by @N…,516224 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,879490 +"RT @JohnLynch4GrPrz: @LeeCamp The Arctic Ocean creates the Under Ocean Current. When it stops, there will be catastrophic climate change. #…",870513 +Trump's channels King Canute as he orders Agencies & the military not to adapt to extreme weather & climate change https://t.co/Z5gAeVSskf,447999 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,282117 +"Retweeted alex D (@_alexduffus): + +It's 2016 and trump is going to appoint a climate change denier to the head of... https://t.co/ug1eAxCzky",551584 +"RT @SethMacFarlane: Are we looking at an America that officially believes climate change is a hoax? Sorry, everybody else.",896735 +Immersive installation EXIT turns climate change & refugee into art https://t.co/R3QMcd5fUP @UNSW #unswGC Grand Challenges,378299 +"@1950Kevin I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",362462 +MPs urge May to tackle Trump on climate change - https://t.co/qpwWuLEL4g,817340 +Google:Democrats protest after schools sent material that questions climate change - Washington Examiner https://t.co/dU36xPwH41,339234 +"RT @Independent: Donald Trump has chosen the worst man possible to head up the climate change department +https://t.co/3Na4tunv5w",384300 +@MakiSpoke what about climate change denial? His complete dismissal of police brutality? His party's insistence on trans prejudice?,372535 +Frequently asked questions on climate change and disaster displacement https://t.co/ixbrGsFLzd,481501 +"RT @AngelicaJoy__: It's so nice out LOL global warming, we're all finna die https://t.co/8QsUzRURXz",22762 +"RT @Soldierjohn: Trump win stokes fears over climate change goals, hits renewable stocks https://t.co/vmPFoQ9Ifu via @Reuters SCREW THE COR…",485119 +so I just watched @LeoDiCaprio's climate change documentary and I am now a climate change activist,960924 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,1286 +RT @CBSNews: Al Gore's quest to change the thinking on global warming https://t.co/9WN6JTdS4h https://t.co/ifICZKj5ja,484608 +Since this weather hit I haven't heard a damn thing about global warming🐸☕️,96406 +"RT @Fusion: Imagine, if you will, a world where the media covered climate change the way it covers Hillary Clinton's emails…",119877 +@JordanUhl @TrumpResponders This just proves how Trump supporters want 2 Blame Obama 4 everything/ at least he believes about climate change,704187 +RT @sciam: How do you talk to someone who is skeptical about the impact climate change will have? https://t.co/wveBCHKH8E,639303 +How are global warming deniers going to explain the fact that there's a wildfire in Greenland?,226794 +"Most staple food crops are vulnerable to climate change and eruption of uncontrolled diseases.Food production,Banana being a first victim.",466728 +"RT @curryja: Are climate alarmists afraid of climate change, or fossil fuels? https://t.co/1oXsBT0lIF",267290 +"RT @Earthjustice: Scott Pruitt: “Reasonable minds can disagree about the science behind global warming' + +No they can't, agrees 99% o… ",197811 +My english prof asked the class if climate change was real and i whispered 'how is it not real' and the prof yelled at me for talking... ok,192879 +@ShellenbergerMD @DrSimEvans @bradplumer @JigarShahDC should we care about the economics when fighting climate change?,541183 +@L1bertyh3ad it's been one of the most important feedback devices in natural climate change throughout the past. It… https://t.co/ZRIYQOrhnl,268167 +"RT @Independent: World food supplies at risk as climate change threatens international trade, warn experts https://t.co/jPfCwhcHvr",222652 +The military says climate change is a threat. The whole world now believes in climate change except for our government. #FaithlessElectors,389701 +#3Novices : Historic climate pact comes into force https://t.co/RXhYE6Qiah A worldwide pact to battle global warming entered into force on…,778178 +RT @NYMag: EPA head Scott Pruitt denies carbon dioxide’s role in climate change https://t.co/XBv0N5OxJh,899742 +"RT @KathrynBruscoBk: Maybe, ancient diseases will wake-up climate change deniers. +#ClimateChange #ActOnClimate https://t.co/gipVmGDG88",611148 +"RT @climatehawk1: In Davos, bracing for shifting U.S. stance on #climate change - @stanleyreed12 @nytimes https://t.co/wZJEeWnSdo… ",412287 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,154379 +"RT @dakasler: Can state run on sun and wind alone? Facing Trump, California weighs aggressive climate change measures https://t.co/aYzKk6BD…",337433 +"Yeah, but climate change is a hoax, right Donnie? #Resist https://t.co/FSfQi6OhOC",4992 +RT @RogueEPAstaff: Both EPA and Interior have now scrubbed climate change from their websites. https://t.co/fxfRag6qWU,952134 +"2016 Was The Hottest Year Yet, Scientists Declare: Last year, global warming reached record high temperatures — and… https://t.co/yE5qFIWavP",614950 +"RT @YahooNews: Trump calls global warming a 'hoax,' but he cites its effects in fight to build a wall at his Ireland golf course…",433589 +RT @RogueNASA: 👇🏽👇🏽👇🏽 Direct impact of climate change 👇🏽👇🏽👇🏽 https://t.co/a3KjSPKYmd,431329 +"RT @TIME: Rex Tillerson allegedly used an email alias at Exxon to discuss climate change +https://t.co/xJcCa3Ar5i",973104 +"RT @truthout: Noam Chomsky on #DonaldTrump, climate change and our accelerating race toward disaster. https://t.co/4YImHl6lNv #climatechange",345041 +"RT @Ayylmao297: As serious as a heart attack, world hunger, and climate change combined https://t.co/LVWshF224J",9154 +RT @ALT_uscis: Conservatives are trolling Trump with climate change ads on Fox News and Morning Joe https://t.co/gB0KtTjeEO via @Verge,159443 +"RT @GMB: WATCH: Earlier #StephenHawking joined us to discuss Trump, climate change and Brexit. Watch the full interview here…",328167 +"RT @UniteBlue: #ClimateMarch2017 + +#ClimateMarch + +#UniteBlue + +These 21 photos show that climate change isn't a fringe issue via Mic…",410690 +RT @BigGhostLtd: This album might end global warming,560172 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",475421 +#EntrepreneurshipEmpowers micro-entrepreneurs by uplifting households out of poverty and combating #climate change.… https://t.co/hmFqKivPQ4,693871 +RT @nationaltrust: “What if bees & butterflies become extinct?' Read Kathy Jetnil-Kijiner's moving poem on climate change:…,765176 +@terngirl @morganpratchett and yet twitter is full of climate change deniers and the worlds remains silent! what can we do to stop this???,473084 +"RT @turnip_patch: @JacquiLambie Yep, let's just give up on global warming and all move somewhere else. Oh, wait...",948517 +a punishment of jail time & force-feeding meat for trying to counteract the global warming he doesnt believe in.. so he can sell more steaks,614570 +"@Salon If Trump pulls the US out of the international climate change agreemeent, the backlash will dwarf what he ha… https://t.co/gNwm1kS7ZO",240361 +RT @jkzsells: If global warming isn't real then how come the Ice Climbers aren't in Smash 4,179722 +RT @tutticontenti: Arctic ice melt could trigger uncontrollable climate change at global level https://t.co/iaUwmO1L1T,221023 +"RT @davidaxelrod: Shouldn't we start naming these repeated Storms-of-the-Century after key climate change deniers? +Hurricane Donald. +Hurric…",147626 +"Lend your voice to our planet, our home and be part of making climate change history + https://t.co/b6R0MxAyNP by #NiliMajumder",82010 +"Devastating global warming is inevitable due to inaction of international community, says leading economist https://t.co/seQaREaK6G",660216 +"RT @AP_Politics: Trump working to unravel Obama efforts on global warming, +by @MatthewDalyWDC and @colvinj +https://t.co/1WFXVgxM9B",954078 +RT @JSTORPlants: Outwitting climate change with a plant 'dimmer'? @TU_Muenchen#PlantsAreCool https://t.co/aFtMDL01Pd https://t.co/f7Z9swVVek,201149 +"RT @nytimes: In a new ad for The New York Times, Josh Haner reflects on the effects of climate change on polar bears. https://t.co/IVkEAwo1…",362596 +RT @RacingXtinction: One of the easiest ways to help combat climate change is to stop eating beef #BeforeTheFlood #RacingExtinction https:/…,306287 +RT @travisgrossi: All the people who don't believe in the science of global warming should look directly at the eclipse and see what happen…,480623 +"RT @BNONews: President-elect Trump is examining how to withdraw from historic Paris deal that seeks to reduce climate change, source tells…",83287 +RT @NatGeoPhotos: Explore eye-opening ways that climate change has begun to affect our planet: https://t.co/w7wSJjWbaj https://t.co/wrHxW53…,860488 +"RT @WendyandCharles: YourNewBooks: Androids Rule The World due to climate change, but not for long. #scifi #99c … https://t.co/dJTV585bz0",659668 +RT @lauralhaynes: I'm an #actuallivingscientist! I study past climate change and ocean acidification using tiny zooplankton shells…,443467 +"RT @nytimes: Americans are eating less beef, and that might help in the fight against climate change https://t.co/ZsY4wbRKcR",401669 +@jamesrbuk @JonnElledge @dickdotcom It reminds me of that ad for climate change action where a school teacher blew… https://t.co/WsqDTCc30A,605414 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,411340 +#pos 'Trump rolls back Obama-era climate change policies' https://t.co/mLRtf2r3vA,6215 +RT @Budz442Bud: Don't be fooled by the daily BS trump is about Russia and the money he plans to make off global warming & Siberian…,34173 +RT @NotJoshEarnest: Hijackers are threatening to blow up a plane in Malta. Let's hold off on blaming climate change until we know for sure.,927611 +"EPA chief wants his useless climate change 'debate' televised, and I need a drink https://t.co/4YXRDhLLfD #tech… https://t.co/9yoSNkSVKb",417370 +"RT @tealC17: Humans are causing the sixth mass extinction- some causes are climate change, agriculture, wildlife crime, pollutio… ",829063 +RT @washingtonpost: How climate change could be breaking up a 200-million-year-old relationship https://t.co/r6fsGwC4nK,955137 +RT @WIRED: This is what pulling out of the Paris Agreement means for climate change—and America https://t.co/HYlt4LTyzn,974180 +RT @AstroKatie: Providing access to preventative healthcare is cheaper than letting people get sick. Mitigating climate change is cheaper t…,513478 +Tech and cash is not enough when it comes to health and climate change via @mashable https://t.co/RyU1sogkxs https://t.co/QQ750OEkml,63637 +RT @KajEmbren: A man who rejects settled science on climate change should not lead the EPA - Via @washingtonpost #climatechange https://t.…,3608 +RT @HuffingtonPost: Trump says 'nobody really knows' if climate change is real (It is.) https://t.co/feVtU9oQlm https://t.co/oiUHYkEUbj,143481 +RT @guardian: ‘Shell knew’: oil giant's 1991 film warned of climate change danger https://t.co/UTnCGwO9GA,279637 +"No, it's been horrendous to watch and our POS government is ran by money hungry climate change deniers so disasters… https://t.co/nO4cLiV9To",12633 +Lakes worldwide feel the heat from climate change https://t.co/J2gpTOOVQH via @AddThis,91354 +RT @JacksonSeattle: Says the man who doesn't believe in global warming... https://t.co/8rv9F7c7fR,456539 +Idc what the data says global warming is real to what extent no one knows but environment or jobs tough call can't have both yet,103459 +"RT @wwf_uk: Great reactions to our Polar Bear #aprilfools. Good fun, but climate change impact on arctic is sadly very real. https://t.co/…",724466 +"The change has been so drastic in Colorado my frequent snarky phrase of the year is, “oh but don’t worry, global warming isn’t real”",917465 +Green News: EU requires pension funds to assess climate change risks https://t.co/0n5qMab0jv,677645 +@KellyannePolls @Grammy8 no Russia did not hack#if Trump walked on water they would say he can't swim or blame global warming 4 frozen water,625671 +RT @kirillklip: #China the Center of #Lithium Universe becomes the driving force for climate change actions with its New Energy Plan https:…,368134 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,418287 +Signs of climate change at Arctic tree line - EarthSky https://t.co/BKNBWW12w1,830297 +"RT @McFaul: Please @realDonaldTrump , study the long term implications of climate change. I know you care about conflict & mig…",850990 +"RT @Oxfam: Last year, 190+ countries signed the #ParisAgreement promising help to those worst hit by climate change. Promises…",99241 +"RT @PeterSinger: I talked to @Ecosia about climate change, environmental action, ethical business, and pleasure. +https://t.co/JPQjudsasu",713539 +RT @HuffingtonPost: National park defies Trump with climate change facts https://t.co/az2ifNOpDl https://t.co/CDtwqP1LOz,776332 +"RT @_TheKingLeo_: Republican logic: Renewable resources are imaginary, like climate change https://t.co/orN3DfTUZ0",611692 +RT @katiecouric: These kids sued the government to demand climate change action: https://t.co/kfwD0QKVyX,378145 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,692646 +RT @lliiiiizzzzzzz: sad that well renowned scientists who devote their life to scientific research on climate change still have to argue w/…,551222 +"80% of petroleum geochemists don't believe climate change is a serious problem' -- still a bad analogy, but one le… https://t.co/WpifWHn065",41841 +"#BreakingNews In race to curb climate change, cities outpace governments: https://t.co/OTOmn7xyMr https://t.co/yTHvrelJiQ",676647 +"RT @AndyBrown1_: Earth could hit 1.5 degrees of global warming in just nine years, scientists say @Independent https://t.co/bXOWHhqmdr",964118 +"RT @bennydiego: Trump has spouted misogynistic, racist, xenophobic & climate change-denying views every step of the way. I do not wish him…",829668 +Michael Barone: Lukewarm and partisan on global warming https://t.co/vi5J4OuZCk,416481 +#Mitigating global warming by CO2 storage? Check for continental stress https://t.co/7U99DBscXh,585188 +"RT @CNN: President Trump has long been skeptical of climate change, often saying that it isn't real https://t.co/JuBuekL1aD https://t.co/YQ…",119077 +RT @Reuters_Davos: Trudeau to DiCaprio: Shush on climate change! https://t.co/rA6AXLXF8u #Davos #WEF16 https://t.co/iJt0MTfQfG,122135 +"RT @TheRoot: Environmental Protection Agency head, Scott Pruitt, continues to deny climate change: https://t.co/9NCnvq7hoM https://t.co/tZ…",541838 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,176060 +RT @Janefonda: If you're in your room silently panicking about climate change and Trump--join us in DC on April 29. Group therapy! https://…,864487 +Using the Freyer model to deepen our understanding of climate change. https://t.co/6KC5pzQcqT,751214 +"If you can watch this video, and still believe in the global warming scam - then you are an idiot. +https://t.co/p9tOXEpQPV",219125 +Concerns global warming 'worse than thought' https://t.co/5xpNmACh4P https://t.co/TM5oF9ZZ7J,660479 +RT @kwilli1046: CNN's B.Stelter destroyed by Weather Channel founder John Coleman over global warming. This deserves endless retweet https:…,490868 +RT @AJBiden14: People who believe in man made 'climate change' are also 500% more likely to believe Nigerian prince emails.,826967 +RT @drvox: 1. Here's an annoying dynamic in US politics. It goes like this: a) pigeonhole climate change as an 'environmental problem.' b)…,129768 +"RT @Gus_802: Enjoy your new climate change denier EPA administrator. + +'Keep it in the ground!' + +HAHAHAHAHAHA!",750892 +"RT @RFCSwitcheroo: 6.2 earthquake in NZ shortly followed by 6.2 quake in Argentina. But don't worry folks, I'm sure climate change has noth…",720402 +@ajthompson13 @ArbyHyde @kaupapa @johnkeypm @TVONENZ @Vance world's elite are doing as much about that as they're doing about climate change,453224 +"RT @BuckyIsotope: TRUMP: climate change is a hoax. Muslims and Mexicans are all criminals. I am your new god. +MATTHEW MCCONAUGHEY: alright…",704902 +Signs of climate change at Arctic tree line - EarthSky https://t.co/bDPtVTNHav,796499 +"Many of my fair-weather friends have abandoned me. + +I blame climate change.",533138 +RT @teamcobynigeria: Technology isn't our sole salvation in tackling climate change https://t.co/u4ovzTaNT1 #GrnBz via @GreenBiz @Ygurgoz @…,751954 +RT @NBCNews: World powers line up against Trump on climate change https://t.co/2OZcB3kacs https://t.co/KyZiUr5sHb,654466 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",379806 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",584321 +Franciacorta embraces forgotten grape to fight climate change - Decanter https://t.co/McdFIHy0G0 via @decanter,21580 +Via @sejorg- EPA head casts doubt on ‘supposed’ threat from climate change - @thehill https://t.co/aIzQwu6F7l,628187 +"RT @TheStranger: There is no getting over or under climate change. +https://t.co/jPdbQvEJtn",604103 +RT @AJEnglish: Will a Trump presidency set back the fight against climate change? Share with us your thoughts below #COP22,324896 +RT @FAOForestry: #nowreading #Forests fight global warming in ways more important than previously understood https://t.co/sr8GsXIGir…,403714 +"RT @scividence: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming +https://t.co/cNFM27fazR",679294 +"RT @WilDonnelly: Irma has exceeded theoretical max intensity. I'm sure it has nothing 2 do w/ climate change, just God punishing som…",288757 +@Valefigu 'climate change isn't real !!!',885811 +"RT @AskRaushan: #beefban can mitigate climate change: US researchers +https://t.co/8bMoTzLoqw",87060 +"The White House calls climate change research a 'waste.' Actually, it's required by law https://t.co/2IzNL1juGH",226855 +1/x The potential case for why HAVING kids may be a better answer for solving climate change: https://t.co/Hxq5fCrQfW,208873 +@_lsm3000 @lsm3000 and ppl who claim to care about climate change but don't change any of the daily habits to contribute less 😜😜,385795 +RT @weathernetwork: New study shows future of Lyme disease in Canada and how climate change could fuel the increase of infected ticks:…,36354 +"Underwater volcanoes, not climate change, reason behind melting of West Antarctic Ice Sheet . . . Haaa Ha + +https://t.co/lBg4R6zfqu",231516 +WIRED: Rex Tillerson's confirmation hearing did not inspire confidence in the US role in fighting climate change https://t.co/nDO75xFhu6,898881 +@NancyPelosi we should debate things that matter- ok let's debate the lie of climate change! Liberals have lost there ability to reason !,439774 +@jacksonbrattain We were talking about climate change though too ��,41702 +Agriculture victim of and solution to climate change https://t.co/FYTxcAp8PY,697039 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",118268 +"#TeamFollowBack Climate talks: 'Save us' from global warming, US urged https://t.co/KIRJJHb1xa #AutoFollowback",230412 +"RT @mch7576: Trump appointees on climate change: Not a hoax, but not a big deal either https://t.co/Ba2StC1w6m",401943 +RT @Toby_Johnson: China warns Trump against abandoning climate change deal #COP22 https://t.co/hwCi1hwRc7,317235 +RT @SladeWentworth: I guess I shouldn't be surprised that climate change deniers exist when I still see so many seatbelt deniers on the roa…,190442 +RT @guardian: What Shell knew about climate change in 1991 – video explainer https://t.co/VRhkQKMvg0,324957 +Fighting climate change could trigger a massive financial crash https://t.co/5F9b840L2S,211902 +"RT @coalaction: BREAKING “We think #climate change represents a material risk” - NZ Super Fund divests from oil, gas, #coal co's +https://t…",719624 +@TL_Wiese @HillaryClinton @realDonaldTrump He's hot headed and vindictive. He's pro use of nukes. He thinks climate change is a hoax.,422031 +@NatGeo meanwhile the dinosaurs don't give a 💩about your global warming/destruction caused by humans posts...,941377 +"How IIoT Will help on disaster recovery due to climate change? Thousands of possibilities, climate stations with data analytics plus PI.",125441 +RT @Uber_Pix: Here you can see who the victims of global warming are ... https://t.co/HfJESXAjSh,242012 +My answer to Why are there people who deny global warming due to human factors when more than 90% of scientists adh… https://t.co/1bHzTzUtaB,242306 +@ZBC21093 @COLRICHARDKEMP I don't think anyone debates climate change. The debate is over the extent to which humans are responsible.,342079 +Sydney mayor Clover Moore orders urgent action on climate change https://t.co/keJdmhvDJ3 via @smh,656786 +"We must do more than tweet about this . +Southern Africa cries for help as El Niño and climate change savage harvest https://t.co/iRpz7EHfRc",665159 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,449945 +RT @NickMcKim: Oh dear. I said in the Senate today that Trump thinks climate change is a Chinese hoax. Nationals Senator Barry O'Sullivan s…,879883 +Tinder that this drought is over does not mean the ACTUAL DROUGHT from global climate change is over,749307 +"RT @jswatz: For those who saw a sign of moderated views on climate change in E.P.A. chief Pruitt's confirmation hearing: uh, no. https://t.…",66606 +RT @TIME: 50 years ago this week: Worry over climate change has already begun https://t.co/W7tGj7DxbC,635824 +Outwitting climate change with a plant 'dimmer'? - Science Daily https://t.co/M6kMzn3DsG,810058 +"@ChrisNelsonMMM @KendraWrites @MaraWilson Ah, yes, I like to spread global warming on toast with butter.",281353 +RT @davidsiders: More GOP lawmakers bucking their party on climate change https://t.co/TUOCDiluiq via @politico,708472 +"@HavokMiscreant @neiltyson You have to take responsibility for your contribution to climate change. +Stop blaming i… https://t.co/yEbESQFoXX",819973 +US 'forces G20 to drop any mention of climate change' in joint statement https://t.co/Tj2oRyPfVU,867318 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,608853 +@SpillaneMj The website referenced was sent to me by C02 = global warming supporters. Read all the contributions on the Blog thereunder.,972226 +.@realDonaldTrump climate change doesn't care if you believe in it or not. the Venice of USA https://t.co/V8Yw8sYcAQ #climatechange #floods,800498 +"RT @MichaelGaree: BILL MAHER: Pence a guy who doesn't believe in global warming OR evolution, but DOES believe in efficacy of 'gay co…",793922 +"RT @Greenpeace: More than 4,000 species of snowmen were threatened by climate change in 2016 alone https://t.co/fKV7aKiCvK https://t.co/u3y…",198481 +"RT @deetut: I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood +https://t.co/tmSLKN3eNP",252111 +"2016: the year climate change came home: During the hottest year on record, Karl Mathiesen travelled to Tasmania… https://t.co/cFhAHVtvoD",325911 +Another ridiculous scare tactic: 2 billion climate change refugees by 2100 | Watts Up With That? https://t.co/kJL4Tr4XVt,485103 +RT @Luke4Tech: Obama wasn't very vocal when all these attacks happened he thought global warming was more important ... https://t.co/q1aSRS…,672238 +RT @mhaklay: Help a study of visualisation of data quality in climate change maps https://t.co/EGXgAsrwqc from @giva_uzh,18275 +RT @AltNatParkSer: Most of the leading scientific organizations worldwide have issued public statements endorsing climate change findings.…,144361 +RT @PaulRogersSJMN: Trump administration tells EPA to cut climate change page from EPA website https://t.co/TQxHuwdp7z via @Reuters…,995474 +Just talking about global warming... nothing else... who no like beta thing... https://t.co/F2JsKCAxqt,392717 +A French scientist’s research attributes most of the global warming to solar activity - https://t.co/eZlHh9NCs3 https://t.co/N6wyZ0Mgj3,308265 +@twilightrevery cus his ideals include convulsive therapy and eradicating budget for climate change,39492 +"RT @JamesSurowiecki: (Even if climate change has gone practically unmentioned during this entire campaign, it still matters more than anyth…",69444 +Nobody has to 'believe in' climate change -- it's not 'the emperor's new clothes.' Just read this! https://t.co/GBg1zalLiM,12457 +@magesoren to be fair climate change is basically the human race wiping itself out,212664 +"RT @_AlexHirsch: Simple. I believe in climate change, a woman's right to choose, gun safety & the wealthy paying their fair share. T…",816340 +"In interviews, Trump's EPA pick questioned climate change, said Obama EPA rules would be undone @CNNPolitics https://t.co/SKxQ0jFwfV",606236 +our current EPA as well as CEO of a major oil company-just told the world that Carbon Dioxide is not the leading cause of global warming 🤔,194914 +"RT @margotoge: Even #Exxon with his tainted history on #climate change asks Trump not to ditch Paris climate deal - Mar. 29, 2017 https://t…",216293 +"I used unrefined icing sugar to dust my Christmas cake scene and now it just looks like a desert. +Bloody global warming. +#sandstorm",303599 +RT @TheCourtKim: me enjoying the weather that global warming has blessed us with 😍 https://t.co/q6gsxQLuR3,343159 +You cannot recycle your way out of climate change.' @doctorow #SXSW,206331 +Seems only good scenario for climate change depends on science & engineering finding something new while we reduce greenhouse gas production,524269 +Publishing opinion pieces denouncing climate change can be damaging. https://t.co/OW5LbtQ1h6,434114 +The weather outside is frightful thanks to #climate change and the polar vortex - @CBCNews https://t.co/0BeGDdoDfi,86292 +@davidfrum Read article on creation of extinct biome park~pls explain what the correlation of Woolley Mammoths & reversing climate change is,987282 +RT @climatehawk1: Uninhabitable Earth: When will #climate change make it too hot for humans? | @dwallacewells @NYmag…,562537 +RT @Tat_Loo: 2009 he said Obama had 4 y left to save the world from climate change. 2015 he said Obama's climate policies were '…,404732 +"RT @nktpnd: Even a 4-year Trump presidency would be a death knell for reversing the negative effects of climate change, by the way. #Electi…",764897 +RT @geogabout: How tourism is changing in Iceland due to climate change https://t.co/t9V6dCokxY,816811 +One fifth of the worlds coal burning plants are in the USA. Trump is bringing back coal. Republicans deny global warming science. Brilliant!,377492 +UK slashes number of Foreign Office climate change staff https://t.co/FmILaDcWLc,46126 +"Trump may not change his stance, but climate change is real. https://t.co/zOeAOVFshA",637184 +Budgeting for climate change in water resources https://t.co/rw9nNRca2v https://t.co/tpfE7GtGH0,432808 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,314173 +"RT @EricHolthaus: We’re not just getting freak weather anymore. We’re getting freak seasons. + +On blizzards and climate change: + +https://t.c…",515732 +"RT @jamestaranto: Without meaning to, Steve Waldman admits 'climate change' is religion, not science. https://t.co/88niLPWmp0 https://t.co/…",838114 +RT @charliekirk11: When will liberals finally agreeing that ISIS is a bigger threat than climate change?,66701 +RT @EuroGeosciences: Record-breaking #Arctic warmth ‘extremely unlikely’ without climate change. Via @CarbonBrief https://t.co/p2OJgjv8M5 h…,621746 +"RT @MindTripper13: trump dismantles climate change regulations, saddest day for humanity & animals and plants: present rate of... https://t…",266646 +RT @Warsie34: @A1yosha @le_skooks well we are vasically set in the hunget games trajectory given Trump says hell sabotage climate change ag…,560557 +RT @inesanma: At @Crux: Pope Francis urges scientist to lead the path against climate change https://t.co/ToCnCqooya https://t.co/1i3wYGtM0V,793372 +Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/hBoXXbPRHZ,913750 +RT @MJShircliff: That is not 'good' that is climate change https://t.co/dmOIwFPSBM,139199 +Care about climate change mitigation? Ask what steps a business is taking to address their contribution.… https://t.co/AWg6bwSbuK,420137 +/. the world on ways to address climate change through innovation of energy and environmental technologies including their deployment.',292903 +"RT @peteswildlife: Top story: #keeptheban UK to 'scale down' climate change and illegal wildlife m… https://t.co/mUiVSSId7h, see more https…",651987 +RT @businessinsider: KERRY: Trump's views on climate change might change once he takes office https://t.co/RBZGOvuYiH https://t.co/qir0GvPC…,157858 +Scott Pruitt's office deluged with angry callers after he questions the science of global warming https://t.co/8SbCXbVr7y via @nuzzel,270569 +Freshman Democrat Kamala Harris grills CIA director nominee on climate change https://t.co/h0FVpLVmMR via @DCExaminer,362026 +Also #r4today framed the denier's viewpoint as 'not believing humans at least part of cause of climate change'. https://t.co/XmMyFAUSsd,443999 +"RT @WorldfNature: Malcolm Roberts' climate change press conference starts bad, ends even worse - The Sydney Morning Herald…",588978 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,211628 +RT @ajplus: Indigenous activist Xiuhtezcatl Martinez is suing the federal government to demand action on climate change. https://t.co/PnjHO…,609004 +"RT @CarolineLucas: Donald #Trump isn't just bad news for the US – when it comes to his #climate change beliefs, he's a danger to us all htt…",482845 +"@SenSanders No Sanders,you helped Trump win by implying Clinton was cheating,so now any ACTION on climate change is over.Take responsibility",598339 +RT @THECAROLDANVERS: liberals are so annoying... have fun working to fight climate change w/ a person who believes climate change is a m…,943724 +"@JlackBesus he doesn't believe in climate change, his running mate support conversion therapy for lbgt humans.",794232 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming… https://t.co/8nYhgYZ3i2,272594 +"RT @UNEP: As climate change displaces everything from moose to microbes, it’s affecting human foods, businesses&diseases. Rea…",899087 +RT @ABC: New York billionaire Michael Bloomberg urges world leaders not to follow Pres. Trump's lead on climate change.…,429784 +Mass migration as a result of climate change is predicted to become a much greater problem | Fiona Harvey #QandA https://t.co/8vHBiI8TvW,760840 +The most important thing about global warming is this. Whether humans are responsible for the bulk of climate change is going to be left to,28149 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,808742 +RT @IFAWUK: Tiny endangered African penguins need our help to survive in the face of climate change https://t.co/vEdG8YZyL3…,150908 +New Zealanders' beliefs in climate change and that humans are causing it are increasing over time. https://t.co/vOrQoJiWCT,768682 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",820329 +"RT @SenSanders: LIVE: Join me and @billmckibben to talk about the movement to combat climate change. +https://t.co/KwfkWFzLWH https://t.co/1…",173226 +"Congratulations on your win, @realDonaldTrump. Please watch climate change doc @HOWTOLETGOMOVIE before you back out of Paris agreement.#maga",259838 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",368871 +"RT @Brule_en_Lenfer: ppl getting all heated about global warming seems a bit ironic, dont ya think?",855825 +".@Verliswolf global warming will kill more than hitler ever did, so i really don't see the difference",786513 +RT @VICE: Americans told the world that Trump won't stop progress on climate change: https://t.co/LAOILWzape https://t.co/D2ZF6zPWYR,156853 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/eWV8LYk1jY,789157 +"This is criminal: Trump, Turnbull cut from the same cloth: EPA head Pruitt denies that CO2 causes global warming https://t.co/bzZoCZn193",5991 +https://t.co/hRruM3MKRY ; Worrying trend related to climate change,734105 +RT @C__G___: “Niggas asked me what my inspiration was I told them global warmingâ€,30992 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,467775 +RT @_marisamanchac: Stone Cold Steve Austin is the key to stopping climate change,111368 +RT @Bill_Nye_Tho: leave all that 'climate change aint real' fuckboy shit in 2016,973179 +"Pope, Orthodox leader make climate change appeal to 'heal wounded creation' https://t.co/rvgtDgKSKL",861404 +Wood Stoves a serious threat to health and accelerate climate change https://t.co/LzBtJ7acvu @VanIslandHealth… https://t.co/iarJAx8pA1,95859 +RT @WDeanShook: Top university stole millions from taxpayers by faking global warming research - https://t.co/BCXPHKoarg https://t.co/e01di…,640918 +RT @newscientist: Hurricane Irma’s epic size is being fuelled by global warming https://t.co/l1vPLmyDQR https://t.co/5X7OK3GXrJ,222268 +RT @Obarti: @mark_slusher2 @FoxNews @krauthammer A Cold War is a very good way to offset global warming.,715936 +@OceanSector @RollingOnX like global warming?,615609 +Trump says 'nobody really knows' if climate change is real https://t.co/7fEofemZK6,964807 +"RT @MotherAtSea: Because I may not be able to say it in 3 months: global warming, global warming, global warming, global warming, global w…",950784 +radical islam is more of a problem than climate change,754178 +RT @LangBanks: This is great to see... @NicolaSturgeon to sign #climate change agreement with California's governor…,897363 +RT @USFreedomArmy: Or maybe it is just that the global warming nuts are being given a sign. Enlist with us at https://t.co/oSPeY3QMpH.…,389753 +"Stoving carbon in soils of crop, grazing & rangelands offers ag's highest potedtial source of climate change mitigation.",968374 +UPDATE 3-Tillerson gives nod at Arctic meet to climate change action https://t.co/3Bmvjzdey5 https://t.co/NzA4FONa5w,610718 +RT @kgrandia: Gov. Jerry Brown calls for 'countermovement' against Trump's 'colossal mistake' on #climate change https://t.co/2Z383k8Uec,821120 +"RT @RockedReviews: No, I'm definitely worried about the real global warming. https://t.co/LkOiGP0Nq6",792286 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,306378 +@MrTedLouis @Hjbenavi927 climate change is real yes but the jury is out as to whether we r directly impact it or if its just mother nature.,944027 +More Republican lawmakers bucking their party on climate change https://t.co/mE2gKZF6HP #climatechange,672988 +@LessGovMoreFun You can't equate global warming entirely with human activity. Climate cycles have gone on for milli… https://t.co/uBV7zZi5C8,926873 +"Climate talks: 'Save us' from global warming, US urged https://t.co/1g6GvOHazT",576218 +RT @SenSanders: President Trump: Stop acting like climate change is a hoax and taking our country back decades by gutting environmental pro…,614007 +"RT @jon_bartley: How many more headlines like this before the Govt takes climate change seriously? #stateofclimate +https://t.co/6RIZEgEcQO",548378 +"@ErikWemple There is no 'debate' regarding climate change, at least no need for any since we are at about 97% agreement.",768017 +@johnric62335732 @LoniasLLC @CNN If I made a list of things we r in danger of climate change would be way way down… https://t.co/3jOQqfSIbn,654397 +Chelsea Clinton blames climate change for causing diabetes https://t.co/3x8sy1MZ6F,235861 +RT @ClimateGroup: Watch @YEARSofLIVING's newest season on @NatGeoChannel to see the solutions to climate change #YEARSproject https://t.co/…,391370 +Wide split between #Republicans and #Democrats when it comes to #climate change: https://t.co/F9fol093Sg https://t.co/2zrNBExKOH,186071 +"RT @MikeBloomberg: Cities, businesses, and citizens can lead – and win – the battle against climate change. https://t.co/NdxtLLZEAf",824006 +A senator's long fight to show the science on climate change is 'mixed' https://t.co/ODKGv5vorc https://t.co/4Odrw91BIC,663965 +"RT @Greenpeace: Have you ever wondered how to respond to climate change deniers? +Click here: https://t.co/2obfyt8FzW https://t.co/tfQ9Uu1K…",823710 +Secretary of state nominee Rex Tillerson shows his true colors on climate change https://t.co/omy83q7H3c https://t.co/mlAHjQ18j2 Buy #che…,378005 +We are on the brink of environmental calamity and one candidate puts climate change in scare quotes. All you need to decide. #voterfraud,730502 +RT @billmckibben: Mildly Disturbing Headline Dept: 'Stratosphere shrinks as record breaking temps continue due to climate change' https://t…,314573 +"RT @SteveSGoddard: - @NASA has tripled global warming since the year 2000, during a time when satellites show no temperature increase.…",385871 +"RT @IIED: If you were following the #ForClimateActionUg conversation last week on climate change in #Uganda, here's a summar… ",434233 +@Sammy_Roth My blog is a mess. But it was practice for publishing my first piece on cotton and climate change at Ensia in February.,802739 +RT @RobertNance287: 'The challenges of conservation and combating climate change are connected. They’re linked.' President Obama. Yes t…,521973 +RT @ScottAdamsSays: Show this article to a climate change worrier and watch the cognitive dissonance happen. It will be fun. (Seriously…,875614 +@concupiscent climate change isn't real though,307688 +"RT @RogerAPielkeSr: 'Florida is not suffering from sea-level rise..,but from subsidence (sinking) of land, unrelated to global warming… ",331041 +"RT @ajponderbws: @MaryStGeorge Time & again conservative policy ignores the science, climate change is the obvious example, but social poli…",901681 +Protected: EXECUTIVE PERSPECTIVE: No more denying: climate change action and gender equality and women’s empowermen… https://t.co/M7xwsgHNrg,465021 +"RT @juiceDiem: Before I go to bed: + +If you think flag burning is a bigger issue than refuting scientific evidence of climate change, you ne…",247820 +"Even the earth has rights in #Islam , so treat it well and oppose global warming. #Mercy",203128 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,229310 +RT @Salon: The State Department rewrote its climate change page https://t.co/aeRCJZT0pB,227668 +"What a silly person you are, the founder of weather TV stated loud & clear on CNN that climate change is a hoax shutting the mouths of EWNN",970187 +"RT @UNICEFEducation: 50M children are on the move and out of the classroom - many fleeing war, poverty & climate change…",948579 +And still republicans will look you DEAD IN THE EYE and say global warming is a myth ������������ https://t.co/yTMB9nUmbT,240077 +"RT @DrJillStein: The #GreenNewDeal: +👷ðŸ¾ Jobs for all who need work +☀ï¸ 100% clean energy +🌎 halt climate change +✌ðŸ¼ wars for oil obsolet…",792835 +"RT @greenpeacepress: G7 Summit outcome shows Trump isolated on climate change - +Greenpeace reaction https://t.co/fD920yYz4p #G7Summit https…",541891 +"EPA chief denies carbon dioxide is main cause of global warming and.. wait, what ?: Well… https://t.co/Od3ahmk5zi",376905 +@pulbora dahil ba sa climate change? 😅😂 nagtatampo ako sayo di mo pinapansin yung tinag ko sayo sa fb!!!,420718 +"RT @hannahjwaters: An early-season tropical storm flooded Gulf of Mexico beaches, drowning shorebird chicks. This is climate change. https:…",462840 +RT @350: We will NOT let you take America back to a time when climate change denial was the norm from our top politicians: https://t.co/DJV…,88860 +RT @theblaze: Monster snowstorm in Colorado forces postponement of climate change & global warming rally https://t.co/bxNjmu2cYS https://t.…,83832 +RT @atlasobscura: A new sculpture calls attention to climate change in the centuries-old city it threatens https://t.co/yICnmS9Tuh,739920 +"RT @1o5CleanEnergy: On climate change, US & G20 priorities no longer align: What to expect G20 Hamburg Summit https://t.co/x9OkCiKR2S @g7_g…",787253 +@MusickAndrew @bogieboris @DaysOfTrump Think of people with no jobs and China making up climate change then you'd know #alternativefacts,105649 +RT @frankieboyle: Let's look on the bright side. Maybe climate change will kill off humanity before a Global Fascist government can start t…,4602 +RT @AarKuNine: Denying climate change is like me pretending I don't have an assignment due on Monday while aggressively Netflixing.,765248 +"RT @graham_foto: We're also paying you to do nothing but deny climate change every now and then. You're a grade A moron, Sammy. + +https://t.…",112884 +RT @Netmeetme: Bill Nye slams CNN for putting climate change skeptic on #EarthDay panel https://t.co/LzTTgzTdgh via @HuffPostGreen,732506 +"RT @emorwee: Google, Apple, Microsoft, and Amazon statement on Trump's decision to roll back Obama's climate change regulations https://t.c…",666883 +#science Green Republicans confront climate change denial https://t.co/iPshlxqXLb https://t.co/EgljHygwLm #News #Technology #aws #startup,539233 +RT @AniDasguptaWRI: For too long we talked about #climate change as a GLOBAL problem. To succeed we have to see it as OUR problem https://t…,715698 +"RT @zeynep: True, evacuating millions isn't easy either. But it is something we will have to consider—esp. with climate change. https://t.c…",694079 +@It_Is_I_God @zamianparsons @RPCreativeGroup @realDonaldTrump so do you believe climate change is a hoax? And the earth is flat? Chemtrails?,6025 +"RT @Newsweek: Trump's policies on climate change are strongly opposed by Americans, a new poll indicates https://t.co/t1Qj84D6q3 https://t.…",422546 +@jesuiah01 @cheatneros @yagirlbushra I like that you bring up science but I bet that you deny global warming. Pleas… https://t.co/vjgyTczndu,926173 +"BRICS meeting highlights climate change, trade, terrorism https://t.co/4QChKgnwjJ",303801 +"Houston fears climate change will cause catastrophic flooding: 'It's not if, it's when' https://t.co/GjybP3uhpV... https://t.co/6RxsSpt9WK",179173 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,339152 +"Ppl who deny climate change, 'If I was a a scientist I'd be absolutely pissed every day of my life' @LeoDiCaprio #preach @BeforeTheFlood_",225522 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",277373 +@Lazarus1940 �� damn climate change!,413184 +"Latest climate change scare story: Rising oceans to produce '2 billion climate refugees' by the year 2100, alarmis… https://t.co/h6qs57tJsW",607498 +"RT @Hannahsierraa_: Documentary w Leonardo DiCaprio about climate change. Free to watch for a few more days, so interesting & important +htt…",811297 +"@realDonaldTrump you're an ass. Coal is not the future, fossil fuels are nonrenewable/global warming is real. We were leaders in this. Ass.",72944 +RT @MissionBlue: How can Indonesia's reefs resist #climate change? One conservationist aims to find out: https://t.co/e2qabTVqdQ…,868808 +RT @JulianBurnside: Senator Paterson skilfully evaded dealing with the major point: accepting the reality of climate change #qanda,668850 +RT @thehill: Rahm Emanuel posts climate change webpage deleted by Trump administration https://t.co/OY7A6yaihp https://t.co/8AqRmejeF2,394292 +"RT @cnni: After previously calling it a 'hoax,' Trump says there's 'some connectivity' between climate change & human activit… ",222476 +RT @gabriellechan: Australia being 'left behind' by global momentum on climate change by @grhutchens https://t.co/xZjJogCHxG,571858 +Feels like -21. Take that global warming.' - Climate deniers,676920 +"RT @kylegriffin1: Trump's likely pick for top USDA scientist never took a grad class in science, is openly skeptical of climate change http…",171213 +"RT @antonioguterres: Pollution, overfishing and the effects of climate change are severely damaging the health of our oceans.…",231952 +"Anyone cover climate change in their development econ courses? Adding a new unit to my syllabus, but haven't seen it in other syllabi ...",644763 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,711281 +1 day to go. May won't stand up to Trump over the climate change accord. Vote for our planet. Vote for a strong leader. #VoteLabour #GE2017,329512 +RT @WBG_Climate: How does innovation drive #climateaction? Watch @WorldBank climate change director James Close:…,351285 +Trump\'s pick to run NASA is a climate change skeptic(Orlando news) https://t.co/E9jKKhfQJg,780051 +"RT @VICE: Nearly 60,000 suicides in India linked to global warming: https://t.co/tLSxb3MoHM https://t.co/DPqid65Gwj",494771 +"RT @kauffeemann: The weather channel is responsible for global warming. +#FakeFakeNewsFacts",276685 +@kurteichenwald Not to mention Trump and family who wrote a letter in 2009 urging Obama to act on climate change.,458846 +"RT @climatehawk1: With 'nowhere to run to,' women farmers battling #climate change in Zimbabwe | @irinnews https://t.co/brO5ZnIumg…",5049 +"@stevendeknight I was going to make a joke about Bizarro not being a climate change denier, but I guess he would be, wouldn't he?",966777 +"@_mercurialgirl And another 5-8 inches tomorrow, apparently! But climate change isn't real~~",610678 +RT @SabrinaSiddiqui: OMB director Mick Mulvaney on climate change: 'We’re not spending money on that anymore. We consider that to be a wast…,821446 +"RT @Saudi_Aramco: Addressing climate change is a critical imperative for Saudi Aramco, CEO Nasser says at KAPSARC Energy Dialogue",987377 +RT @TeamTrump: .@realDonaldTrump will cut taxes & cancel billions in global warming payments to the UN so we can use that money to…,766106 +RT @TIME: Robert Redford: 'The front lines of fighting climate change? They're your hometown' https://t.co/WVySgZRisF,169484 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,260149 +"Unfortunately for climate deniers, 'actual scientists' explain thoroughly how we cause climate change.… https://t.co/VRRfJmRIMl",593061 +RT @kiahbailey_: It's 60 degrees today and snowing tomorrow but y'all president still doesn't believe in climate change.,734995 +RT @tommy_manpower: #IAmAClimateChangeDenier when global warming proved false they decided climate change. Like Transvestite to Transgender…,209613 +Comply DOE! You work for #WeThePeople🔀U.S. Energy Department balks at Trump request for names on climate change https://t.co/ee82rJ5Gyg,626252 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,667510 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,743735 +RT @ConservationOrg: 5 things you might not know about mountains & climate change >> https://t.co/QnNNXtPZ5g #InternationalMountainDay http…,805447 +Here are our top 8 climate change stories of 2017 - Washington Post https://t.co/yyEJtL5yfl,323315 +Alarmists say global warming to blame for ‘record’ tick population — but there’s one massive problem – TheBlaze https://t.co/co9MPqeAOz,568282 +"@Mark_Baden Wow, it's warm out. +All those lives saved from treacherous winter driving conditions have global warming to thank.",637648 +RT @wef: 5 tech innovations that could save us from #climate change https://t.co/yrTgBQh7sH #wef17 https://t.co/41eSOowjYP,84755 +Donald Trump cites global warming dangers in fight to build wall at his Ireland golf course https://t.co/OJ4qE2xaNx via @YahooNews,755282 +RT @PopSci: Four things you can do to stop Trump from making climate change worse https://t.co/KuiL9XiUK3 https://t.co/4o2qaWIrZV,704830 +@EPA @POTUS and any denial of climate change is just a way for the rich to 'get projects done'cheaper &make more money for themselves,396421 +"@HuffingtonPost +There is sience to back that climate change is a hoax, but political correctness can't abide by that.",479893 +.@HeronDemarco @CurtisScoon @AviWoolf He did not care if people lost their jobs on the altar of climate change. Big mistake.,959482 +Car2go's San Diego departure a climate change setback - The San Diego Union-Tribune https://t.co/WeaVCUXxmo https://t.co/LTC2f7gpZL #Blue…,970686 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,221268 +"EPA head Pruitt: Paris climate change agreement 'all hat and no cattle' https://t.co/mZLsDYwHyk via the @FoxNews Android app +America first!",144987 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,937007 +LSE: Measuring the societal impact of research: references to climate change research in relevant policy literature https://t.co/FBzE9eqi8s,325308 +"Dear @WDNR, you're supposed to be devoted to preserving our natural resources... instead you change your climate change wording. Horrible.",550486 +RT @DanSlott: He wants 'footprints on distant worlds' but doesn't like it when NASA scientists agree that man made climate change exists.,583351 +RT @Independent: Even Nasa scientists are trying to convince Donald Trump that climate change is real https://t.co/HB37pGGGBU,737106 +"RT @ErikSolheim: Arctic voyage finds global warming impact on ice, animals - great read on the changing, fabled Northwest Passage. +https://…",6394 +President Trump's clarity on climate change has Al Gore in a panic. Guess it will be harder to profit off the greatest scientific con now.,867691 +@Phyllida1234 @guardian They should invite Trump to Buck House & put him in room with Charlie so they can discuss climate change.,786510 +@ddale8 That's a good one. Shouldn't he be out denying climate change?,157931 +"RT @JonRiley7: 'Welcome to the Trump Administration, where climate change is fake and wrestling is real.' +-- Trevor Noah",532896 +Mr. Trump @realDonaldTrump: you may not believe in climate change but your insurance company does. Be a businessman,826598 +Climate deniers blame global warming on nature. This NASA data begs to differ https://t.co/X2CnW4de54,799476 +RT @sciam: A new report identifies 12 “epicenters” where climate change could stress global security https://t.co/JWPy4esGWK,776730 +RT @frackingzionist: What if we think pizzagate hysteria and climate change hysteria are both irrational? https://t.co/j6sZBZ0bnR,880076 +imagine being a government leader & also stupid enough to flat out deny global warming ��,278774 +RT @Sensiablue: Chicago mayor Emanuel posts EPA’s deleted climate change page https://t.co/MG63GjdLJD via @politico,144722 +Report: how climate change is affecting the water cycle in Germany https://t.co/RTQXsa9wjp @physorg_com https://t.co/sitSLnUVBf,821217 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",457259 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",39408 +"The climate change on the Earth is real, not a hoax. French Pres. Hollande is very concerned about Trump's facts. US has an agreement to ...",464147 +"RT @StreetArtEyes1: Sculpture by Issac Cordal titled, 'Politicians discussing global warming.' #streetart https://t.co/kGW4UVYOe8",693720 +"RT @feistybunnygirl: Angela Merkel is a former research scientist, and Trump thinks global warming is a Chinese conspiracy theory.",401381 +Centrica has donated to US climate change-denying thinktank https://t.co/IK31koG5bY,382649 +@ragging_bull_V you think global warming is a hoax??,327761 +"RT @LeeCamp: If we subsidized the switch to clean energy as much as we subsidize big oil, we could EASILY slow or halt climate change. Why…",999519 +Trump can pull out of the Paris accord – it won’t derail the fight against global warming https://t.co/YsmpxwXJdT,109855 +The Independent: Putin echoes Trump and says humans have nothing to do with climate change https://t.co/UvNrCU5ebX … https://t.co/6LLqsgesDM,139161 +"@LeroyWhitby @SarahPalinUSA Dems prefer soy b/c beef consumption causes 'climate change'. So, they are at a disadvantage here. ��",573474 +"RT @mrbarnabyb: So Brownlee thinks tech will fix climate change, but he also removed environmental performance requirements from Ch…",276329 +"RT @peta: Meat production is a leading cause of climate change, water waste, and deforestation. If you're concerned about our…",191012 +RT @intlspectator: UNITED STATES: Trump is consulting on how to withdraw the US from the Paris climate change deal,338409 +70 per cent of Japan's biggest coral reef is dead due to global warming | The Independent https://t.co/1tzqaJ26LY,598434 +"Whether government leaders acknowledge climate change, scientists, researchers and doctors have connected the dots… https://t.co/boBluWx8Y4",318459 +RT @turbothot: global warming is just a hoax to distract us from the fact that lil wayne wore socks in a jacuzzi,285434 +Nice! Science of #climate change in one infographic https://t.co/oQmeMWxg0Q,296356 +Instead of spending billions on trumped up claim re global warming why not prepare for epic CME r EMP which could be real #foxnewsspecialist,162435 +@BryonyKimmings I think they think climate change is a natural disaster,476311 +#PriceIsWrong no one that does not view climate change as an imperative to address does not belong in this office,603693 +Global climate change and mass extinction got me feelin some type of way this morning,909464 +RT @davidsirota: Maybe NYT reporters should spend more time pressuring management to reject climate change denialism & less time insulting…,183481 +"RT @everywhereist: New rule:if your don't believe in global warming, you can't use modern medicine. You don't get to pick and choose which…",749966 +@The_Keks_Army @Bailleymarshall @LiglyCnsrvatari @devinher @Wokieleaksalt @DustinGiebel Are we talking about climate change?,642063 +RT @GUNSandcrayons: Hoodie season finally here can't tell me global warming not real bro,191936 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,516300 +"RT @nytimes: How Cooperstown, NY, became a flash point in the national debate on climate change https://t.co/TCYbqV1NUA",201656 +"RT @cinnamontoastk: Science: this is how the eclipse will happen. +Them: wow you're right. +Science: now, about global warming and vaccin…",689131 +"I'm just gonna put this out there.. If you don't believe in climate change or that racism doesn't exist, just unfollow me from life.",210664 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,715905 +"RT @AdamsFlaFan: February’s warmth, brought to you by climate change https://t.co/QyEEAxZL9N via @climatecentral",546018 +RT @2Morrow23: .@EPAScottPruitt is arguably the greatest threat to our nation/Earth. Dangerous that soemone who denies climate change is no…,316131 +"RT @veryimportant: the only good thing about global warming is that once the seas claim LA and NYC, chicago's superiority will no longer be…",780104 +"How innovation could preserve culture, as climate change uproots communities - Christian Science Monitor https://t.co/dk4aMg3MN2",941293 +@DRUDGE_REPORT @washingtonpost maybe it is the climate change that is causing liberal to be so stupid,966698 +"RT @ThomasCNGVC: Our Op-Ed was published today! In fighting climate change and oil dependence, California needs all its tools https://t.co/…",331959 +RT @RichardMunang: Africa is feeling the heat: Turning the challenges of climate change into opportunities https://t.co/0kkOYm6cyW,675148 +@DailyCaller To the confused and bewildered climate change exist. As you know ever day when you wake up. Good Luck tomorrow morning.,495010 +"Anti GMO, anti vaxx and climate change deniers. Characterized. https://t.co/5E2kfcAnPb",785573 +"RT @MurphyVincent: Listen back to my interview with @SebGorka - we discuss US-EU relations, climate change, Brexit and Donald Jr/Russia htt…",992003 +RT @TSMDoublelift: if global warming isn't real why did club penguin shut down,292482 +"@CraigRSawyer Here is the co founder of the weather channel, even he calls global warming a fraud https://t.co/UVb74tOgMI",316399 +"RT @mims: Bill Gates, Jeff Bezos, Jack Ma, and other investors launch a clean-energy fund to fight climate change https://t.co/8s6t5cYX1C",207963 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,915900 +@Krisp_y Wow ISIS or climate change?? National security should be a priority!! Good thing he is not our President!!! ����,656892 +RT @CapitalsHill: When you are storing nuts for the winter but realize there is no winter because of climate change https://t.co/Au0g5QyrgX,295105 +"Wasn't this the guy throwing snow balls on the Senate floor as evidence rebuking climate change? Nice elites there,… https://t.co/GxQqIeClqt",36492 +"@5to1pvpast @Bazza_Cuda yet if you're interested in climate change, science exploration, mental health and equal ri… https://t.co/6bZQCKL1CF",597849 +Trump's new executive orders will cut Obama's climate change policies https://t.co/AAN6b15xDQ https://t.co/fCKs6E1dnx,473441 +RT @maudnewton: Energy Department denies Trump's request for list of climate change workers. https://t.co/KXliMsOXsV,576935 +Study finds global warming could steal postcard-perfect days https://t.co/ptrLKaRxrw #AssoPress #Science,840716 +"RT @BuzzFeedNews: Obama on climate change: 'To simply deny the problem not only betrays future generations, it betrays the essential… ",777967 +RT @BruvverEccles: Surely the whole point of Christ's sacrifice was to save us from global warming? Or did I misunderstand Laudato Si'…,974517 +Donald Trump isn&#39;t scrapping climate change laws to help the working man. He&#39;s doing it ... - https://t.co/j8vWiOxC2j - -,832211 +RT @buckfynn: World leaders duped by manipulated global warming data https://t.co/AAOQIosS6n via @MailOnline,423131 +RT @insideclimate: U.S. Ag. Dept. staff were coached not to say 'climate change.' These were the alternatives & what the emails said https:…,836914 +"RT @UndiscoverPoem: 'I think of race as something akin to climate change, + +a force we don’t have to believe in for it to kill us.' YES!! @F…",82167 +"@JamieObama @washingtonpost We believe in climate change, as evidenced by the ice age, we just disagree with the cause.",969815 +RT @TimesNow: India emerging as front-runner in fight against climate change: World Bank. (PTI),804703 +"RT @TrueIndology: 'Beef Ban can mitigate climate change':US researchers: +https://t.co/Xr3pB6QpkV",457817 +See the discussion around 'climate change' for an excellent illustration of my point,685085 +RT @ChristineMilne: Australia defends role of fossil fuel corps as source of solutions to global warming. @TurnbullMalcolm https://t.co/uFH…,646257 +RT @joshgremillion: It's sickening how other world leaders think climate change is more important than eliminating ISIS. #ParisAgreement #P…,624130 +RT @maddm_: If you don't believe in global warming at this point your an idiot,582559 +@PremierBradWall Solve climate change? Huh we still going to play this BS story..Buy SUV's very comfortable,423169 +"What we need to fix climate change is free-enterprise innovation, NOT a job-killing carbon tax. #cdnpoli #cpcldr",657337 +RT @Manoj_Malgharia: Renewables are slowly becoming mainstream not because of climate change activism but better economics.,88960 +RT @MarkSkoda: A must read rebuttal to the global warming cabal. https://t.co/I8p6S2ikb2,269970 +"RT @1010: 8 minute read! How to change our attitude to climate change: stay positive, think big picture, and work together…",105374 +"RT @SmithsonianMag: Meet original thinkers who are breaking ground in medicine, art, drone design, fighting climate change and more. https:…",482268 +"RT @Salvesayson: You’re so hot, you must be the cause for global warming. #ALDUBLolanap",782859 +RT @nytpolitics: Governor Jerry Brown vows California will battle the Trump White House on climate change https://t.co/fyMlQ4zYUg,592629 +Doc Thompson busts liberals’ favorite climate change myths! https://t.co/coz0E2Zdr8 https://t.co/osbelr4ril,336497 +"RT @tommyxtopher: Oh, damn! Chris Wallace just shaded Fox News viewers for not believing in climate change! https://t.co/MMGCDN8MmI",57312 +RT @DJSnM: We often hear that 97% of science papers support anthropogenic global warming. A team analyzed the other 3%.…,402798 +"RT @BruceBartlett: My solution to the climate change problem--treat the symptoms, worry less about the cause. https://t.co/SlCnGeIdwU",324231 +"RT @TheGlobalGoals: Today climate change leaders launch Mission 2020, including our film #2020DontBeLate. Watch live here from 4pm GMT:…",58998 +RT @RedNationRising: CNN's Brian Stelter destroyed by Weather Channel founder John Coleman over global warming. It is a hoax. https://t.co…,922240 +"One candidate is gonna keep our efforts to better our environment going and the other says global warming doesn't exist, choose wisely lol",724277 +"RT @dwdavison9318: Put it all together, and, well, on the plus side it may not be runaway climate change that destroys humanity after all.",122922 +"RT @THR: Arnold @Schwarzenegger, Jerry Brown come together to oppose Trump on climate change effort https://t.co/Bb0X27yyql https://t.co/MC…",592514 +"RT @Shareblue: Without action on climate change, humanity is eventually not going to be around to say anything. + +#RESIST https://t.co/mMUx6…",77165 +The reality of climate change in South Asia https://t.co/CAnnYXB1HD,468630 +Japan pledges more support to Vietnam’s climate change response at https://t.co/is8Rm0V5aR,621373 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,398635 +A big push to tame climate change https://t.co/81dGzsJg5O @fkadenge1,559697 +"RT @peggyarnol: As climate change heats up, Arctic residents struggle to keep... https://t.co/WpVrjkpC7G #Arctic",214414 +"RT @nationalpost: Antarctic ice has barely changed due to climate change in last 100 years, new analysis shows https://t.co/GB7JUsyEUz http…",619976 +"Because of climate change, you can point to any puddle and tell your kids it's Frosty the snowman.",455298 +"@chefBOYERdee1 Al Gore, creator of the internet and global warming.",660578 +"Have you ever wondered why Malcolm Roberts is so pro-coal and a climate change sceptic? +Here is the reason ... https://t.co/kELC95MgVL",643036 +@BridgewaterGale Trump thinks climate change was made up by the Chinese. He doesn't know what science is. He's not… https://t.co/yj2kjarRRt,913457 +we should address global warming immediately,287368 +"RT @starlightgrl: opinions: +-not liking a movie +-wanting tea>coffee +-thinking r&b is better than pop +NOT opinions: +-climate change +-animal…",813930 +RT @pittgriffin: The left and right agree: Fox News destroyed EPA chief Scott Pruitt over climate change https://t.co/C3Mp39kW2r,307025 +"RT @tan123: 'Science teachers ought to teach the science of climate change, not the dogma pushed by some environmental activist…",551415 +RT @PoeniPacem: @KatSnarky Liberal tears have done more to raise sea level in a day than climate change could do in 10 years.,689333 +RT @BrookingsInst: Only 17% of Americans share Trump’s skepticism of the evidence of global warming https://t.co/bvHHsl8Qj8 #EarthDay https…,611269 +RT @ScotClimate: Google:Hundreds of millions of British aid 'wasted' on overseas climate change projects - https://t.co/IaF5q0FaAG https://…,935392 +"RT @Groundislava: ...climate change, LGBTQ issues, and civil rights from the whitehouse site but established a section regarding 'protectin…",897868 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,236645 +Acting on climate change is Africa’s opportunity https://t.co/Q4MXxgpnpP,77481 +RT @politico: Energy Department climate office bans use of phrase ‘climate change’ https://t.co/jERFKDMYoP https://t.co/1t4UtsP2yS,618553 +"RT @kurteichenwald: It will never cease to amaze me that 'green' voters in 2000 cause death of Kyoto Accords on climate change, & in 2016 k…",633595 +"Watch Before the Flood, an urgent call to arms about climate change https://t.co/nUSmPnmaog #misc #feedly",655062 +"Longer heat waves, heavier smog go hand in hand with climate change https://t.co/38Cc23erca #TEAMFOLLOWBACK",699074 +Why do people lie about climate change? https://t.co/plVlNbkTFJ,195308 +RT @Refugees: How many people will be displaced by climate change in future? #COP22 https://t.co/seeT67Glw8 https://t.co/udCGu3KW70,595210 +RT @BringDaNoyz: Crazy that Smashmouth has a more progressive stance on climate change than the US government,945743 +"Scientists have accidentally found a new method to convert carbon dioxide to ethanol, which could help in the fight against climate change.…",191854 +New Orleans mayor: US climate change policy cannot wait for Trump https://t.co/VnxKPXRqps,987819 +Oi @realDonaldTrump do you really believe that climate change is a Chinese plot? #Obamacare #POTUS #MAGA https://t.co/IfGS8zFvCv,397016 +RT @BhadeliaMD: From giant viruses to anthrax- yet another dimension of link between infectious diseases and climate change. https://t.co/B…,308507 +"RT @ReutersNordics: Scandinavia's Sami struggle with suicide, worsened by climate change https://t.co/vCXMqRzbCa via @ReutersUK",43551 +RT @blkahn: Stop what you're doing and look at this gorgeous animation of global warming by country since 1900 https://t.co/N4zFlZ9Ojc,240695 +RT @karrrgh: 'i don't believe in climate change' https://t.co/HhTSiB4Kr3,286168 +"Adapting to climate change a major challenge for forests +https://t.co/i2jtT5xp7z +Find out why here!",915509 +"RT @FightNowAmerica: Blind liberals can't see that climate change will be used as an excuse to impose global totalitarian government. + +Clim…",869683 +RT @42MattCampbell: @localcatraz @EffieGibbons @bryang_g @GlennMcmillan14 It's cute that you believe climate change is real. Guess what: it…,295238 +"@hearstruble Many more will die due to climate change SPED UP by use of fossil fuels. No, the majority of scientists can't be all wrong.",273952 +"RT @kemmydo: 'well i mean it's the fastest melting place on earth' +'yeah well that's what people who believe in global warming think'",584394 +"RT @WorcesterSU: 6 questions, 2 mins, 1 litre of Ben & Jerry’s & 100 tubs for your hall! Have a go at the climate change quiz to win: https…",195900 +G7 summit concludes with only G6 on #climate change: The Indian Economist https://t.co/uzTWgNfSwx #environment More: https://t.co/kktr4kNo7U,715663 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/eoQxG9e7CA https://t.co/UD0CmByqTH,851063 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,393719 +"RT @toniatkins: Californians like the state's direction on healthcare, climate change & human rights. We'll stay on course. https://t.co/5c…",285491 +RT @kcarruthers: Read the entire @Westpac position statement on climate change �� https://t.co/CsyrKrPnFH https://t.co/KS9FNe9rYE,474768 +RT @JonRiley7: Not only is Trump not mitigating climate change he's actually banned PREPARING for climate change ��‍♂️…,988237 +RT @jaredoban: The main reason Jesus can walk on water is so when he returns he can survive this climate change disaster. https://t.co/qEmj…,422929 +Final US presidential clash fails on climate change once more | New Scientist https://t.co/FnzkdZCxTX,531642 +"In rare move, China criticizes Trump plan to exit climate change pact https://t.co/yUb0r5IN5b via @Reuters #carbon #economy #Politics",245695 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",879694 +RT @collettesnowden: #auspol The current Australian government's thinking on climate change. https://t.co/UpFmUSigOV,420847 +"After previously calling it a 'hoax,' Trump says there's 'some connectivity' between climate change & human activi… https://t.co/hLRzRknmk7",442565 +RT @EstherNgumbi: Still calling out African-American scientists here in the US working on climate change. Time-sensitive media opportunity.…,232430 +"RT @ABSCBNNews: Duterte changes mind, to sign climate change pact https://t.co/RoepI2Dan1 https://t.co/02hJFpHZix",398214 +People that don't believe in global warming are dumb,394365 +RT @CaucusOnClimate: .@RepDonBeyer and @RepLowenthal react to Trump's executive orders on climate change: https://t.co/btLqw7pofM,426338 +.@RepBrianFitz Thank you for acknowleding man's role in climate change and vowing to protect the purity of our environment. #science,330020 +https://t.co/PjYCfx5YWE Gov. Brown travels the globe talking about climate change.... https://t.co/tFOJBsos4b via… https://t.co/z5cQQD8ktd,785007 +RT @guardianeco: A million a minute: world's plastic bottle binge 'as dangerous as climate change' https://t.co/bQD77btvev,972338 +@660NEWS And we enter the fray with ToyBoy pushing 'global warming' I'm sure the Americans are are laughing rubbing… https://t.co/8IXWg0ANdQ,942593 +RT @advsalunke__: It's time to talk about climate change differently. https://t.co/I8GjZErfMU,961346 +"RT @SondraJByrnes: climate change +she confesses who +she voted for + +#poetry #micropoetry #haiku 451",764846 +RT @Bill_Nye_Tho: yall believe #Wrestlemania real but not climate change��,669522 +"RT @LordofWentworth: If 97% of scientists said that, based on modelling, a bridge was unsafe to cross, how many climate change deniers w…",319959 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,181107 +If now isn't the time to talk about climate change and burning fossil fuel 'WHEN IS IT TIME' 'Debbie' raised the question !,408404 +"@SDzzz @LGAairport Oh, I recall passing this place when I was in FL. They should just wait until climate change takes care of it. ugh :/",523048 +"@n_naheeda For a person who don't believe in climate change, who gonna believe in his views no matter wht he is talking",101999 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,172983 +Like Catholic church and abuse. Criminality? ‘Shell knew’: oil giant's 1991 film warned of climate change danger https://t.co/LnUSkQZzQ2,671524 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",849739 +"RT @ErikaLinder: Sorry to say this, but climate change is real and it's happening right now. Goodnight x",346827 +RT @CharlieDaniels: In respect to Obama's climate change policies on his last Christmas in office Santa Claus will be driving non flatulent…,476615 +"Time to act Truml, act fast and hard on climate change. https://t.co/T2wSUiiq8L",895125 +"RT @Nick_Pettigrew: If a group of people that believe in Creationism but not climate change question your acumen, I'd suggest you're fu…",92275 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,784034 +RT @SayHouseOfChi: it blows my mind that nearly 50% of American voters are voting for a moron who thinks climate change is a lie fabricated…,463466 +Record of ancient atmospheric carbon levels can tell us about climate change impacts to come https://t.co/MOeiHPL14D https://t.co/KBIvpTEcNJ,541545 +RT @Wintersonworld: Trump Whitehouse website strips all mention of climate change & LGBT rights from any agenda & wipes the Civil Rights Hi…,229217 +RT @HirokoTabuchi: Defense Secretary Mattis asserts that #climate change is real and a threat to American interests abroad https://t.co/Zz8…,486638 +@claire_caffeine @TimSomp @sea_bass918 @projectFem4All Just like it was warm today so global warming is a hoax and… https://t.co/h8kwok1fQr,318073 +"RT @Scientists4EU: 1) Do 'global challenges' include climate change & fascism? +2) The 'Special relationship' is sycophantism +3) Don't…",238027 +@foxandfriends @guypbenson Only idiots think climate change is a hoax.,123946 +Now @billmckibben tells us about when together with 7(!) students @350 he set out to halt climate change in the world ��. #atAshesi,926635 +"RT @eschor: A second rogue National Park still talking about climate change. Three is a pattern, guys... https://t.co/AadYEA9gRI",957341 +Eerie November periwinkle bloom in Toronto a sign of climate change? https://t.co/BAOgwpuJkO #ClimateChange #COP22,331416 +@JohnAvlon @thedailybeast I don't know. Could it be climate change?,912415 +"global warming is real, and caused by humans",737710 +"RT @GSmeeton: The picture on climate change is not quite as bleak as some claim, says @_richardblack https://t.co/ReciIWNfzS via…",123939 +"RT @eelawl1966: What really angers me about climate change, is the thought of all the innocent animals that will perish due to human ignora…",197071 +"RT @pacelattin: In hillarious news, all G20 spouses are being taken to the German climate change museum. Ivanka said to not be amused.",355991 +RT @stevesilberman: Must-read: You can't understand why Putin hacked the election w/o understanding economic reality of climate change. htt…,939791 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,35780 +RT @TheWorldPost: Trump's EPA warns us to wear sunscreen while it does nothing about global warming https://t.co/UXI4K8ltDV https://t.co/vm…,238540 +"RT @nytimes: Scott Pruitt, the head of the EPA, said that carbon dioxide was not a primary contributor to global warming https://t.co/6PH0U…",578043 +"Why are bees headed towards extinction? There are a number of factors, including climate change, pesticides, and poor beekeeping practices.",559830 +"@NotJoshEarnest funny you believe bullshit science on climate change, but not the science that a fetus is actually a living human! 1/2",663080 +@LDShadowLady well congrats. Hopefully global warming wont suck again and bring snow to kill them off,637989 +@AlexFranco488 @quigleyheather eh with the real issues like climate change and our economy it doesn't look like he will do much good at all,609853 +RT @ClimateChangRR: Poll: Most want ‘aggressive action’ on climate change https://t.co/FEhnKQ8MkH https://t.co/a2gvoWhgq2,688250 +RT @jalewis_: make global warming happen,573526 +RT @nathanfletcher: Trump still hasn't gotten memo he lost Pittsburgh and Mayor there is committed to tackling climate change. Pittsbur…,122197 +"RT @globalwinnipeg: Canada not ready for catastrophic effects of climate change, report warns https://t.co/EyLEOsg8XE",698843 +"RT @DonalCroninIRL: At @Irish_Aid climate change/environment focal point and parter meeting in #Kampala, good case studies from @IIED https…",978695 +"RT @luckytran: The #marchforscience has reached Greenland, where scientists are seeing the effects of climate change firsthand…",276003 +"Androids Rule The World due to climate change, but not for long. #scifi #99c https://t.co/A7mojBcbFY @donviecelli https://t.co/rV9EdFXWeU",180966 +RT @greenhousenyt: Climate experts write a hugely critical open letter about Bret Stephens' column on climate change. https://t.co/2jTFGkRx…,640355 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/zAIlrYVcKe,528396 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,838575 +RT @envirogov: Have your say on the review of Australia’s climate change policies. Submissions close at 5:00pm on 5 May 2017…,224086 +"These idiots think global warming will take thousands of years so making money is ok, but human interference is rap… https://t.co/LDxuY6V6Jk",25107 +RT @HuffPostGreen: Schwarzenegger and Macron troll Trump over climate change https://t.co/O7X2IGQ2c1,941017 +"It's February, the windows are open and the fans are on high. What's this about climate change not being real?",83294 +"The best part about @SenJeffMerkley ‘s marathon? His extended, detailed rant on climate change and corruption.… https://t.co/HJH59Eekyr",488157 +@rosana With global warming this year things were reversed. Vancouver had way more snow than us.,280143 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/F64TlJ7qRV https://t.co/UKO…,234739 +Diet change must be part of successful climate change mitigation policies'. Less meat = less heat & reduced health… https://t.co/i9CqppJHbE,580721 +"Holistically managed pasture sequesters carbon in soil, producing meat that is a solution to global warming. Vegan… https://t.co/NAjCVrDegL",907765 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",556068 +RT @PopSci: Doctors unite to say climate change is making us sick https://t.co/AJJCyZ1va2 https://t.co/3oAROqybH9,212700 +"What’ll be in store if climate change isn't addressed: + https://t.co/KxU30FTgpt",353721 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,675982 +RT @ddale8: The GOP is the world's only governing party that rejects the scientific fact of human-caused global warming: https://t.co/TNxxm…,339284 +The 19th-century whaling logbooks that could help scientists understand climate change https://t.co/QHJS630LTX https://t.co/sF8j8lfU6u,191301 +I think it's intellectually dishonest to assert that human activity has no effect on climate change. @JPShalvey1 @QuantumFlux1964,168885 +Thank you @Sessions_SF for pledging $1 per diner on Earth Day to fight climate change! #zerofoodprint,732303 +"RT @JSCCounterPunch: The Queen of Fracking will 'combat climate change?' It's one thing to campaign for HRC, Bernie, another to lie on h…",793043 +"RT @TedKaput: Liberal tears may soon beat climate change as the leading cause of rising sea levels.#TrumpRiot +We are the…",699639 +maybe we should all start gold leafing our trash i heard gold could reverse global warming,312517 +"RT @DeficitHacks: Though we face fascism, climate change, and an executive branch full of hacks, the debt's still the biggest (fake)… ",352208 +RT @pablorodas: EnvDefenseFund: Pres Trump thinks the “best available” data on climate change is from 2003. https://t.co/PAJVqZ2Yfv,266989 +#PresidentTrump as the leading amateur scientist in the world knows that man-made climate change is a myth created by China. #Trump that!,901063 +God is more credible than climate change' https://t.co/L9ykdnCgQQ,675882 +"In rare move, China criticizes Trump plan to exit climate change pact: https://t.co/xbxxQ4pT2I via @Reuters",320560 +"Researcher studies impact of climate change, deforestation in Namibia #ChemistryNewslocker https://t.co/8Xtwbz33nB",245351 +"Bills intro'd in some states say public schools should teach opposing POV's abt global warming, evolution #WhyIMarch https://t.co/lxx0fInTbJ",522325 +So as well as splaining history to Prof Beard we get anti-vaxers and climate change deniers. Research methods should be taught at school!,703585 +"RT @DaveKingThing: Three debates. One post-election interview. Zero questions about climate change. +Z +E +R +O",641049 +@LauraSeydel Radical energy shift needed to meet 1.5C global warming target: IEA https://t.co/Z2xLWdaJA1 via @Reuters,45110 +RT @KPCC: Governor Brown says California's climate change fight won't stop under Trump https://t.co/X68OVfl5KY https://t.co/jNpOow3sDv,414797 +I thought climate change won't save you or your children from it.,269667 +.@RepMiaLove Don’t let our children face climate change disaster! #ParisAgreement #CleanPowerPlan #SaveTheEPA #ActOnClimate #swingdist,242813 +"RT @350EastAsia: Filipino activists hold #ClimateMarch to urge @ASEAN to Drop coal, act on climate change #ASEAN2017 #CoalFreeASEAN…",367599 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,654104 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,894232 +RT @jjmiller531: '97% of the scientific commity has stated there is global warming bec they have got grant money 2 agree with that p…,287449 +"he also wants massive tax cuts, an end to the FDA and EPA, Giuliani as AG, no action on climate change... https://t.co/QLslBsPKPk",573969 +The surprising link between climate change and mental health https://t.co/VxfBe2RG7P,573083 +"RT @Telegraph: Hundreds of millions of British aid 'wasted' on overseas climate change projects +https://t.co/ZMlLv1uF2c",543358 +"@KORANISBURNING @KrissyMAGA3X 1 week into Ct. spring and still have 1' of packed hard snow, another global warming sign?",672556 +"RT @Irenie_M: More likely a lesbian caused Hurricane Harvey than climate change, says right-wing commentator https://t.co/T3rKpgFY7w …",761778 +"RT @bruhvonte: Tyler the Creator is gay, +Krabby Patties made out of crab meat, +Fruit Loops all the same flavor, +and global warming still re…",790474 +How may #overfishing of critical species such as #whales and #sharks impact #climate change? https://t.co/fKpJ8jzsO4,576012 +Trump says 'nobody really knows' if climate change is real - Washington Post https://t.co/bv8emncKZx,391509 +"RT @drvox: Keep in mind over the coming week: many, many conservatives say that adapting to climate change will be cheaper than preventing…",766952 +"RT @GlobalPlantGPC: Future climate change will affect plants and soil differently, a @CEHScienceNews +study shows…",37858 +"On one hand, fuck climate change is outta control we HAVEEE to take action asap. On the other hand, thank fucking C… https://t.co/bAwACCuCk3",703952 +RT @kallllleyyyyy: global warming https://t.co/CaJpPRunA5,840146 +RT @TreeHugger: Children win right to sue US government on climate change inaction https://t.co/ov6p4rMw7r https://t.co/GmSRBSqYlC,317102 +RT @verge: Here's the climate change podcast you didn't know you were looking for https://t.co/OHtSERwTE1 https://t.co/8yz1eoRgYE,663313 +RT @labourlewis: UK must take international lead on climate change with election of sceptic US president says Labour shadow minister…,350256 +"Even [Trump] does not have the power to amend & change the laws of physics, to stop the impacts of climate change,â€ https://t.co/02JBU2udyy",302864 +"In race to curb climate change, cities outpace governments - Channel NewsAsia https://t.co/JeEHA2xrRB",950748 +How #climate change is affecting the #wine we drink https://t.co/feIGMohHN1,559829 +RT @c_kraack: RT @AMZ0NE A SciFi author explains why we won't solve global warming. âž¡https://t.co/xYpMOSZRRg https://t.co/25q3p8hFNT #amr…,316929 +RT @daguilarcanabal: Being 'pro-immigrant' while supporting zoning is like saying you're concerned about climate change while driving a die…,885671 +"RT @GhanaYouthSpeak: The New threats to poverty eradication: climate change, conflict and food insecurity, we need you to help the globe #y…",926884 +Next 10 years critical for achieving climate change goals https://t.co/9ek4Q5jqGA #mcgsci,151033 +"It's warmer in the Arctic than it is in Thunder Bay, Ont.' +Sorry, tell me again how global warming isn't a thing? 🤔 https://t.co/fZvxXn7xJT",956089 +RT @TooheyMatthew: Woohoo! Naomi Klein calls out IPA climate change denialism #qanda,578319 +@AP fighting climate change is ridiculous. Climate changes so figure out how to survive it for fuck sake.,502372 +I liked a @YouTube video https://t.co/zDe3rJt2yb Penn and Teller global warming,55085 +RT @Heidi_Parton: Reining in climate change starts with healthy soil https://t.co/KFFDC7KBnC via @deliciousliving #climatechange #biodivers…,844569 +RT @killmefam: global warming killed club penguin,657020 +RT @ClimateCentral: Here's how climate change could flood cities (and states) as the world warms https://t.co/GArhaHhlyo https://t.co/Ziwf2…,327419 +@realDonaldTrump climate change is real and the #1 contributor is man. https://t.co/iww1Or77EG,774068 +"RT @tveitdal: Polar vortex shifting due to climate change, extending winter, study finds https://t.co/pFeqP3mhya https://t.co/tA5fDSJzfg",215327 +RT @ProfSteveKeen: Arctic ice melt could trigger uncontrollable climate change at global level https://t.co/YoZ9foPlQ7,53274 +Energy Department climate office bans use of phrase ‘climate change.’ #words #bannedwords https://t.co/dcjwqQVYdF,165384 +"@Jackthelad1947 Trump @realDonaldTrump will only believe in global warming until his own Towers, Hotels & Casinos are under water, LOL!",216655 +RT @Cosmopolitan: The man Donald Trump chose to protect our environment doesn't think climate change is real https://t.co/4QgFdWRSHr https:…,895964 +#DonaldTrump has signed an executive order undoing much of Barack Obama's record on climate change #HeartNews https://t.co/dE2Y2vwhy1,658815 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,392139 +"RT @TimBuckleyIEEFA: While some continue to deny science and debate if we should do anything, climate change impacts are clear and growi…",303725 +"@LisaO_SKINMETRO I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",95260 +"Alternative' Twitter accounts defying Trump's climate change gag order could be prosecuted, experts say #Technology https://t.co/ANuDqBy1y7",29266 +RT @rtoberl: There's more than enough climate change money to pay for all of Trump's programs. Let the UN & China chumps solve climate chan…,941438 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",786762 +RT @Alyssa_Milano: The Trump administration just disbanded a federal advisory committee on climate change https://t.co/rChjQhTEJy /via @kyl…,687815 +"RT @AdamsFlaFan: Thanks to global warming, Antarctica is beginning to turn green https://t.co/tElBEwO3jo",58178 +RT @LOLGOP: This is actually a depiction of earth before and after climate change. https://t.co/tNzsPMbg3Y,892211 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,38872 +"RT @foxandfriends: 'Eleven years later, weren't you wrong?' -Chris Wallace confronts former VP Al Gore over global warming claims |…",6715 +@EliseStefanik @karenhandel She doesn't believe in climate change,115420 +RT @iNadiaKhurr: This could be us but you said deforestation lead to global warming. https://t.co/57BiT1WwQa,564035 +@BasedFaggotFTW your proof of humans not causing climate change,655450 +Al Gore just had an 'extremely interesting conversation' with Trump on global warming https://t.co/kILRsfiyhV https://t.co/CT9CeudUwX,536531 +I know climate change is a natural process. What is not natural is all the things we are doing to get resources bec… https://t.co/yxwmBbxZRf,558684 +"RT @SenSanders: In Trump’s speech I did not hear one word about climate change – the single biggest threat facing our planet. +https://t.co/…",521553 +RT @XHNews: What do you value most among things that China and EU have been doing to fight against global climate change? #ParisClimateAcco…,702061 +"RT @johnpavlovitz: Eliminating healthcare +Defunding PP +Ignoring climate change +DAPL +@GOP can drop that whole 'Pro-Life' facade. + +https://t.…",270836 +RT @funkgorl: namjoon called jin big brother and jin threw two flying kisses global warming is over #BTS #JIN #진 #BTSINNEWARK https://t.co/…,579324 +"As @pmackinnon509 told PRIM board this AM: 'Most of us wouldn’t bet against [climate change], so why is our retirem… https://t.co/LRxapR1apP",186889 +(Montreal Gazette):#Historic flooding in #Quebec probably linked to climate change: experts : Scientists have.. https://t.co/VnI1ADsThk,813889 +RT @DanWoy: Alberta not reversing course on climate change to match Donald Trump's backward march https://t.co/IW5gxrsNG1 #cdnpoli #cleangr…,864478 +"@bobcesca_go @CharlesPPierce +Bravo Pope Francis +Giving #BenedictDonald a treatise on environment & global warming… https://t.co/R9ShXPIJxI",879657 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,748146 +"Trump has repeatedly called into question the science behind climate change, even calling it a 'very expensive hoax.'",273325 +"@runningirl66 @therealroseanne As much as I care about your opinion on global warming, I;m sure.",52520 +"RT @AltNatParkSer: .@NASA has released a photographic series called 'Images of Change' despite President Trump denying climate change. +http…",620251 +"The Chinese understand what's at stake here. + +In rare move, China criticizes Trump plan to exit climate change pact https://t.co/eIsRC58Fom",967986 +RT @thehill: Government scientists leak climate change report out of fear Trump will suppress it: report https://t.co/M57Cf4IsC4 https://t.…,255772 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,124459 +RT @AmandaOstwald: @seventyrocks Science enables you to mentor women and people of color! Or teach how individuals can fight climate change…,778658 +RT @BekahLikesBroco: Are white people gonna survive climate change bro https://t.co/oGDLw85bjG,730026 +RT @LOLGOP: We elected a guy who said climate change was a hoax but the National Enquirer is real. That's why we point out he got millions…,524315 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,808795 +"RT @EricHolthaus: Holy wow. Remember those kids suing Obama & big oil over climate change? +They just *won*. +Read this: +https://t.co/HnZBICG…",410560 +We have to choose between corporations and communities.' #COP22 - women on the front lines of climate change.,736913 +RT @akaXochi: Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/U5qnxsKyz4 via @YahooNews,585868 +RT @cucumbersdotgov: went to look at pictures of the earth to cheer myself up remembered our president elect is a climate change denier got…,860621 +Love it #snowflakes to get dumped on - so much for global warming! @stevemotley,911013 +RT @Independent: Trump signs executive order reversing Obama measures to tackle climate change https://t.co/5QofpMag0a,350251 +"RT @sydkoller: FYI global warming is the reason for the severity of this storm and you voted for a man who doesn't believe in it, as our pr…",583294 +RT @newscientist: Trump could land fatal blow to the fight against climate change https://t.co/zPo0wntgIb https://t.co/FBIaQwPsur,237397 +"The president might not accept climate change, but the secretary of defense sure does. https://t.co/8W3zAj6tQr",810871 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,302920 +"@CathyWurzer @tanyaott1 @NPR We are parsing the definition of 'lie' while millions loose health care, and global warming has become a 'lie'.",826197 +RT @hrkbenowen: Will you turn off your lights for an hour March 25 at 8:30 p.m. to show support for climate change? Please RETWEET.,552138 +RT @c40cities: What are the world’s leading cities doing to tackle climate change? Browse our new case study library to find out!…,948170 +RT @kumar_eats_pie: 'A big box of crazy': Trump aides struggle under climate change questioning https://t.co/hC7JI38SWS,734002 +RT @wwf_uk: 1 in 6 species risks extinction because of climate change. It’s time to #MakeClimateMatter. Awesome design by…,381149 +RT @nytclimate: A call for women to take a bigger role in fighting climate change at a conference in NYC https://t.co/dikPLhegc3,87066 +RT @HuffPostPol: Badly misinformed lawmaker thinks our 'warm bodies' may cause climate change https://t.co/qzQBVisPfT https://t.co/C4Y2qs1M…,393025 +Harvard solar #geoengineering forum recalls this Q: Can we move from unintended global warming to climate by design… https://t.co/v3WTEJMxcp,242100 +RT @claudiogiudici: #Trump rifiutando #Parigi è contro #climatechange che prima era global warming che prima era raffreddamentoclimatico ht…,73720 +RT @WhyToVoteGreen: UN: 20 million people in four countries now face severe famine from combination of conflict & climate change…,248576 +"The Great Green Con: global warming forecasts that are costing you billions were WRONG all along +https://t.co/QXJ6M5mcvR",757481 +"@Prohximus @realDonaldTrump global warming is real, human caused, and already putting lives in danger.",949825 +The fact people are actually voting for a man who doesn't believe in climate change makes me wonder if people can get any fucking stupider😂,122392 +RT @Whoray76: @EmfingerSScout @AppSame What a waste of hot air that probably contributes 2 global warming! #MAGA,454520 +RT @TheKuhnerReport: Mark Levin says Trump betraying conservatives on climate change & amnesty for Dreamers. Let's wait until Jan. 20 befor…,246599 +Opinion: Hunger on the Horn of Africa is not caused by climate change https://t.co/ibZ3iP7INl via @dwnews,587755 +"RT @350: Despite Trump (and many denialists), 2016 is the year that made climate change undeniable: https://t.co/Xrj9GTBTf1 https://t.co/Fj…",696011 +.@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t.co/a86NgPKyzX,702158 +"RT @HirokoTabuchi: GE's Jeffrey Immelt says climate change is real. As a member of Trump's biz council, he also has Trump’s ear. https://t.…",577157 +Leo Di Caprio talks climate change with Obama https://t.co/BHOeEuhzpw via @YouTube,779146 +RT @thinkprogress: Will global warming help drive record election turnout? https://t.co/r7M77EAXeC https://t.co/detOUvCCWr,361064 +RT @guardian: Barack Obama on food and climate change: ‘We can still act and it won’t be too late’ https://t.co/4DOP0vUYU6,568478 +@GlblCtzn The White House under Trump don't care about climate change...,293138 +"RT @YEARSofLIVING: As seen in #YEARSproject, we must reduce our meat & dairy consumption, to stop climate change! READ: https://t.co/xdQbLI…",886852 +"RT @HirokoTabuchi: Americans ate 19% less beef from 2005-2014, a victory in the fight agnst #climate change. @ssstrom has the good news htt…",641390 +RT @LynnDe6: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/c1QxYAaeT7,309204 +RT @JamesMelville: The Swedish Deputy Prime Minister signs climate change legislation surrounded by her all-female team. #TrumpTrolled http…,861978 +RT @BitchestheCat: Back before global warming when it used to snow in the winter in Chicago (not in mid-March) my parents made a snow…,65678 +@guardian Remember @realDonaldTrump about your golf course in Scotland when you're denying climate change… https://t.co/awFnz2Pmsa,37161 +RT @FormerNewspaper: .@SarahHSandiers can you please confirm the democrat theory that climate change is to blame for the #AwanBrothers matt…,44459 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,212306 +RT @ScienceNews: Worries about climate change threatening sea turtles may have been misdirected. https://t.co/qDbUcdVttP,15931 +"RT @nytimes: In the Netherlands, climate change is not a hypothetical or a drag on the economy. It’s an opportunity. https://t.co/bv6L9tkf2a",839468 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/xt7RdoWX6d https://t.co/2QdKWNc2O6,206409 +"The webcast for 'Managing BC’s forest sector to mitigate climate change' is live now: +https://t.co/4qDXieuRdf",80465 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,902010 +RT @ClimateCentral: 35 seconds. More than 100 countries. A lot of global warming https://t.co/rkvcokTUAR https://t.co/HUz7ejjLLu,184219 +RT @emmaroller: A climate change skeptic running the EPA is now a reality https://t.co/8JUq66p1Qz,45607 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,337771 +"1-4 inches of snow my ass, global warming fucked that right up, stay Woke.",89645 +RT @GlobalWarmingM: David Keith: A surprising idea for 'solving' climate change - https://t.co/bJv22GGMRj #globalwarming #climatechange,414134 +RT @breakingnews740: It's worse than even climate change can explain. https://t.co/5CNH9I9n8v,357355 +RT @latimes: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/ig8sxJGw2f https://t.co/eo85j1GK7j,783782 +"Trump tweets wrong Ivanka, gets earful on climate change https://t.co/9gwXYTQlZO",537334 +Reading HS classmates' posts on FB about climate change being a scam & suddenly it's 12:30 & I'm too aware of people's stupidity to sleep,818133 +RT @CraigBennett3: WELL SURPRISE SURPRISE Govt to scale down climate change measures in bid to secure post #Brexit trade https://t.co/BRiRR…,314957 +RT @AP: Britain's Prince Charles co-authors a book on climate change. https://t.co/95cv3AscG5,793240 +RT @ManuelQ: .@Reince says @realDonaldTrump still thinks climate change is 'bunk' https://t.co/qpZ1bjzPVY ($),903549 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",505388 +We have 100 years at most before mother earth gets rid of us. To anyone who dosent believe in global warming keep r… https://t.co/3oTN8wvrUE,903516 +RT @EnvDefenseFund: These stunning timelapse photos may just convince you about climate change. https://t.co/Ne7Go0LcxN,830608 +RT @BarbaraRKay: A very good interview for people who are *so damn sure* about computer model-based anthropogenic climate change rel…,708649 +Watch: Bill Nye blows gasket when a real scientist schools him on facts about ‘climate change’ – LMAO!!!!!�������������������� https://t.co/gxCqRtj8yR,699265 +"RT @Okeating: Prince Charles has written a Ladybird book on climate change, but he's not the only celebrity to use this platform. https://t…",199279 +"RT @FROX3N: Human activities as agriculture & deforestation contribute 2 the proliferation of greenhouse gases that cause climate change. +#…",423050 +"RT @akin_adesina: Stop talking about climate change. Africa needs finance, not talk, to adapt to climate change. Watch my interview: +https:…",84479 +@PetraSuMaier @tulsaoufan @ChrisRGun Nyes ideas on jailing people doesn't excuse not believing in global warming,692437 +RT @omgthatspunny: if global warming isn't real why did club penguin shut down,511157 +"@Bedhead_ And that's your response to climate change? Universe big, we small?",134111 +Lakes worldwide feel the heat from climate change: Science News: Lakes worldwide are… https://t.co/lG8Rh5mGJn,457774 +"The #GlobalGoals seek to end poverty, reduce inequality & tackle climate change. No one should be left behind https://t.co/n8XDPPkNE9",444789 +The funniest thing in the world is a Liberal who believes in climate change......and smokes (anything). ����,28139 +How climate change could harm your health https://t.co/BK1uNFyv9t,532892 +RT @tinatbh: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus o…,896668 +@Gurmeetramrahim #National Youth Day save global warming,807831 +Al Gore's 'An Inconvenient Truth' Sequel to Open Sundance: The sequel to Al Gore's Oscar-winning climate change doc… https://t.co/7GESemyBUP,566437 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",122276 +RT @RacingXtinction: The types of food we choose can help slow down climate change #MeatlessMonday https://t.co/0PvjHrvv1j,330625 +These are the six climate change policies expected to be targeted by Trump's executive order https://t.co/guY6J7aCS1 …,459982 +RT @ashleylynch: Ignore the fact that he just gagged and censored every government organization from talking about climate change. H…,37020 +"RT @CorbinHiar: As the leader of Exxon, Rex Tillerson used the alias Wayne Tracker to send emails about climate change risks https://t.co/C…",248792 +"@washingtonpost yep,definitely no global warming here.",67871 +@SethMacFarlane @sciam meanwhile uses climate change to get permission in Ireland to build a wall around his property along a public river,818267 +@newscientist and a climate change denialist as head of EPA?,899530 +RT @nytimes: Donald Trump has called climate change a hoax. A Chinese official says it is anything but. https://t.co/N7y35LTyN2,598012 +Lol at everyone who thinks that global warming is the US's top priority.,105391 +"@CaitlinJStyles it used to snow from time to time , but it doesn't snow anymore. I blame global warming for that",734981 +"@kieszaukfans I’m creating a think tank for independent thinkers to solve climate change, would you post also at https://t.co/3nG3t7oJZI",194458 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",525857 +"#Acidification news: Healthy ecosystems means resiliency, faster recovery against climate change (excerpts) https://t.co/8LuuHuOnlV",299185 +"RT @KamalaHarris: This administration’s open hostility to climate change is appalling. No matter what, California is ready to tackle this c…",303968 +RT @SheilaGunnReid: When you take a cab to a climate change summit where you want to force others to ride their bikes or walk https://t.co/…,623420 +RT @ColeLedford11: polar bears for global warming. https://t.co/PqPcElsKkt,491902 +RT @nowthisnews: Electing Donald Trump is going to be a disaster for the fight against climate change https://t.co/MhkOlHgxXN,405671 +Trump team memo on climate change alarms Energy Department staff - https://t.co/E93KGSsaLE,283285 +RT @realDonaldTrump: The weather has been so cold for so long that the global warming HOAXSTERS were forced to change the name to climate c…,314315 +@sir_mycroft @Guiteric100 @rickygervais It's like not believing in global warming. You opposing war doesn't make the world a peaceful place.,342649 +RT @chelseahandler: North Korea believes in climate change. We are the only country in the world that has a political party who denies clim…,811594 +RT @TheEconomist: Uncoupling emissions growth and economic expansion is important for slowing climate change https://t.co/TnjMRQSU5V https:…,877953 +"RT @Reuters: France, U.N. tell Trump action on climate change unstoppable https://t.co/Gcj6LcrNpa https://t.co/0yFoOoUAaU",250020 +"Africa takes centre stage at Marrakesh, urges speedy climate change action https://t.co/IIqumfQPBV",482420 +"RT @philstockworld: Currently +reading 'Why we need to act on climate change now': https://t.co/dj2hPF4x5g",811970 +RT @ClimateReality: It’s simple: The same sources of emissions that cause climate change also produce pollutants that engager our health ht…,410045 +@kylepope 99% of all scientists say climate change is real. But US media presents the 'other side.' Fossil Fuel companies side? Sad.,768287 +"Mayors & governors are already seeing effects of climate change in their cities/states. They have to act now, with… https://t.co/ikRrIdzjBD",10140 +"RT @PiyushGoyalOffc: Shri @PiyushGoyal spoke about the dire need of addressing climate change, at the 8th World Renewable Energy Technol…",381026 +@DrJillStein What is your opinion on the #Vegan lifestyle as one of the solutions to climate change? ☺,824589 +RT @SwannyQLD: See my article on Turnbull's lost decade on climate change and remember the charlatans who led us down this path - https://t…,566239 +"@JadedCreative @chrislhayes LOL and fly a rocket ship to space, meet with scientist about climate change, and with… https://t.co/f47eL2kFQE",168376 +RT @ILoveQueenK: #EarthHourPH2017 muna tayo to fight climate change oh dba nakatulong pa tayo,925405 +RT @AJEnglish: Not all fur and waddles: This Penguin colony is at risk from climate change https://t.co/IBMSbIssbX,175224 +RT @BecomeWhoWeAre: @NathanDamigo Animal agriculture is the biggest cause of climate change (if it's real). Recycling cans and carpooli…,761939 +RT @amyrightside: US climate change campaigner dies snorkeling at Great Barrier... https://t.co/HToUo9txxe #greatbarrierreef,701364 +Hello. I am a white middle class conservative and climate change is very real. Thank you. #Facts,634818 +"Trump team at Davos: We don't want trade war w/ China, just better deal;. Pres.Trump Keep promise on illegals, no climate change, Obama care",691110 +Interior Department agency removes climate change language from news release https://t.co/IYR8aGVyMw,386807 +RT @StatsBritain: 100% of Britons hope Prince Charles DESTROYS Donald Trump on climate change when he visits in June.,885006 +Humans 'don't have 10 years' left thanks to climate change - scientist https://t.co/vUhQQAieW8 Finally some good news.,486755 +RT @hfairfield: Spring weather arrived more than 3 weeks earlier than usual in some places. New research pins it on climate change.…,335914 +The climate change racket has lost force #podestaemails26 https://t.co/xFi6crATGx,961423 +"RT @LeoDiCaprio: Want to stop climate change, @UWM? See #BeforeTheFlood at your University #BeforeYouVote. +https://t.co/ubMubJMbkv",48070 +"they asked what my inspiration was, I told em global warming.",86376 +"We could have the absolute solution to any problem; to end hunger, climate change, but in the wrong hands, we'd make the same mistakes.",857017 +"RT @cinziamber: Educate yourself on climate change and what you can do. Not just for yourself, but for your family, your future family, eve…",70184 +MINISTRY OF TRUTH DOUBLESPEAK: US federal department is censoring use of term 'climate change' https://t.co/ROoiXPVGqj,808139 +"Not sure how @heathersimmons knows about the nametags, but we see @Newmont is mentioned in these HBS climate change… https://t.co/UGclq2t4YX",348386 +RT @smh: State of the Environment report warns impact of climate change 'increasing' and 'pervasive' https://t.co/q6hduIhZl1,924242 +RT @Stevenwhirsch99: All the while he tries to lecture America about climate change....... https://t.co/PARNgUirHw,686843 +"RT @deltalreed_l: Polar vortex shifting due to climate change, extending winter, study finds +https://t.co/enqjjXpMsz Marco say climate chan…",49160 +"RT @TrumpTrain45Pac: There is no global warming says the founder of the weather channel +#MarchforTruth +#CNNisISIS +#ClimateChageisnormal +ht…",302490 +@Erikajakins They fully expected to be hailed as king and queen of some new 'climate change' era. To never receive… https://t.co/iAPH3shCti,183669 +"RT @SuffolkRoyal: @gwak52 @69mib Just more of the big 'global warming', 'climate change' con. Or whatever it is they're calling nature the…",945556 +RT @businessinsider: A new study just blew a hole in one of the strongest arguments against global warming https://t.co/xqzcyUrcAe https://…,664348 +"RT @TheAtlantic: Tracking climate change through a mushroom's diet, by @vero_greenwood https://t.co/yhYdZaRQg3 https://t.co/9zxuVfw2EI",556462 +"RT @slaveworldElmo: A vital link in fighting global warming: Whales keep carbon out of the atmosphere. #OpWhales +https://t.co/G8EFJatSXG",643411 +RT @SenSanders: We have a president-elect who doesn’t believe in climate change. That’s frightening for this country and the world.,428375 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,855864 +"RT @GhostPanther: Pence doesn't believe in climate change, evolution or that some ppl are born gay. Can't he just not believe he saw Hamilt…",566490 +RT @thehill: California signs deal with China to combat climate change https://t.co/vZ6x5jTnCh https://t.co/26ppDfBu95,830535 +RT @RogueNASA: Survey: Only a quarter of Trump voters believe in human-caused climate change https://t.co/fDRpSSHeAY,382 +RT @AbbieHennig: extremely concerned about planet earth now that we have someone in office that doesn't believe climate change is real,373785 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,734921 +RT @reaIDonaldTrunp: y'all still think global warming is a hoax? https://t.co/lxxfyA9rsj,171713 +RT @citizensclimate: Great op-ed in LA Times: Some conservatives are concerned with #climate change https://t.co/aMyanMSfB3…,556800 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,88973 +"RT @SteveSGoddard: Before global warming, hurricanes in Texas never did much damage. https://t.co/pQ10HFZWIb",658337 +RT @voxdotcom: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/rVDaS8lT1R,4709 +"RT @latimes: Russia investigation, climate change and immunity: Here are the major stories under Trump this week https://t.co/QEkiZ9bSRU",877084 +RT @ClimateCentral: 5 ways cities are standing up to climate change https://t.co/akwRgiNcaw via @FastCoExist https://t.co/hLpXJVYC4g,445620 +"The hoax : how pseudo climate change is used as cover for non conventional geoengineering war and destruction +https://t.co/wv5CQPOZ7G",270537 +@DonaldJTrumpJr @EricTrump make sure someone tells the trumps there is no such thing as global warming,703375 +Reason #600 I want to move- my brother just argued with me for 30 minutes about global warming not being real....#pleasegotoschool,46873 +Insight: To deal with global warming we need many of the same things that are absolutely necessary to explore space 1/3,899754 +RT @hrkbenowen: Al Gore refuses to give direct answer when confronted over bogus 2006 claims on climate change https://t.co/5c1inAzjVM,795861 +If he was white and was support climate change and doing some type of protest he would still have a job cuz that wo… https://t.co/yMzvb7EAjP,812551 +RT @ericgarland: Because I GUARANTEE YOU - Putin feared the US taking the lead on climate change. It would be the end of his country's tiny…,535591 +It's not global warming it's warming that's global,80055 +"@SebGorka NYT's: God confirms - 'Trump is the anti-Christ!' Blames him for 9/11, AIDS, global warming & Air Supply!",570775 +#3Novices : Despair is not an option when it comes to climate change https://t.co/Fe60O63EBo We've heard a lot about warming oceans in the…,607294 +RT @YooAROD: How do people deny that global warming exist? That's like saying the earth is flat. You sound flat out dumb!,346257 +Vital discussion from LoneStar Caledonia as the team embrace climate change and the fragility of our planet : https://t.co/19qLrWK8ka,834872 +RT @rose_douglass: @Janefonda climate change is a hoax. NOAA lied about their data. It's all about draining our wallets even more to charge…,214043 +@ZachTheMute also when he thinks climate change isnt real and thinks stop and frisk is a good thing,613413 +RT @StigAbell: I know nobody cares about climate change in the brave new world. But the red line is this year's sea ice. This look…,1960 +Balzer: Resilient ecosystems4 adaption to climate change. This is also in line with the #ZANUPF resolutions made made during #2016Conference,591346 +An extended family member posted on Facebook that people need to wake up because climate change isn't real. Any way to extend him further?,716050 +"RT @DailySabah: New US-British research confirms that reported pause in global warming between 1998 and 2014 was false +https://t.co/UjXm9Yj…",449744 +RT @TheEconomist: China sees diplomatic benefit in hanging tough on climate change https://t.co/7qGaXZ95jF,746121 +RT @BBAnimals: The effects of global warming https://t.co/twFnLF4XNw,576177 +"RT @NOAAClimate: With #snow in the forecast for this weekend, here's a quick reminder: Snowstorms don't disprove global warming.… ",742262 +RT @HannahRitchie02: How much will it cost to mitigate climate change? Some estimates suggest <1% global GDP per year in 2030. New blog:…,603256 +RT @HirokoTabuchi: China as climate change savior? Not so fast. By @KeithBradsher https://t.co/XgZjvvweLJ,995594 +@MarsinCharge allergy season is supposed to be especially bad this year because climate change got the trees out of… https://t.co/QOQtGyvnnY,491003 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,258024 +"RT @BayStateBanner: https://t.co/Duu2Ki5sRI In Boston, who will bear climate change burden? +#climatechange https://t.co/9ycaZuR8UT",132811 +RT @YEARSofLIVING: #RenewableEnergy saves us from the worst effects of climate change & solves our economic challenges @CalCEFAngelFund htt…,739061 +Modern agriculture cultivates climate change – we must nurture biodiversity https://t.co/qmwK5dKX31,515952 +RT @CBSNews: What happens if the U.S. withdraws from the Paris climate change agreement? https://t.co/eBb27mOzFI https://t.co/HGXbdcYWxs,622935 +RT @Green_Footballs: Trump pouts and glares as Finland’s president discusses the effect of climate change on Finland…,448716 +I didn't think people still confidently denied that global warming is an issue.,357570 +"President Donald Trump's policies on climate change are strongly opposed by Americans, poll indicates https://t.co/hjuhZcgfKC",459647 +RT @AP: BREAKING: California lawmakers pass extension of landmark climate change law that Gov. Jerry Brown holds up as global model.,694067 +"RT @BuckyIsotope: You are my sunshine +My only sunshine +With global warming +You’ll kill us all",342342 +RT @ajplus: Meet five communities already losing the fight against global warming. https://t.co/vKzk4FTQWJ,458106 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/bnVqULcmRb,943571 +@australian Don't blame it on climate change. The major cause is cyclone Debbie,592617 +RT @jmontooth: We need @neiltyson to go golfing with Trump and casually tell a story about climate change and the value of education.,847809 +Understanding alternative reasons for denying climate change could help bridge divide -… https://t.co/nXGJzJG7PX… https://t.co/xvun9tdD3w,676499 +@AlexWitt U ditzed Clinton & helped Trump win who reversed all climate change policies. Kiss your butt goodbye as Nature Knocks & blame you!,393921 +Recent pattern of cloud cover may have masked some global warming https://t.co/S3ahtG8xfC,307201 +@bg38l You reject the overwhelming facts associated with climate change. Are there other objective scientific truths you oppose?,814178 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,33055 +RT @__JoshBailey: I can't wait for all my tweeting to end global warming,316616 +Energy Department refuses to give Trump team names of people who worked on climate change https://t.co/5PJc8noSlJ via @bi_contributors,246745 +"RT @BostonJerry: Trump/Tillerson are against Russian sanctions, Iran deal, & any action on climate change. How could senior officials keep…",28308 +@tomcolicchio @MikeBloomberg And donating millions in support of combatting climate change?,793207 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",334667 +this is mostly linked to the fact they're all scientists and acknowledge the fact climate change is real,805610 +"RT @GoodFoodInst: Feel helpless as our president denies climate change? Don't forget how much #PlantBased eating counts. +Via @bustle +https…",747215 +RT @mythicalskam: sana angrily shooting free throws to humble was hot enough to fuel climate change i have the receipts https://t.co/6uYcGp…,124201 +RT @physorg_com: Extreme #weather events linked to climate change impact on the #jet stream https://t.co/nC1wHZuPYV @penn_state,360821 +"Academic, author Brett Favaro bringing climate change message to Corner Brook +https://t.co/CJO5J90gOY",461119 +RT @SarahKSilverman: Maybe @NASA will stand w their fellow scientists & hold off working on Mars until Trump accepts climate change https:/…,301741 +RT @CGlenPls: Merry Christmas. The reindeer population is depleting at an alarming rate due to climate change. Ho ho ho 🎅🏿,491775 +@FoxH2181 @A_CLizarazo @KyleKulinski What's your plan for when global warming destorys the environment? No plan? Hu… https://t.co/Dj2BIJqI9y,930852 +"RT @errolmorris: Fuck you to welfare, fuck you to global warming, fuck you to health care, fuck you to women's rights, fuck you to everythi…",208706 +my family that lives in Florida doesn't believe global warming is real and voted for trump,54869 +RT @Robert___Harris: Not sure the squirming on climate change & fear of offending Trump is going to play well for the Tories either https:/…,62066 +RT @CMHADirector: @mitchellvii Trump believes in climate change. He's about to change the political climate in Washington DC.,10993 +"Under Rex Tillerson's tenure, Exxon Mobil covered up climate change research by their own scientists https://t.co/QV4k11GqdT",629210 +Get real on climate change PLEASE https://t.co/v4wTucKfXo #nopipelines #stopkindermorgan https://t.co/PAUtyGWE6d,483522 +"@peyton_mg or when they remove any evidence of climate change, anything about ciVIL RIGHTS, AND HEALTH CARE.",810782 +RT @BelugaSolar: The complex world of climate change governance: new actors; new arrangements https://t.co/kflzE5JNKz,801097 +RT @SYDNEYKAYMARIE: wow would you look at all this climate change,117955 +RT @brainsoqood: mane that lil cold front we had bout a month ago was a mf tease . had everybody excited & shit . fuck global warming,857587 +"RT @_AlexHirsch: Simple. I believe in climate change, a woman's right to choose, gun safety & the wealthy paying their fair share. T…",756775 +"There u go, only a few days in and he's already fixed global warming, what was everyone panicking about",886329 +‘Shell knew’: oil giant's 1991 film warned of climate change danger | Environment | The Guardian https://t.co/dAjXgcEQWY,629213 +RT @thenib: If the media covered climate change the same way it covered Hillary Clinton's e-mails https://t.co/9fQYlRcq0y https://t.co/bjaF…,130697 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,412538 +While the West drag their feet on accepting that climate change exists. https://t.co/LT2PIElO55,34139 +"RT @GR_ComputRepair: #adelaidestorm I hope everyone in SA safe and sound, it's time to put climate change front and centre for Earth's sake.",149935 +"RT @OCTorg: Rex Tillerson will be in court answering questions about his climate change legacy on 19 January, … https://t.co/4KYEpw5e1b via…",813785 +RT @jakeu: Christians who refuse to care about climate change are outright disrespecting one of God’s most masterful creations.,74650 +@Brian_Pallister Shame on you for not supporting the national climate change plan,465837 +RT @MarieFrRenaud: The cost of doing nothing about climate change. #ableg #cdnpoli https://t.co/c2aYDkdszL,353152 +"RT @SABIC: #SABIC sustainability initiatives feature on KSA climate change website for #COP22 +https://t.co/M05d6slaAC",331104 +"Climeon power technique, used by Virgin Voyages, claims it has potential to help 'reverse climate change'… https://t.co/dlFYdEZKuk",56069 +"RT @nytimes: In South Florida, climate change isn't an abstract issue https://t.co/H3nEB7oJYH https://t.co/uQrVykw4ta",723413 +RT @DavidOvalle305: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/cPk8tIW8Cf,243069 +@MailOnline We love climate change!,482844 +"EPA boss says carbon dioxide not primary cause of climate change, contradicting all the scientific evidence… https://t.co/SbIbmne5sC",516277 +https://t.co/LNR1MMcEYu 'The scales have tipped': Majority of investors taking action on climate change! Where's Turnbull? Still fast asleep,634035 +In 4 days the most ambitious climate change agreement in history enters into force. Have you read... https://t.co/ndp1LS0Dmq,331193 +"RT @arjunsethi81: 2016 was the hottest year ever recorded. During that year, the 4 major networks devoted 50 minutes to climate change http…",474759 +Panel recommends transparency measures on climate change https://t.co/lQHi3Uvnay,488620 +"Earth's mantle hotter than scientist thought... volcanos will continue to impact climate change. i see a carbon tax. +https://t.co/eQEvF8JNp7",839352 +@Chicken_Pie22 climate chbage is arguable on both ends. I was pro climate change but after reading into it have chbage my perception.,391234 +RT @guardian: Ivanka from Brighton sends climate change reply to Trump https://t.co/iJ63nGWJji,313648 +"Omg. FBer complaining about the science march says it's not the US's responsibility to 'cure' climate change, let other countries do it.",659109 +"@JuddLegum What an understatement, @nytimes. What's going on? Between this & the climate change thing, it's fairly… https://t.co/82cXWhpKpD",662221 +RT RaysLegacy 'RT DrShepherd2013: Over the top alarmist articles about climate change are just as irresponsible as baseless skeptic claims.…,296437 +"RT @Anotherdeedee1: #ImpeachTrump +hoax vs profit +#TheJournal.ie DonaldTrump cites global warming as reason to build his Atlantic wall htt…",193971 +Dramatic Venice sculpture comes with a big climate change warning https://t.co/ams7rf9Ct5 https://t.co/wk9ArwizmO,787920 +"RT @EnergyFdn: Bill Gates, others launch $1B fund to fight climate change through energy innovation: https://t.co/cnPQsk9Bcw",535511 +#airpollution Arnold Schwarzenegger with some sense on climate change - https://t.co/R5J70HY092 via @knowabledotcom,769581 +Will China lead on climate change as green technology booms? https://t.co/wRTeXEK5y0 #Moraltime,349431 +RT @ChristopherNFox: Dear @realDonaldTrump @IvankaTrump: About 97% of #climate scientists agree that human-caused climate change is happ…,929265 +@Rachel__Nichols global warming,795123 +"RT @_joshuaaaaa_: why y'all arguing about prom capacity when it's already set in stone, there's other issues like global warming that…",155398 +@RonBaalke @Newegg and with climate change we can expect asteroids to become more frequent and powerful,725497 +RT @molly_knight: Oh my god my dude Mike Levin destroyed @DarrellIssa on climate change. What a blessed day! https://t.co/JucxpXYk1m,235678 +RT @IChooseLife_ICL: Prof Wakhungu-CS Environment now addressing on urgent actions that needs to be taken so as to combat climate change…,369892 +"@MikeBastasch @DailyCaller there has always been global warming and cooling , man has nothing to do with either",989976 +"RT @StreetCanvases: HULA / Sean +Tackles the theme of climate change with an amazing temporary mural done with natural chalk that washes…",685160 +RT @ScienceMarchDC: NASA is still communicating climate change science #ScienceMarch #NASA #Climate https://t.co/3omWE4kV8Y,345451 +@wef If that's the case please RT this @POTUS @realDonaldTrump because he is illiterally the death of us! #global warming,875429 +"RT @AdriaSkywalker: Me, when I think about how global warming is literally making the earth inhabitable, but the ruling class cares onl… ",588854 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,398409 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,142668 +"RT @Mattrosexual: If global warming isn't real, explain to me why club penguin got shut down?",868078 +Where is the correlation??? It is a proven fact that human activity and fossil fuels cause climate change�� someone… https://t.co/7QAni2ICFT,449764 +Scott Pruitt turns EPA away from climate change agenda - https://t.co/gGKOaXRRQS - @washtimes,194389 +"RT @mombot: Didn't a cat run onto the field at a Marlin's game earlier this week? + +I blame global warming. https://t.co/tmz797dPqc",465891 +RT @BillMoyersHQ: There are also 21 kids suing President Trump over climate change here in the US https://t.co/cEysoi4pva https://t.co/mS84…,861701 +"@ambrown And much like the cherry blossoms (thanks, global warming) it's coming earlier every year.",668682 +"RT @voungho: this ended poverty and climate change, my crops grew to their maximum potential and the world is suddenly cleansed…",859322 +RT @luisbaram: 'Fight climate change' is a polite way of saying: we're going to rape you with taxes and waste all that money in pointless p…,397319 +RT @ajplus: Trump picked a climate change skeptic to head his EPA transition team. https://t.co/3Odv7hO57P,662170 +"RT @BernieCrats1: BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is … https…",447574 +"Trump believes climate change is real, says Nikki Haley, U.S. ambassador to the U.N. https://t.co/WOCAlLLnbm via @WSJ When it comes from him",550614 +"RT @Impeach_D_Trump: Meet Scott Pruitt, the climate change skeptic that the Senate just confirmed to lead the EPA. https://t.co/EzFjk8NdKo",434903 +"Earth revolves around the sun, it isn't flat, and climate change poses a dire threat to humanity @realDonaldTrump.",939644 +"RT @LKrauss1: Women's rights, and climate change. Two reasons Trump needs to lose, and hopefully Democrats gain senate majority.",629964 +Legitimate question: How do people believe China made up climate change,822224 +"RT @godkth: - women's rights +- lgbt rights +- planned parenthood +- black lives matter +- climate change +- education +- disabled p…",372060 +John Kerry says he'll continue with global warming efforts https://t.co/XEVSoxtuHk https://t.co/mPCziP5KWL,575133 +Catalina United Methodist hosts lecture series on climate change - Arizona Daily Star https://t.co/wnNY3X15a3,996535 +Global man-made 'climate change' is a fraud. Trump better stop listening to the tree huggers.#trytostopthewind,627536 +@trutherbotwhite Time magazine has a 1920s article talking about global warming. Conclusion=the Earths climate always changes.,773818 +*69degrees out* 'I hate that people are saying it's beautiful out! It's global warming! Global warming isn't beautiful' @doradevay10,943559 +@ZanerBurr0522 'global warming is a hoax by the Chinese government',910094 +"RT @andrew_leach: @AlbertaBluejay Consultation was on best response to climate change for AB, and policy advice based on input, tech…",40552 +@mzemendoza don't thank global warming,949845 +RT @RHSB_Geography: #mapoff2016 collecting views on the impacts of climate change. Join in https://t.co/0JphxQGoYp @digitalGDST https://t.c…,893456 +Weekly wrap: Trump budget savages climate finance: This week’s top climate change stories. Sign up to have our… https://t.co/Ldh5qrKklR,799680 +RT @CarbonMrktWatch: 'indigenous people have contributed least to #climate change and they pay the highest price' says rep. of @iipfcc http…,478024 +Fuck all the people who don't believe in global warming it's real and we need to actually need to pay attention to it,249709 +RT @ClimateCentral: It's been 628 months since the world had a cool month (thanks to global warming) https://t.co/aFhq46q4BB https://t.co/E…,815643 +#TEAParty https://t.co/mcCHdVbq5T Lord Monckton shows IPCC Pachauri is dishonest about global warming after being corrected,10542 +"I'd love to, but climate change says 'No'. +#NoWhiteChristmas anymore. +#Germany https://t.co/eAz4sNxLCk",313029 +"@VeganHater420 to reduce animal cruelty, to reduce water waste, to reduce global warming, to practice what I as a studying scientist preach",551318 +@Dokuhan biggest problem too is that so many people in our country don't believe in climate change for selfish reasons. Dangerous times.,682768 +Rex Tillerson: Secretary of State used fake name 'Wayne Tracker' to discuss climate change while Exxon Mobil CEO https://t.co/paBFewCbzS,541054 +Poll finds more Scots want stronger action on climate change - The Scotsman https://t.co/feEh47yrjN https://t.co/AzGQA7FY7Z,921977 +"RT CoralMDavenport: Scott Pruitt says Co2 is not a primary driver of climate change,a statement at odds with globa… https://t.co/9tEQoqAMnD",40585 +More on the opinion pages about climate change - Ilona Amos: More must be done to to fight climate change https://t.co/1z0QJZjsAb,2551 +RT @sciam: The Arctic is undergoing an astonishingly rapid transition as climate change overwhelms the region. https://t.co/snnFNWwi04,3449 +"RT @homotears: the chainsmokers are the reason there is no cancer cure, war, isis, global warming and diseases.",306708 +@tetsushinjou inside because of the weather and that led to climate change etc,33638 +I fucking knew global warming is real https://t.co/OTIY8adbsQ,340490 +RT @Bakerwell_Ltd: Ladybird book for adults on challenges and solutions to climate change co-authored by Prince Charles https://t.co/kqjrus…,371368 +Study offers a dire warning on climate change https://t.co/PdZSO3Jb2U,403307 +97% of climate scientists say climate change is real. If 97 doctors out of 100 said you have cancer would you believe the 3 that didn't?,443723 +RT @ChrisSalcedoTX: Anyone else tired of militant gay agenda & man made global warming fantasy being shoved down our throats on @warnerbros…,917808 +"RT @timgw37: NRO 'The doings in Washington have a distinctly tropical feel to them, and it isn’t global warming...' KevinNR https://t.co/B7…",109773 +RT @mitchellvii: Merkel thinks flooding Germany with dangerous terrorists is a GOOD idea and that global warming is her biggest threat. Yep…,964844 +RT @LeoHickman: 'We must lead the free world against climate sceptics': EU says it will remain top investor against climate change https://…,875387 +"RT @JENuinelyHonest: @ABCPolitics 'Attacks from academia' because they said climate change is real and we shouldn't gut the EPA, that's an…",807641 +RT @_iAmRoyal: So many of my friends' families live in FL and are too poor and/or too disabled to evacuate. Capitalism and climate change a…,190559 +"Nationalism isn't the worry. Mass migration, climate change & Islamic fundamentalism are, but not allowed to say. https://t.co/k2suFkdFpk",929097 +"RT @aarnwlsn: when they're socially aware, care about bees, believe in global warming and climate change and support equal rights https://t…",216996 +"RT @markleggett: I believe that climate change is real, that it's man-made, and that we need to stop harming the Earth, which is very obvio…",305367 +RT @FoxNews: .@greggutfeld: 'It's crazy to think that climate change takes priority over terror.' #TheFive https://t.co/B4lTub47Af,560286 +@ChrisCuomo Comparing climate change denial to being a segregationist. You are a vicious monster. You and Camarotta are demonic.,643108 +RT @IRMercer: We cannot continue to tinker around the edges and hope for a miracle cure to climate change. Nice one @Amelia_Womack https://…,991972 +RT @RevRichardColes: That's the way to tackle global climate change: treat it as a domestic issue so the UV toasts only cheese eating surre…,65425 +Pacific peoples responses to climate change have been developing and adapting for decades and these should be recognised #ASAO2017 1/2,336322 +"RT @FAOKnowledge: Hunger, poverty & #climatechange need to be tackled together. How can #agriculture contribute to climate change mit…",126840 +RT @MickPuck: Well done Trump voters! #yourtrumpviote put a climate change denier in charge of the EPA https://t.co/GhSminTiHF,66121 +Nature: the decisive solution for the climate change crisis https://t.co/L3AsdT9uh4 via @AidResources,619287 +"RT @IHubRadio: Agriculture doesn't just contribute to climate change, it could help reverse it. https://t.co/PAdzXucJWg Via… ",124378 +RT @Independent: Donald Trump planning to force environment agency to cancel all research into climate change https://t.co/KOhnljS5cQ https…,587313 +Energy review of the year: Bad year for coal and uncertainty over climate change https://t.co/To9vGTGiZY,447439 +RT @guardian: The Guardian view on climate change: bad for the Arctic | Editorial https://t.co/xbzxPTWCiP,699344 +RT @nytimes: The White House refused to say whether President Trump still believed that climate change was a hoax https://t.co/VZGWJrcAu3,700265 +"RT @DanielMaithyaKE: Integrate climate change measures into national policies, strategies and planning #KenyaChat",201084 +@eadler8 @bmsnides climate change. You are devoting your career to science. This should matter to you.,787460 +RT @BillRatchet: ain't no one scared of climate change until mother nature comes out with a gucci belt on,772476 +RT @smitharyy: Earth Hour shines light on climate change #EarthHour... #EarthHour https://t.co/VYk63z40ZU,999493 +"@doctorow Well, it would solve the global warming problem.",649075 +RT @climatehawk1: Trump inspires scientist to run for Congress to fight #climate change - @NBCNews https://t.co/p0s0ufmzKh…,754715 +"RT @Isabellaak_: If you don't believe climate change is real, you're wrong. And Leo is here to tell you why. #BeforetheFlood https://t.co/h…",20118 +@MarkHerron2 @Gzonnini Tell these guys climate change ain't happening. https://t.co/1bQ14F6oWb,606310 +@destiny221961 then they speak abt global warming..haha! Who believes that!,629888 +RT @davidtracey: Would a true climate change leader choose 2 Texas oil billionaires (#kindermorgan) or people like us? Your call…,138102 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,966636 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,260253 +"RT @billmckibben: Trump is making biggest bet any leader has ever made: physics isn't real, and climate change can be safely ignored https:…",837801 +RT @JoseMGo66241080: Test nice day it will be a hot summer with more global warming https://t.co/XbY6jPvr5p,411449 +"RT @SafetyPinDaily: We’re “removing outdated language”: Trump’s EPA has taken down its climate change page | via @qz +https://t.co/UgrBo6N9i4",46829 +"RT @ExconUncle: One bird cannot stop deforestation, carbon monoxide, oil spills, global warming etc etc.... But TOUCAN !! https://t.co/tNXu…",422748 +RT @DavidPapp: Oman's mountains may hold clues for reversing climate change https://t.co/G8KTZFRPro,703922 +RT @KatrinaNation: My take this am -- Trump’s denial of catastrophic climate change is a clear danger https://t.co/rVYrkjAzRu,329328 +"30 Cancel billions in payments to U.N. climate change programs +31 Lift restrictions on production of job-producing American energy reserves",604545 +"RT @tuesdayreviews: 2044 + +Expert: Central planning made effects of global warming far worse. + +Bernie bro: Well actually, that wasn't real s…",194969 +"Whistle blower-NOAA scientists cooked climate change books, gets zero coverage by liberal media- still think theirs isn't fake news?",386862 +RT @motherboard: Vancouver is considering abandoning parts of its coastline because of climate change https://t.co/2vM1TiYfkR https://t.co/…,778479 +@realDonaldTrump @TGowdySC @SenatorTimScott globalists need to stop manipulating weather 2scare people into thinking global warming is real,25665 +RT @MarkRuffalo: .@EPAScottPruitt doesn't think CO2 drives climate change? Let's send him a copy of 'Global Warming for Dummies': https://t…,587685 +RT @JasonMorrisonAU: Dealing with 'global warming' Down Under. https://t.co/GOQzwYofUP,154455 +"RT @EcoHealth13: Conversations about climate change +The Naked Scientist @RadioNational +https://t.co/xh4Jedj2Iy",810205 +"RT @bourgeoisalien: TRUMP:I don't believe in climate change bc it never believed in me + +TRUMP's inner voice: ur confusing that with ur dad…",429754 +RT @nadasurf: .@IvankaTrump i really wish climate change wasn't real but i'm afraid it is. please help. the world would be so grateful. al…,497142 +RT @JacobWhitesides: I think that's global warming not christmas https://t.co/VVAzjVXH6w,332117 +COP22 host Morocco launches action plan to fight devastating climate change https://t.co/t0h9Fk3xfS @aarmd1 #COP22 #climatechange,689977 +RT @michelmcbride: these people don’t even accept scientific consensus on climate change. Directing to expert opinion is a dead end https:/…,15344 +RT @CDP: America's corporate giants are unequivocal that tackling climate change is an enormous business opportunity…,348067 +@ANOMALY1 You would need one of those liberal global warming expert to explain a phenomenon like that.... 🤔. LOL. 😂,445232 +"RT @WIRED: Obama, speaking about climate change, urges the importance of science and facts when developing solutions.… ",110434 +RT @Newsweek: A high-level climate change summit was mysteriously cancelled a few days before Donald Trump took office…,23501 +"RT @baesicderek: just vote for Hillary fuck it, at least she believes in climate change",745898 +RT @flippable_org: Scott Pruitt is dangerously wrong on carbon dioxide & climate change. He has no evidence for his claim. We have decades…,348993 +RT @jaylicette: I'm really worried about what's going on with the planet and the weather and climate changes and global warming. Send links…,86112 +"RT @UN: There is optimism in the fight against climate change, but the best time to act is now. @WMO chief explains more in…",847851 +RT @YorkshireWP: This graphic by PBI perfectly illustrates the extremely worrying effects climate change is having on the Arctic sea…,609103 +Analysis: Trump's a climate change pariah https://t.co/hDFsfFy5rb #WYKO_NEWS https://t.co/wazAO6GhcP,839077 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",257291 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,529894 +Climate hawks unite! Meet the newest members of Congress who will fight climate change. https://t.co/0VhsXRzyZw via @grist,589853 +"RT @Forbes: UNICEF USAVoice: UNICEF has issued a new report on what climate change is doing to our kids +https://t.co/zWYzEuPO9O https://t.c…",916547 +This sh*t is real | Scientists know storms are fueled by climate change. They just need to tell everyone else. https://t.co/eBb9C1IR7N,479855 +kiwinsn: cnnbrk: Judge orders ExxonMobil to turn over 40 years of climate change research. https://t.co/oBYGuFSIGA https://t.co/nMhp7g3g2r,715783 +It's been 1 week since I deleted Grindr. The sun is brighter. The birds are singing. Actually this may just be global warming never mind.,764927 +Holy moly this bitch thinks global warming is fake https://t.co/kWywtdsEsR,784447 +RT @cool_as_heck: Unbelievable that Club Penguin is shutting down yet people still deny the impact of climate change on our planet,862004 +"Pollution, climate change affecting everyone: Rajnath Singh - Economic Times https://t.co/uOVrHoiXkY",788502 +"RT @haydenblack: New EPA chief Scott Pruitt says there's 'tremendous disagreement' about climate change. + +Specifically between corporation…",905470 +RT @verge: Google Earth’s Timelapse update illustrates 30 years of climate change https://t.co/kTDUWZASfc https://t.co/0zIdtW9bzG,59972 +RT @CBSNews: Bernie Sanders: 'What astounds me is that we now have a president-elect who does not believe climate change is real…,558929 +RT: @ajenglish :Not all fur and waddles: This Penguin colony is at risk from climate change https://t.co/YCRwpA7iWi,749131 +The other climate change Trump doesn't understand: How the energy business climate has shifted - Washington Post https://t.co/bJBBieGsac,33039 +Meteorologist Paul Douglas talks climate change under Trump @jimpoyser https://t.co/FkeCMmjL6J https://t.co/cbO5FXPGv4,692983 +U saying bringing back manufacturing jobs and global warming isn't real is not being out of touch with reality? https://t.co/sAe7nOYgSC,456800 +Malcolm Roberts on why he doesn't believe in climate change - SBS https://t.co/BzWERwZOlq,167743 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,206677 +"Derrick Crowe is running for Congress to unseat one of the most ardent climate change deniers in Washington, Rep. L… https://t.co/VhgDuERdWD",76347 +RT @danvstheworld: God knows I never expected to say this but I hope Prince Charles kicks Trump's ass over climate change.,975857 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,900572 +"RT @PaulEDawson: USDA has begun censoring use of the term 'climate change', emails reveal. #ActonClimate #ClimateChange https://t.co/D545F…",776019 +RT @Slate: Trump will be the only world leader to deny climate change. https://t.co/thTQM5qEy6 https://t.co/0WvubdXUqu,315754 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,618247 +@BGPolitics Ever consider the fact that money is imaginary but climate change is real? It puts this proposal in perspective.,854472 +Will climate change hurt our mental #health? https://t.co/7FOAuVs3zT https://t.co/p6yffKUYhb,767416 +"@aniaahlborn I had to scrape an inch of powdery white global warming off my windshield the other morning... But hey, I live in Ohio",824297 +"Centrica has donated to US climate change-denying thinktank + +https://t.co/7d9RLZqrHu",226628 +"RT @YesBrexit: Tim Farron: 'There's no bigger threat to our country than climate change.' + +Those suicide oak trees need watching. #BBCDeba…",384950 +RT @SierraClub: “The only way to defend Sudan against climate change is through education. Trump’s ban cuts us off from that” https://t.co/…,470743 +"@RupertMyers Good luck to him getting climate change, social justice and inequality support from Trump.",628227 +RT @royalsociety: A saddening new study suggests many species will not adapt fast enough to survive climate change https://t.co/WXHKL8avw5,569901 +RT @HirokoTabuchi: Why do people question climate change? via @nytclimate https://t.co/2gt8B442Y3 https://t.co/dcIgYRZFNp,183605 +"RT @MediaEqualizer: London's mayor saying can't stop terrorism...but can stop climate change? And if he's right, why no terrorism in T…",39796 +RT @PopSci: Doctors unite to say climate change is making us sick https://t.co/T5Hryel0Jl https://t.co/KBlt2ouP5K,967810 +RT @GavinNewsom: Trump's choice for EPA Chief said he's skeptical of climate change & believes the debate on it is “far from settled” https…,842975 +RT @williamsonkev: This is the clown who's gonna battle against climate change when he leaves Whitehouse. LOL https://t.co/FIxFejs34h,829262 +"I think it will help, also, if the 'clean' part is emphasized more - for those who will always deny climate change. https://t.co/PUxNinW16U",43283 +I really don't see why you can't read the Bible AND believe in climate change,263778 +RT @Lagartija_Nix: Donald Trump to send Nasa astronauts to the MOON by cutting US climate change budget https://t.co/p4Twmmv2kz,544747 +F U climate change!!!����(but also I'm very aware this is all our fault cause people are gross monsters. I'm sorry mo… https://t.co/8nyZ0eHEA0,160865 +"After floods, Peru has an opportunity to rebuild smarter | Climate Home - climate change news https://t.co/iBgCuB4pGq via @ClimateHome",870306 +RT @voxdotcom: Trump took down the White House climate change page — and put up a pledge to drill lots of oil https://t.co/pFTyaKxmLW,317941 +.@RepJohnKatko Don’t let our children face climate change disaster! #ParisAgreement #CleanPowerPlan #SaveTheEPA #ActOnClimate #swingdist,242541 +"RT @CIBSE: '72% of people we surveyed were concerned about climate change. It's not just an economic argument, it's moral too.' R Gupta #CI…",264786 +I find it hilarious I argued for three days on twitter with atleast 50 climate change scientist idiots and now you will be getting 0 for BS.,502689 +RT @BuckyIsotope: Good thing America doesn’t have to worry about climate change because Jesus will protect us with a magic bubble,175518 +RT @ClimateCentral: This is why National Parks are the perfect place to talk about climate change https://t.co/dlza7hpubc https://t.co/nqqO…,966995 +RT @HarvardHBS: Business is one of the few institutions with the capacity to tackle climate change on a large scale…,58075 +Warning on climate change as mercury rises - Independent.ie https://t.co/PbCviP7yTI,936594 +RT @DineshDSouza: Let's see if the world ends when @realDonaldTrump 's climate change rollback goes into effect (Hint: It won't) https://t.…,945413 +"@MyMNwoods Hey! We have a new board for bouncing ideas on climate change, are you interested? https://t.co/LTVC09rfhf",956383 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,796714 +@evcricket if climate change radically alters precipitation rates I wonder how that impacts ROI for solar projects?,994587 +It's 65 degrees how can you not believe in global warming?!,855668 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,632029 +"@Bakari_Sellers away@mikefreemanNFL yeah, this will make climate change disappear. Yeah",99436 +"♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/DEawwT5nO9",498187 +RT @TheEconomist: Over 90% of global warming over the past 50 years has occured in the ocean https://t.co/1nwF6rlpM3,459281 +"RT @CenCentreLoire: Also in english, must read abt connections between climate changes and armed conflicts 'From Climate Change to War' htt…",314913 +RT @nytimes: See how climate change is displacing people around the world. Resettling the first American climate refugees: https://t.co/FgH…,343021 +RT @ClimateChangRR: Top climate change @rightrelevance influencers (https://t.co/cYQqU0F9KU) to follow https://t.co/3he3MjiW9d,761759 +RT @GreenStar_UK: There has always been reasons to #GoGreen but what are the effects of climate change? Find out:…,9180 +#Nigeria #news - BREAKING: #Trump pulls US out of global climate change accord https://t.co/nm6FBqIjkD,118420 +Carbon neutral' forest resource grab: A corporate detour in climate change race https://t.co/87nvSZX14X @IndependentAus,144978 +RT @PopSci: Six irrefutable pieces of evidence that prove climate change is real https://t.co/Zazn0D9vrI https://t.co/gVyz0KndxA,259239 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,597539 +"@turnflblue What we need is all powerful czar. One that can, in the name of climate change, dictate our lives for us. Sign me up!",803311 +@BlacksWeather Is this just summer or increased by global warming or can we say if one or the other ?,678530 +THREE active hurricanes. look me in the eyes and try to tell me global warming is fake. https://t.co/0FUyKFMb1z,738379 +Trump’s defense chief cites climate change as national security challenge https://t.co/nafqXkLZmH @SvD @dagensnyheter @AHallbarhet,784916 +RT @engadget: Trump to sign sweeping rollback of Obama-era climate change rules https://t.co/ioPYZM2rd4 https://t.co/4iWtB9hnv5,723261 +"RT @AJEnglish: How China, one of the world's biggest CO2 emitter is taking the lead in the fight to stop climate change…",520511 +RT @TwitterMoments: The US Agriculture Department has reportedly been instructed to use 'weather extremes' instead of 'climate change.' htt…,318150 +California launches new climate change conference to help fulfill Paris Agreement targets https://t.co/cLA3nzHp2m,347280 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,658258 +BBCWorld: Obama administration gives $500m to UN climate change fund https://t.co/bVuauwnfIQ,834309 +"RT @CllrBSilvester: Gov gave £274 million of your taxes to charity 'to fight global warming' +But has no idea where the money went ???… +ht…",742929 +RT @ineeshadvs: 150 years of global warming in a minute-long #symphony – video https://t.co/wvspa9absi @Alex_Verbeek,957353 +Trump falsely claims that nobody knows if global warming is real - https://t.co/gOHeEY2Yc4,892508 +"@POTUS You are NOT as smart as this man, and HE SAYS the climate change is real and affects the US! And he has SCIE… https://t.co/h0KZ3TUkWA",629115 +Show President-elect Trump that you care about global climate change. Stand with us and make your voice heard! https://t.co/cIHs85vk1F,45783 +"RT @NewScienceWrld: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/fC15w5bBiv https://t.co/qovDLDW7bU",374554 +"RT @dpcarrington: ICYM ‘Moore’s law’ for carbon would defeat global warming https://t.co/rVXigOkHVD +by me https://t.co/hnBgwcE8r5",533692 +"RT @TheDailyEdge: #ImagineTrumpsAmerica +Tax breaks for the rich +Spiraling debt +Slowing economy +No action on climate change +Hostility toward…",239498 +"RT @climatehawk1: Research in ancient forests shows tight link betw #climate change, wildfires https://t.co/SqITlNX48i #globalwarming…",31211 +"RT @SoCal4Trump: Q: What about climate science programs? +Mulvaney: Do you think tax $ paying for climate change musicals is a waste?…",236762 +"Scott Pruitt goes beyond blocking climate change data—will use EPA to get on the bad side of the FBI, but that's just me. #Maddow.",499387 +RT @lauriecrosswell: Trump isn't going to do anything about climate change. He just wants to meet famous people like Leo & Gates. These mee…,372368 +RT @deedeesSay: @realDonaldTrump @NASA If you support science and scientists... then you MUST support climate change!! #resist #trump #TheR…,264138 +Their was a civilization who was more concerned on global warming while innocent muslims were been slaughter in #burma #syria #Iraq,76328 +#weather The world’s best effort to curb global warming probably won’t prevent catastrophe – The Verge https://t.co/IPEPGh5VJ6 #forecast,114951 +RT @Thomas1774Paine: WATCH: Al Gore refuses to give direct answer when confronted over bogus 2006 claims on climate change https://t.co/yWx…,814831 +"RT @CorrectRecord: .@JenGranholm's message to millennial voters: 'If they care about climate change, she has to be their candidate.' https:…",268297 +Some of the variation in fire regimes in this area is attributed to anthropogenic — human-made — climate change... https://t.co/fxfLddo57Q,87226 +"Under Trump shadow, world leaders tackle climate change - https://t.co/QxbVRScYEH",145525 +RT @NickSchiavo_: 'We need to organize. We don't have the luxury to choose between racial profiling and climate change' - @yeampierre on ra…,742467 +RT @Zeke_Tal: He dismantled the whole myth of global warming in 9 words. And some people say he isn't a genius https://t.co/4lct5Xfoji,733277 +@ClimateNewsCA @SteveSGoddard https://t.co/W35Ep04dGH What happened to global warming @algore?,556429 +RT @ConversationUK: What you need to know about the Trump-Xi summit: from trade to human rights to climate change – and North Korea…,984662 +RT @Jackthelad1947: Can coral reefs survive rapid pace of climate change? #StopAdani #savethereef #auspol #qldpol @TheCairnsPost https://t…,863695 +RT @NancyEMcFadden: Next commander-in-chief picks climate change denier-in-chief to lead @EPA. We'll stand our ground. CA’s ready.…,718856 +"RT @twofacedent10: @CChristineFair I was literally shocked when he said, climate change was a Chinese propaganda. Now I understand why Socr…",556202 +"I mean, even Palestine and Israel agree that climate change needs to be addressed.",458662 +RT @sadearthclimate: @realDonaldTrump @mike_pence I cannot support you until you stop denying climate change. Protect our planet by support…,4008 +RT @Harringtonkent: You can't ride out climate change. Game Over. https://t.co/skRyf687Kj,65794 +"Cases of severe turbulence to soar thanks to climate change, say scientists - https://t.co/5YhqcVKJHo https://t.co/pxqwVBoLrf",308686 +RT @MarkLevineNYC: Trump's Tower is perfect symbol of his climate change denial: hogs more energy than 95% of comparable bldgs in NYC:…,77619 +"RT @helenmallam: Time for John Humphrys to retire? +No, that time was ten years ago. +@BBC lies to balance climate change, happy to fuel raci…",986237 +RT @MikeBloomberg: Cities are key to accelerating progress on climate change – despite any roadblocks we may face. https://t.co/hPQF6MJQ1A…,536921 +RT @kstate_geog: Physics' Neff Lecture on Sept. 12 highlights climate change understanding: https://t.co/EYDwBqVAY2,327880 +"@neontaster But in Kluwe's example, in the future climate change will kill actually self-aware, thinking human beings.",519276 +TBF to that Mike Rowe/Bill Nye comparison: Mike Rowe deals with *real* things like jobs and poop. Nye works with things like global warming.,344602 +"RT @AltStateDpt: According to @NASA, 97% of scientists agree it's 'extremely likely' humans are causing climate change. + +This is not a deba…",369696 +"@VictoriaAveyard I know that's not what this article is even about, but still. China could singlehandedly curb global warming.",183392 +RT @MotherJones: Cable news spent less than an hour covering climate change in 2016 https://t.co/47BO4go9j2 https://t.co/pxJ0UaDN2Q,21776 +RT @NatGeoPhotos: These stunning photos of Antarctic ice present visual depictions of climate change: https://t.co/P9ppiMwjMY https://t.co/…,103782 +RT @IanDunt: May with Trump. Fox with Duterte. Foreign Office on climate change. Brexit shows that desperate nations have no principles.,395442 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,528923 +RT @JimCaligiuri: @exxonmobil why do you fund climate change deniers?,203021 +RT @SFUnified: Students @ MLK built model houses to withstand flooding caused by climate change. Lots of project based learning on…,210803 +#NEWS GOP candidate Greg Gianforte gives GREAT answer on climate change; Dem Rob Quist… https://t.co/EkfVGMXYIL,244909 +"RT @trojan719: Why don't you fucking global warming idiots just go away,! Get a real job for a change'.",201132 +RT @NoGMOsVerified: The Carbon Underground brings down-to-earth solution to climate change #GMOs #RightToKnow #GMO /ngr https://t.co/mCZNv4…,333838 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",242928 +RT @nhbaptiste: Most scientists call it 'scientific consensus' but this lawmaker calls it 'climate change policy preferences' https://t.co/…,549548 +RT @Carbongate: Top Russian Scientist: ‘fear a deep temperature drop — not global warming’ https://t.co/zqgkOQfYZg via @PSI_Intl,971087 +RT @MarcusWRhodes: Butterfly conservationist who informed climate change policy gets OBE https://t.co/sKUfch35Rw,198173 +RT @eci_ttip: .@EP_Environment #CETA goes in the opposite direction of our commitments to limit global warming below a temperatur…,507787 +"RT @timesofindia: India, China already showing strong leadership to combat climate change: UN environment chief…",744350 +"RT @ddale8: Accurate but rare NYT language here: headline describes Trump's EPA pick as a climate change 'denialist,' not a 'sk… ",989276 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",464956 +RT @FrankBruni: 'Scientists' won't sway Trump. I direct you to climate change. I direct you to vaccines. https://t.co/kiiEyN4E4A,825104 +"As Trump heads to Washington, global warming nears tipping point https://t.co/SrhZF1buvq via @markets https://t.co/59ys5Ayekw",893902 +"We must combat climate change. Indigenous ppl are protesting for our earth, our water. Yet this happens: https://t.co/EUDmjbgbkx",790917 +RT @DeanBaker13: More evidence of that Chinese hoax on global warming https://t.co/Ek1LXTliaQ,939067 +"RT @thehill: Trump budget eliminates dozens of EPA programs, climate change research: https://t.co/qS1fC0SCbA https://t.co/tunHyhyPIZ",44875 +The fight against climate change: 4 cities leading the way in the Trump era https://t.co/4PwGkymGHe v. @guardian https://t.co/xWPC84scZD,725908 +RT @theblaze: Watch: It takes Tucker Carlson just 90 seconds to completely destroy liberal hypocrisy on climate change…,162327 +"RT @KamalaHarris: I stand with @JerryBrownGov in saying that California will not back down on climate change. +https://t.co/xP8Y6eSmyx",857432 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,512973 +RT @PsyPost: Study: Moral foundations predict willingness to take action to avert climate change https://t.co/qiwmBoSIeq,665155 +RT @MrEvanMcCann: 2017: People don't believe in global warming but they still trust a fucking groundhog to predict the weather.,481258 +RT @Independent: Emergency campaign launched to convince Trump climate change is real https://t.co/obbXYhFxNS,101492 +RT @IsabelleJenkins: Is climate change the next emerging risk for #banks? PwC’s Jon Williams on this key topic https://t.co/SqEfkZkvKV,282384 +RT @Stevenwhirsch99: Obama can take a 747 plane to rally for Hillary and then ask us (tax-payers) to support 'climate change'. Hypocrite mu…,563804 +RT @afreedma: Rick Perry sounds so reasonable while calling for a climate change 'debate.' Too bad it's BS https://t.co/0tbEeBKu3g https://…,380930 +Bill Gates warns against denying climate change. #climatefacts https://t.co/3uJ2r1QHOQ via @USATODAY,63274 +Donald Trump’s Mar-a-Lago Florida estate to be submerged by rising sea levels due to climate change via /r/worldne… https://t.co/ceJuDNubje,796774 +RT @jiatolentino: What if there was a climate change fundraiser compilation album called It's a Hot One that was just 13 artists covering '…,642040 +China to Trump: Wise men don’t sneer at climate change https://t.co/dNZMpXBCi2,500526 +"RT @CowsEatGrassBlg: Climate change and global warming is a clever way to distract from what is truly happening...global poisoning. +#scienc…",671048 +RT @GeoffGrant1: National Parks are perfect places to talk about climate change. Here's why https://t.co/HJZ8njSJRz https://t.co/QinEAgNcGb,486218 +RT @robreiner: Ed. Sec. against public ed. HHS sec. opposed to Medicare. Labor sec. against min. wage. EPA head a climate change denier. DT…,511422 +@Tearanged maybe he'll make the climate change easier lol ���� https://t.co/2grVo3Wg5e,165759 +"@JonahNRO No but seriously, oj is getting out.... he will kill us all. This is more ominous than global warming",645301 +"RT @IssaShivji: '...just as climate change is the natural byproduct of fossil capitalism, so is fake news the byproduct of digital… ",710223 +RT @Harvard: University of Alaska scholar describes a coming crisis of displacement due to climate change https://t.co/dg4ecZy6gj,990571 +"RT @RepStevenSmith: A CNN host said we should all vote for Hillary because she believes in climate change. + +These countries make one t…",569637 +Event in #Kendal on 30th Nov 7.30pm: 'Images from a warming planet' by Ashley Cooper (talk & book launch): https://t.co/JT1aiUuap7 #Cumbria,721243 +Sweden passes climate law to become carbon neutral by 2045 | Climate Home - climate change news https://t.co/TjlxGvXM0S,548509 +fighting climate change all over the world except here in the U.S. where our President believes his a hoax created… https://t.co/fufUdtNANL,274643 +@skilling tells #AtlanticAirSummit that climate change is happening in round table with @gretamjohnsen and @DAS_Illinois.,695145 +@realDonaldTrump doesn't believe in global warming? https://t.co/AxD9Xzuz5W,255777 +RT @AnnCoulter: Everybody use aerosol this week! Maybe we can jump-start some global warming. https://t.co/fgGCv3JHH2,593154 +EPA chief: Carbon dioxide not 'primary contributor' to climate change @CNNPolitics https://t.co/4k9fxHkreu,502769 +"SHOCK: The ‘Father of global warming’, James Hansen, dials back alarm https://t.co/0qbzmWFQ59 #thedailybulletin",599372 +Those who #preach from the altar of man-made global-warming purposefully confuse natural climate change with man-made global warming.,579198 +"RT @iamtdags: Yet climate change is not a thing. Wake the fuck up, @GOP @realDonaldTrump https://t.co/Wsdmz4bQ81",174276 +"RT @pablorodas: #climatechange #p2 RT Endangered, with climate change to blame. https://t.co/1lWNWChZuL #COP21 #COP22 #climate…",952316 +"In executive order Tuesday, Trump will dramatically alter US approach to climate change: https://t.co/sI6YSpwQWz",146567 +@alexburghart There's £1bn missing! Gone as a bung to homophobes anti-abortionists and climate change deniers in ex… https://t.co/fDCE8t8bDX,519007 +Thunderstorms in February? And there are SOME people who say global warming isn't real. #how #globalwarming,497620 +"Depression, anxiety, PTSD: The mental impact of climate change - CNN [Our ancestors are from there so proly related] https://t.co/1pX8PDbKUq",83071 +RT @haroldpollack: The New York Times should not have hired climate change bullshitter Bret Stephens https://t.co/35zUSWXvev via @voxdotcom,316882 +@RedShirtOne @XCrvene @pogatch44 @dianeneve53 @nullhypothesis9 like climate change?,441233 +"RT @neymadjr: - women's rights +- lgbt rights +- planned parenthood +- black lives matter +- climate change +- education +- disabled p… ",534393 +"RT @SamSchaffer3: Today we are mourning the end of the USA, the rights of women and minorities, and any progress in climate change. #Trump…",313809 +RT @GreenEdToday: 'I believe climate change is the defining environmental issue of our time. It's hurting people around the world. It…,515011 +@realDonaldTrump @EPAScottPruitt @jiminhofe So more than half of Americans believe in global warming. So why is Tru… https://t.co/iWh9fXjluU,53376 +And investing today in mitigation & adaptation to #climate change will limit human suffering & limit risks/costs --… https://t.co/aTglwWV0pf,449332 +Alberta ice climber to go inside a glacier to measure climate change effects #climatechange #iceclimbing… https://t.co/b2suzYtYaY,358684 +"RT @SocialistVoice: Tories now have a climate change sceptic, a man who hates Europe, an NHS privatiser and a PM who hates human contact ht…",910878 +RT @realDonaldTrump: It's freezing and snowing in New York--we need global warming!,683328 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,632209 +"RT @renew_economy: Trump’s position on clean energy and climate change is little different to that of Tony Abbott’s, whose policies... http…",63394 +UW faculty challenge DNR climate change revisions: https://t.co/Ye7rnNXsTv https://t.co/y4BrPpER56,258494 +RT @Amplitude350Lee: This is nuts. The 'Green Party' is endorsing a man who doesn't believe in climate change. I guess they got the 'g…,17146 +I can't seem to find proof that global warming exists... https://t.co/sIIm16FPp4,113406 +March 2017 continues global warming trend https://t.co/AfxRhcZiVl https://t.co/LdQ2E4GA9l,791872 +RT @womensart1: Argentinian artist Andrea Juan's decade of Antarctica installations/performances highlighting climate change…,30382 +Just found this. An environmental cover-up to substantiate the global warming narrative? @FrankMcveety https://t.co/0FiJxfL07t,468651 +RT @joshgad: The fact that not one of our three debates raised the question of climate change is a disgrace. https://t.co/FdqCXkm34A,807521 +"RT @YaleE360: Thanks to climate change and ice melt, countries are preparing to transform the Arctic into a major shipping route.…",844696 +"RT @c40cities: Aggressive mitigation of methane across all sectors can reduce global warming, improve public health and air qualit…",37056 +"guess who trump learns science from? + +Putin says climate change not man-made https://t.co/rb8vCaMBrA",697676 +@SecretarySonny @POTUS @USDA @AsaHutchinson climate change is no joke! Good luck to all!,108031 +"RT @BalrogGameRoom: global warming? fine +trump getting elected? ok + +but not this oh god please not this https://t.co/8QDPxxeRw0",863487 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,550647 +RT @g_mccray: EPA head Scott Pruitt denies the basic science of climate change https://t.co/qVnxk7bwL7 via @nuzzel,872306 +RT @FSologists_AK: Subsistence hunters say access to wildlife resources greatest threat from climate change says @uafairbanks study…,368994 +"RT @goldengateblond: Hey Tanya, the effects of climate change can significantly impact terrorism. https://t.co/TOQ3yOXRX5",987129 +@nytimes Amazing and beautiful. Too bad they will be in danger of extinction due to climate change.,293586 +"Top Diy story: To slow climate change, India joins the renewable energy revolut… https://t.co/54jseciF6h, see more https://t.co/va9CZrcnbD",659119 +RT @MrBeastYT: If global warming doesn't exist then why did Club Penguin shut down?,489550 +Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/K5utnt6dJv,688476 +If you think global warming is a joke please watch Before The Flood. Unreal doc,557113 +June 7th. Its 12 degrees outside. Fn climate change is fn real people ��,458344 +"@AlexHaase2010 if global warming ever kicks in and we get some warm weather I'm taking Lacey to DQ for her cone, she love em",343594 +RT @catfuI: The new president of america is going on trial for raping a 13 year old girl and doesn't believe in climate change,423020 +"RT @frontlinepbs: In 2012, FRONTLINE took an in-depth look at the groups fighting the scientific establishment on climate change https://t.…",3462 +"Mixed signals for economic switch on climate change https://t.co/plNVePUXVh https://t.co/SvbziCCVs9 + +— ABS-CBN News (ABSCBNNews) November…",256331 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,182779 +RT @SincerelyTumblr: if global warming doesn't exist then why is club penguin shutting down,726997 +"RT @Blueskyemining: Meat production is a leading cause of climate change, water waste, and deforestation. #GoVegan! https://t.co/QQjXNxLk48",839310 +"RT @climatehawk1: Carbon dioxide must be removed from atmosphere 2 avoid extreme #climate change, say scientists…",366691 +RT @keywestcliff2: #Chicago #BlackonBlack murder rate soar. #Dem run cities responsible for more deaths than 'global warming' will ever cau…,793782 +RT @NewsHour: Listen to 58 years of climate change in one minute https://t.co/3yHZ7omEsT (via @KUOW and @EarthFixMedia),761451 +UCSD scientists worry Trump could suppress climate change data https://t.co/pIFHnoYPRR,529987 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",880139 +RT @AshGhebranious: Truffles speaks about inter-generational theft. His climate change policy is inter-generational murder #auspol #qt,907108 +"RT @EricHolthaus: To help understand how extreme this is, even *North Korea* signed on to the Paris agreement on climate change. +https://t.…",95023 +"RT @NewsfromScience: EPA head Scott Pruitt said today that CO2 is not a major player in climate change, contrary to scientific consensus: h…",340565 +RT @Greenpeace: These @NASA photos of climate change will shock you into action. Not #alternativefacts https://t.co/7eid8iGFxO https://t.co…,313583 +RT @axios: A slimmed-down U.S delegation will attend the next round of UN climate change meetings in Germany next week. https://t.co/bUpfgd…,91110 +RT @washingtonpost: 'Al Gore offers to work with Trump on climate change. Good luck with that.' https://t.co/3w5uUhkM89,674536 +RT @MikeKellyofEM: ACT leaves most of Australia behind on climate change initiatives: report https://t.co/kZCk1Bs7vO,725981 +"@politicususa They also deny climate change, & believe pro life means stopping trespassers & bad drivers with lethal force.",791988 +@AnnastaciaMP 's strange plan to fight climate change & help protect the Great Barrier Reef. https://t.co/ZGRCPeDAP4 via @brisbanetimes,10750 +"RT @najeebabdul: This guy who is being tapped for EPA likes global warming because of warmer weather! #trump #elections2016 + +https://t.co/Q…",70886 +RT @caseyjohnston: ironic that climate change is making for great protesting weather,568043 +RT @nowthisnews: Pope Francis and Angela Merkel are teaming up to fight climate change https://t.co/wVkR7TahO0,148204 +"RT @irisakkermxn: Happy Earth Day. +Let's talk about animal agriculture being the number one cause of global warming and gaia's destr…",955877 +"I don't believe in global warming, cuz I see the opposite. It's become much colder in St.Petersburg in recent years.",710384 +I voted!!! Yes I voted for the crooked nasty evil one! Mostly because she believes global climate change is real. #imwithnasty,700357 +"Bill Gates warned against denying climate change and pushed for more innovation in clean energy,… https://t.co/iMY49pJOFt #technology",403622 +RT @gecko39: One of the most famous global warming scientists says climate change is becoming more extreme https://t.co/hwVWzMXPSK,379890 +A third of the world now faces deadly heatwaves as result of climate change https://t.co/YEp2XRSSS6,214790 +RT @KFJ_FP: It is kind of hardcore that @exxonmobil is to the left of Trump on climate change. https://t.co/ndaDgq8VfL,673915 +RT @CoolestCarib: How climate change is stripping the Caribbean of its prized coral reefs | MNN - Mother Nature Network. #CoolestCarib http…,599658 +Exxon has known about climate change since the 70s. Instead of sounding a warning it conspired to profit. #rejectREX https://t.co/LFQwfmVooY,514363 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",12212 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",37585 +"Trump win a 'disaster' in the fight against climate change, scientists and environmentalists say https://t.co/XdQ3IGUjxN",269742 +TheEconomist: Is Exxon Mobil's carbon tax proposal a public-relations exercise or a commitment to fight climate change? …,561455 +"RT @TheRReport: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/bsC1lY9Rzp",233339 +We already have died to a climate change one that has been unhealthy for eight years -at last we may even now have… https://t.co/smkCoD5Ffh,734564 +RT @7NewsQueensland: Australia has officially signed up to the global deal on climate change action agreed in Paris:…,152162 +"RT @ciarakellydoc: Definition of #covfefe ? += massive distraction from US pulling out of Paris climate change agreement",652743 +RT @pierrecannet: Vatican urges Trump to reconsider #climate change position https://t.co/xTgzrClgKi #ActOnClimate #Pope,842866 +RT @jimrossignol: Remember: climate denialism doesn't make sense *even if* you have doubts about climate change. The solutions to it…,829108 +RT @WorldfNature: How Margaret Thatcher helped protect the world from climate change - CityMetric https://t.co/znvEB7gK4Z https://t.co/LHg1…,427747 +RT @maddecent: listen to ur soundcloud? haha not until u admit climate change is real buddy,385763 +"RT @GhostPanther: Biggest loser tonight is the human race. Cause climate change is gone as an issue in Trump America. + +THIS IS A HUGE DEAL.…",867962 +"https://t.co/RfKGKDpa01 + +Working towards the 2018 elections will help us fight climate change.",584277 +RT @vinnycrack: shes thinking about global warming tell your husband https://t.co/LWWFA5aoiC,977469 +"RT @EnviroVic: Nato General warns climate change poses a global security threat — says it's not too late, but we must act now. https://t.co…",4565 +@saswyryt @AlexCKaufman @AmericnElephant @TuckerLangseth So all discoveries re climate change 'have already been ma… https://t.co/9VEmJEepQ2,596205 +RT @AfricanBrains: China to enhance cooperation with developing countries on climate change: vice https://t.co/f6R0MuNmxj #china #climatech…,106146 +"RT @Youth_Forum: We need to do all in our power to tackle climate change, before it is too late! Young people deserve a future!'…",194447 +Russian President Vladimir Putin says climate change good for economy https://t.co/dLS2sVmTOR,935981 +RT @StopTheseThings: Australia's energy crisis is all self-inflicted and largely down to the scaremongering waged by global warming... http…,382689 +"RT @NMNH: Arctic coralline algae, like the 900+yr old specimen in #ObjectsofWonder, are data mines for climate change studies. https://t.co…",877209 +RT @scifeeds: Trump’s election marks the end of any serious hope of limiting climate change to 2 degrees https://t.co/aXDzodjg5D https://t.…,951367 +RT @pnehlen: Forecast: another 8 inches of climate change with record low temperatures.,886593 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,413497 +"RT @Independent: Trump’s climate change stance ‘sociopathic, paranoid and malevolent’, world-leading economist says https://t.co/rM4UD9mLkZ",168716 +"RT @MikeDelMoro: Wow - the DNC nat'l press secretary's full statement on the deleted Badlands tweets about climate change: + +'Vladimir Putin…",779455 +@Philosocrat Oh I believe in climate change. I just don't believe in Delaware.,209806 +RT @theSNP: FM: 'I think we should challenge the views of anybody who challenges the science around climate change.' #FMQs,556990 +"RT @umleismary: good morning i hope u have a wonderful day, unless u believe that climate change is a hoax",55922 +The leadership void on #climate change https://t.co/C2ChfnJfp9 via @ecobusinesscom,393562 +RT @NFUtweets: Addressing climate change is essential for the future of British farming #COP22 https://t.co/nAzdxnqnoa https://t.co/pJ1RYlC…,980856 +RT @EcoInternet3: El Nino-linked cyclones to increase in Pacific with global warming -research: Reuters https://t.co/5wqyWpIOmQ #climate #e…,921808 +RT @spacetits_: When you're enjoying the warm December weather but deep down you know it's because of global warming https://t.co/Nq4ycaaMEp,463431 +"Supporting action on climate change, https://t.co/73gaXx8oac #energy",574520 +Yung seminar kanina na parang kinokonsensya ka pa kung bat ka pa nabuhay dahil nakakacontribute ka lang sa climate change 😂 tf 😂,116121 +"RT @factcheckdotorg: .@realDonaldTrump told @nytimes he had an “open mind” about climate change, but repeated false & misleading claims. ht…",43620 +Trump's other wall: is his Irish resort a sign he believes in climate change? #LBC https://t.co/3erBLWBwd1,941858 +"RT @politico: Perry calls for climate change debate, says he doesn't know Trump's stance https://t.co/XkNlZr56SE https://t.co/mlqpetsFyC",977028 +@brhodes Touché! NYT loses credibility by doing this. There is no scientific doubt​ that climate change is happenin… https://t.co/uLWu0ZI7aX,127189 +RT @wef: Best of Davos: How can we avoid a climate change catastrophe? Al Gore and Davos leaders respond…,997627 +RT @newscientist: People prepare to fight their governments on climate change https://t.co/YlweEG7QVD https://t.co/8kdzTRxl6d,146296 +RT @TomvanderLee: A good read: ‘Moore’s law’ for carbon would defeat global warming https://t.co/7t9EfUoWtb,68755 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,969351 +RT @kyrasedgwick: Devastated that the one binding agreement to combat inevitable climate change has been defanged by our new president @rea…,666496 +"@sanvai kind of already is, climate change and pollution and species going extinct, We were given paradise and are blowing it (up) pun",742828 +"RT @climateprogress: Scientists know storms are caused by climate change. They just need to tell everyone else. +https://t.co/1aiiP2VGrd htt…",594821 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",248163 +Rethink 'carbon' to make CO2 work for climate change solutions https://t.co/sqjFzN2Vee,212783 +@SenFeinstein Fake news. Climate cooling-60s-80s;climate warming 90s to present; now climate change- it is always c… https://t.co/IoquEYZb92,530408 +RT @LeoHickman: British scientists face a ‘huge hit’ if the US cuts climate change research - quotes @piersforster @SABatterman etc https:/…,271077 +RT @MattMcGorry: Important article on need 2 not make #NoDAPL JUST about climate change thus erasing the struggle for Native rights…,29116 +RT @AlexCKaufman: President Trump is pulling out of the Paris Agreement the day Exxon shareholders vote on stronger climate change policies…,97327 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,103934 +There's no proof humans are causing global warming | Whidbey ... - Whidbey News https://t.co/KRaCosCmmS,5281 +Hey @realDonaldTrump tell hurricane Harvey that global warming is a hoax,966764 +RT @AstroKatie: Governments of several world powers are failing us on climate change. We need to act without them if we want any hope for t…,833394 +Al Gore says that Trump’s daughter Ivanka is very committed to climate change policy that makes sense….... https://t.co/iZsEkvw8JR,769034 +90% of scientists studying climate change were paid to falsify their results - still confused https://t.co/LVTkTCDGNt,427885 +@DanRather the game's up. You've been bribed for YEARS to push BS global warming so that the globalists can RAPE us with a huge carbon tax,101015 +"G20 Summit: Counter-terrorism, climate change may hog agenda https://t.co/NtnBvtNSfa",135053 +"Tillerson: Exxon spent billions DENYING climate change, dealt w/ dictators, NO diplomatic experience. @SenRubioPress",445073 +The good thing about @realDonaldTrump is that his policies will lead to a dignified mass suicide via climate change,594718 +"RT @SteveKoehler22: If by global warming you mean the world +starting to warm up to Donald Trump.... + +then NO ....there is no global warmin…",485337 +I pray to the day that America rely on scientist and meteorologist more than animals on whether or not climate change is true.,652031 +Legend @simoncbradshaw -#COP22 climate change talks making progress despite Donald Trump's shadow https://t.co/QfQMko1gn5 via @RAPacificBeat,295823 +RT @ClimateActionWR: Gender equality associated with climate change was a big topic at #COP22: https://t.co/NletbKnED5 [@momentum_unfccc] #…,898107 +"RT @frodofied: We believe that Labor Unions are good for America and we actually know, not believe, that climate change is real. We believe…",621822 +RT @FT: Martin Wolf: That the US presidential campaign has unfolded without a focus on climate change is astounding https://t.co/wlPX49VQrT,593768 +"Or will you revert2 your FORMER beliefs n global warming,abortion& that stupid wall? AttentionWhore genuflecting2 T… https://t.co/ZgGKtkSiVY",724899 +"RT @polNewsNetwork1: Thanks to Trump, NASA's new budget will avoid wasting money on climate change, and focus almost entirely on space a… ",87739 +"@elonmusk 'Am convinced global warming is manmade so I'm leaving Paris in my jet, leaving a huge carbon footprint,… https://t.co/2j63f3qGNb",830073 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,142961 +"RT @Conservative_VW: Finally a Real SCIENTIST��‼ + +There has been no global warming in the last 17 years despite increases in CO2 concentr…",61106 +Video: Conservative can lead on climate change. Why is @FoxNews in the way? https://t.co/sXGKep5NYx,221043 +RT @KazmierskiR: I don't know if we can stand all this global warming. 🙄 https://t.co/omB1Q2a2oL,696913 +Not necessarily stupid. Might need to get used to eating bugs as ravages of climate change mount. https://t.co/EUB4B2gIOm,295268 +@ginaaa climate change is real people!,753928 +RT @nowthisisliving: I was busy thinkin bout ... how @realDonaldTrump doesn't believe in global warming and half my friends homes are flood…,649950 +RT @climatehawk1: EPA Nominee Pruitt downplays #climate change threat to oceans | @jackcushmanjr @InsideClimate…,238297 +RT @kwilli1046: Guy who founded the weather channel and says global warming is a complete hoax based on faked data https://t.co/ilxCj4MT9y,265204 +Sir Andy Haines: Tracking effects of climate change on public health: Earlier this month the… https://t.co/FCqI6LuKym | @HuffingtonPost,19559 +RT @bulleribio: I will continue to teach the science of evolution and climate change in a public school that serves students of all stripes…,305511 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,992050 +RT @sorola: Let's fight global warming together. Crank your air conditioner & open your home's windows for 1 hour. Together we can make a d…,346418 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,82564 +RT @HeatherMorrisTV: I've been behind climate change for almost ten years feeling like an outsider. It's nice to… https://t.co/ZNREizOGEG,212312 +RT @document_news: “Before the Floodâ€: Leo DiCaprio’s climate change doc gets record 60 million views. #BeforeTheFlood #climatechange https…,150821 +RT @CozyAtoZ: 'How we know that climate change is happening—and that humans are causing it' https://t.co/0DkakDqnP8 #science #feedly,680282 +Enjoy this weather now because we're all about to burn in hell with global warming.' 😂,711087 +"RT @BernieSanders: The stakes are enormously high. Literally, in terms of climate change, the future of the planet is at stake. https://t.c…",883893 +"RT @AnjaHuffstutler: I just found out someone I followed is a climate change denier. And apparently a Trump supporter. + +See, trans people…",360801 +"RT @jilevin: Minutes after Trump becomes president, White House website deletes all mention of climate change… ",578270 +"For 12 years, plants bought us extra time on climate change https://t.co/iWSLpOhx1A https://t.co/mDcJUcdfNI",788765 +RT @intlspectator: UNITED STATES: Trump is consulting on how to withdraw the US from the Paris climate change deal,684593 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,177297 +"RT @SenSanders: On virtually every major issue — raising the minimum wage, climate change, pay equity for women — we are the majority",658714 +"RT @MindOfMrCallum: I hope that, after refuting climate change, Trump refutes the 'Theory' of gravity and floats the fuck away. #ElectionNi…",946725 +"RT @meganamram: 'whoever denied it, supplied it' also works with climate change",935871 +RT @cookespring: @BragginRightz @realDonaldTrump There is no global warming there are scientists who can prove it,453781 +RT @NatGeo: Are we too late to fight climate change? https://t.co/797Rx2UXQA #YearsProject https://t.co/LV2Fy0uuge,370318 +Go into my crew's discord and they're talking global warming shit,702503 +RT @DiscoverMag: Traditional cycles of planting and harvesting are being thrown off as climate change upsets weather patterns:…,278400 +RT @sustyvibes: Sustainable Development and climate change are two sides of the same coin - Ban Ki moon #SustyQuotes,944133 +RT @IziThaBoss: We need to become aware of climate change!!! https://t.co/wqWEoY8ma0,647470 +"Trumps policy's on climate change, if we make it that far, is what's for sure going to kill us.",475065 +RT @ClimateReality: Gallup poll (March 2016): More Americans than ever are taking climate change seriously https://t.co/uVIRF9Ob9w #Climat…,592615 +RT @Telegraph: Brian Cox hits out at BBC for inviting climate change denier on Radio 4 https://t.co/CZydMa2Lvq,579070 +RT @DocGoodwell: Beef production to drop under climate change targets – EU Commission https://t.co/slVXObaTdW,134505 +"RT @meljomur: So @alexmassie this is who the English support, while Scots support an FM who is signing climate change agreements…",642708 +RT @climatehawk1: 'Virtually certain' mountain glaciers' retreat due to #climate change https://t.co/smpTdkcXbn #globalwarming…,167603 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",555272 +RT @sam_sicilipadi: thread! giving indigenous communities their land rights back is proven to improve damage created by climate change…,743195 +"me to my parents: 'wanna know what sucks? you guys are gonna die of old age. i'm gonna die from global warming' +'who cares' +UH, ME. I CARE!",959807 +RT @RedHotSquirrel: £274million spent ‘to fight global warming’ but the Government has no idea where the money actually went. https://t.co/…,217024 +RT @SenatorDurbin: More evidence that we cannot surrender in the fight against climate change like @POTUS wants us to. https://t.co/ss1CuXd…,443267 +RT @plus_socialgood: Next in the #EarthToMarrakech digital surge: @Climatelinks hosts a chat on climate change innovations in 3 key develop…,397017 +If next summer ends up being a month-long heat wave I'm pissing on global warming naysayers.,596814 +"March for Science rallies take aim at climate change skepticism, proposed budget cuts https://t.co/S8LdDFKc7i via the @FoxNews Android app",533952 +RT @_richardblack: Some climate change advice from Lord Farage... https://t.co/4YEiTozX66,800696 +RT @RogueEPAstaff: @Alt_Mars @CBSNews The Trump admin's Red/Blue panels on climate change put lipstick on the pig.,112363 +RT @mj_bloomfield: Here's a nice little learning tool for those teaching the politics of climate change https://t.co/qUW4YcRJQ7,988128 +A from @katewdempsey: Continuing to be a big voice on climate change in every way is really important. #UMMitchellSem,759592 +"RT @asamjulian: 15 more dead because of climate change. Oh wait, nope, it's Islamic terrorism again. https://t.co/2plj8xPqrD",684206 +RT @pablorodas: EnvDefenseFund: Why is Pres Trump attacking climate change efforts that the EPA has been working on for decades? https://t.…,159362 +".@aliterative asks if maybe our worries are displaced, because climate change is going to destroy the world anyway.… https://t.co/3WUHMxoHQv",246328 +RT @MiaFarrow: Trump's EPA chief says carbon diodlxide doesn't contribute to climate change. See EPA website…,304396 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,54264 +RT @rcklr: .@autodesk leads in using generative design to tackle climate change challenges https://t.co/Ut3dbd9v6e via…,908329 +"#ClimateChange #CC Polar vortex shifting due to climate change, extending winter, study ... https://t.co/7UhFTFzXDQ #UniteBlue #Tcot :-(",849716 +"What has she been doing to 'fight' climate change up until now? No, she doesn't get kudos & her father isn't gettin… https://t.co/FPeKwnuznR",424570 +RT @tan123: Climate scam momentum update: 'Cambridge clashes with own academics over climate change' https://t.co/aGeDy6C3IR,133226 +RT @MarshallBBurke: 'This … follows from the basic laws of physics’: Scientists rebuke Scott Pruitt on climate change https://t.co/xJ26IPp8…,624182 +"it appalling. unless climate change is abated, power prices won't matter https://t.co/WbvkoocjZ9",847038 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",534999 +How do you 'not believe' in climate change like... it's happening,514432 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,489534 +"RT @usnews: The Trump administration is denying climate change, but cities and states are fighting back. https://t.co/Uw7gOe3T8g via @usnew…",417355 +RT @markwindows: White House declares 'global warming' funding is ‘a waste of your money’ https://t.co/vj4nVfvqfM via @ClimateDepot,714692 +EPA chief: Carbon dioxide not 'primary contributor' to climate change - https://t.co/RpwS7jHK72 https://t.co/xni2uPAxrO,250868 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/wTCTJoOdgB,192977 +RT @notoriousalex: i am digging this global warming stuff,645212 +"#selfhelp,#survival,#tools Effects of climate change, fourth water revolution is upon us now… https://t.co/wnpBPXEko8",903171 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",214224 +A 200-yr-old climate calamity can help understand today’s global warming https://t.co/1CnV57E95u,332795 +"RT @kimmelman: Hope you will read and share this piece about Mexico City, the first in a series on climate change and cities: https://t.co/…",230188 +RT @MikeBloomberg: We're writing this book because it’s time for a new type of conversation about climate change.…,957788 +RT @NewsfromScience: The Trump administration appears to have walked back plans to scrub climate change references from @EPA's website: htt…,102140 +When you're going to school to fix climate change and to be a climatologist and the future president doesn't think climate change is real,574414 +"Retweeted Geoff Manaugh (@bldgblog): + +Nostalgia for the win. Skepticism about climate change drops when it’s... https://t.co/W229BOMedM",471592 +RT @thehill: Sanders tears into EPA head for saying CO2 isn't a 'primary contributor' to climate change https://t.co/T4689dXKFD https://t.c…,782767 +How is climate change influencing migration? @NatGeo #APHG #APES #EdChat #SciChat https://t.co/D2bDi8QBHV https://t.co/0Nd3L2ozxn,151657 +"RT @CatalyticRxn: Term 'global warming' was more controversial, among conservatives than 'climate change'. Liberals didn't care. #sciwri16",324578 +"RT @BTSbornfirst: Vote @BTS_twt for the #BTSBBMAs Top Social Artist award + +rt to end global warming + +Today We Fight https://t.co/ipYoCS3bcg",999173 +RT @theblaze: ‘Bombshell’ climate-change study could totally dismantle the claim humans are causing global warming…,741669 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,934059 +"RT @mmfa: In short, the media's climate change coverage is a disaster of historical proportions. https://t.co/etot6d9WC2",219327 +"@Vickie627 @JuneSaidF @five15design wasnt that the democrats points in the election? Fear trump! Fear global warming, now hate all who",640084 +RT @philstockworld: I just published “Why we need to act on climate change now” https://t.co/Ruo4UKRefl,865195 +"Here's hoping we can eliminate global warming. Our planet is dying, and it needs our help",577052 +RT @stairfish: If trump doesn't want to do anything against global warming i fuckin hope he drowns first. Incompetent piece of orange,507163 +"RT @usnews: The Trump administration is denying climate change, but cities and states are fighting back. https://t.co/G2nVN3qtU5 via @usnew…",408984 +RT @NRDC: Urge Trump not to threaten our wildlife and wild places or reverse our progress in fighting climate change:…,639773 +RT @MotherJones: Cable news spent less than an hour covering climate change in 2016 https://t.co/47BO4go9j2 https://t.co/z76XcNHNCM,479385 +"RT @EmilyFicker: I wrote about the visible effects of climate change for @MHSNewspaper_, check it out! https://t.co/GmdJq3k7Nz https://t.co…",169503 +Are we really to cool to fight global warming?' https://t.co/8rTDtlBLsn,110462 +RT @AJEnglish: On @AJEarthrise: How are the world's two biggest carbon dioxide emitters [China & the US] tackling climate change?…,251179 +"RT @HillaryPix: Trump Just Told The Truth, And It’s Terrifying: A plan to cut $100 billion in federal climate change spending. +https://t.co…",969955 +"RT @NYTScience: As global warming heats up the Arctic, algae production is way up, and scientists don't know what that will mean https://t.…",933588 +RT @aviandelights: Canberra posts hottest summer ever for max temperature. Maximum summer temps already influenced by climate change https:…,365700 +RT @BAJItweet: African migration expected to rise due to accelerated climate change - UNEP https://t.co/LSGUmmyg2e @africanews,267452 +RT @SmithsonianMag: Peaches are more frequently being grown in cold-weather climates as climate change affects the viability of crops. http…,797195 +RT @DragonflyJonez: Kendrick gonna fool all y'all. He just gonna drop a 18 min track on a jazz beat beboping about climate change tomorrow.,280489 +"RT @petefrt: Dems Are OUT OF TOUCH with People's Concerns, Say 67% Voters + +Obsessed with bathrooms and global warming + +#tcot…",149414 +why is illegal immigration talked about more than global warming :a,942202 +RT @vxktuuris: will you still claim that global warming isn't real when there's food shortages?,603517 +RT @MarkRuffalo: This is how bad things could get if Trump denies the reality of climate change - The Washington Post https://t.co/D0ZwSx5v…,326443 +@GeorgeTakei Don't worry about climate change...here's a secret. It's a hoax to tax us according to our carbon footprint. It's complete BS!,292224 +Moroccan vault protects seeds from climate change and war https://t.co/ILmYeP1432,521526 +Investing to make our cities more resilient to disasters & climate change https://t.co/QonQ1XQOZM @WBG_Cities #ResilientCities #Disasters,960021 +"RT @feeIingmyoats: right wingers: there are only two genders. it's biology. you cant argue with science + +right wingers: climate change is a…",806425 +"6. Modi has acted decisively on climate change, ratified Paris agreement; Trump has said that climate change is a Chinese hoax.",231162 +@seanhannity Embrace truth do you? then call out Trump about climate change and the affects of polluting our drinking water. if not you lie,568815 +The controversy surrounding Bret Stephens' article on climate change reveals just how hypocritical the left can be: https://t.co/qaUn7TOQWU,966665 +RT @T_S_P_O_O_K_Y: @beardoweird0 @20committee I actually have a degree in Environmental Studies - and yes - man made climate change is a ho…,360405 +RT @ClimateCentral: Here's how climate change could flood cities (and states) as the world warms https://t.co/snfRq1je8A #BeforeTheFlood ht…,495872 +"|| Trump taps climate change skeptic Scott Pruitt to Head EPA + +https://t.co/DrL9t1Z03K via @ShipsandPorts",320667 +RT @jeffdrosenberg: . @SenSanders tears into Trump’s 'disaster' of a climate change order ➡️ by @lee_moran https://t.co/5ZShbOCewa via @Huf…,66860 +RT @AFP: ExxonMobil knowingly misled the public for decades about the danger climate change poses to a warming world: study…,581466 +"Want to hear nonsense and propaganda about climate change? Ask Scott Pruitt. + +Want to know the *actual science*? As… https://t.co/FAIYV4f6sw",248539 +BBC News - EPA chief doubts carbon dioxide's role in global warming https://t.co/m5Scm2ZEmt,108857 +"RT @DanNerdCubed: Those interests being racism, sexism, misogyny, wall building, climate change denying... https://t.co/vw9c3Gn43x",644838 +Trump administration suspends plan to delete climate change material: https://t.co/67uXkzIFCY,474280 +RT @lumenaequitas: @JoshNoneYaBiz I hate when global warming runs people over.,787055 +https://t.co/akXkaHTZhM Monday’s eclipse be a call to action on climate change: https://t.co/OOxS4Egcg1,277933 +"@realDonaldTrump Please Don't be stupid with climate change, it's as real as you getting elected is.",273967 +Bitl team is workshopping ways to combat climate change w VR #ideasmadetomatter https://t.co/1Anj6H6fVJ,556307 +Are there even any plausible arguments against climate change???,807648 +I intend to cook longhorn cow as I consider climate change.,51870 +"No, climate change is real; been happening for 4.5 billion years. Giving $ to bureaucrats to stem the inevitable is… https://t.co/cm529HDdNM",94877 +"RT @climatehawk1: Refreshing honesty: ‘Stop lying to the people’ on #climate change, Schwarzenegger tells Republicans…",116574 +RT @JuddLegum: Trump just gutted U.S. policies to fight climate change https://t.co/4CD890aX7N https://t.co/YxIaIKezQR,399562 +RT @JustSommerRay: not letting global warming stop us https://t.co/QgAXS34aVZ,730487 +RT @Brinkbaeumer: #MSC2017 Antonio #Guterres calls climate change and population growth the two main global problems. @VP Pence did not men…,951265 +"RT @EricHolthaus: Holy wow. Remember those kids suing Obama & big oil over climate change? +They just *won*. +Read this: +https://t.co/HnZBICG…",926505 +RT @kates_sobae: climate change is honestly so rude,170438 +"RT @mattmfm: Democrats: climate change is important +Republicans: nope it's a hoax +NYT: there go Democrats again touting boring centrist pol…",372720 +RT @Labmate_online: The effect of climate change on the food chain is huge ðŸ¼ https://t.co/S0O81gdj3w #animals #biodiversity #species https:…,591257 +"Record-breaking climate change pushes world into ‘uncharted territory’ + +https://t.co/Z1yVvcOEnV + +#climatechange #environment #oceans",165101 +RT @ajplus: President Macron is inviting U.S. scientists to France to help fight climate change. https://t.co/DHY2mgCIp5,152577 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,288444 +RT @CBSNews: 'Bring it on': Students sue Trump administration over climate change https://t.co/JPIUzp0hM8 https://t.co/PFeDZXEQMC,57552 +is not correlated to NIMBYs are state legislation climate change their aesthetic by the USDA revive,643771 +Passes House 236 to178. Among grants denounced many of the example studies concerned climate change #ScienceMarch https://t.co/WkANDjsVj5,958204 +RT @luthorszjm: Kara's heat vision is the root cause of global warming. Everything is melting.,320134 +@MarkCCrowley Immelt is picking up where Trump dropped the ball on climate change https://t.co/YmvrvyEx22,210202 +RT @bondngo: What are the facts about climate change and what can ordinary citizens do about it? @andynortondev @IIED https://t.co/eHl7tE8X…,120685 +"RT @grisanik: As I predicted climate change is accelerating : +https://t.co/kLptvFdp9l",326563 +"RT @DavidKirklandJr: Scott Pruitt is right. The sun is the main driver of 'climate change.' + +You don't have to be a scientist to know this…",265061 +"RT @DanMalloyCT: In the absence of leadership from the White House in addressing climate change, it is incumbent upon the states to…",764221 +RT @drewphilips_: Y'all wanna know what's weird? How global warming is real and is like a really big problem skskdldk,177961 +Ocean Sciences Article of the Day - How will New York cope with climate change? (Yale Climate Connections) https://t.co/newn8DbAy2,106628 +"RT @IntelOperator: 'There's an even broader danger to leaving the military to address the threats from climate change.' + +https://t.co/pG6VV…",282903 +@_Makada_ So you believe in that science but not global warming? #Rightwinglogic,981255 +RT @_richardblack: I cannot believe anyone still uses “climate change is bollocks because it was cold todayâ€. Especially in the @FT…,697050 +RT @WorldfNature: This is what climate change looks like - CNN https://t.co/3mR7sG9KIU https://t.co/1Gro5nv8Jg,699241 +"TANUJ GARG: With all the man-induced climate change, I hope something remains of #Antarctica by the time I visi... https://t.co/YD7G397qYP",646970 +"RT @ntinatzouvala: Bernie on the sovereign rights of Native Americans, clean water, climate change. #NoDAPL https://t.co/GyOzMhz2CP",695251 +RT @AnotherDawg: @CaptialBusLoan @ImmoralReport @DarHuddleston Today's global threat is NOT 'global warming'! It is SOROS & son #crookedcli…,832086 +BBC News - Most wood energy schemes are a 'disaster' for climate change https://t.co/5y4u0p8Thh,152329 +The truth' is that climate change is real. Pruitt is a dangerous oil-and-gas shill who doesn't believe in basic sc… https://t.co/fpVXULCNTe,561889 +"How can we escape the quagmire of [#climate change] denial? … just talk about it.' — @alicebell + +[Also @KHayhoe's… https://t.co/T7AETEU3Zc",590212 +RT @pinoshade: @JackPosobiec All these 'smoking guns' are going to ramp up global warming.,914020 +"RT @sallykohn: Oy, for all those in my feed saying weather and climate change aren't related: https://t.co/Bl16HZIlvu",675260 +"RT @tomandlorenzo: Well, now we know that 'covfefe' is Russian for I don't give a damn about climate change.",307271 +@davidsonmark650 @stltoday Why don't you believe in climate change? Maybe that's the question I shoulda asked to begin with,738307 +"Late Pleistocene-Holocene vegetation and climate change in the Middle Kalahari, Lake Ngami, Botswana +https://t.co/cAvWNIgbXE @scott_louis",670025 +RT @lisa_kleissner: To deny climate change is to deny all who are impacted. #Philanthropy and #impinv want to empower a different outc…,140016 +Global 'March for Science' protests call for action on climate change https://t.co/KeNTKi5Tqa https://t.co/ABhiQYXpM6,973171 +@DiMurphyMN Um ... it's climate change and the North Pole is a f'd up as the rest of the world. #EndOfDays,732909 +RT @UN: 12 #globalgoals are directly linked to climate change. The #ParisAgreement is crucial to achieve them.…,153191 +RT @realDonaldTrump: The global warming we should be worried about is the global warming caused by NUCLEAR WEAPONS in the hands of crazy or…,716583 +@EPP @ArielBrunner Isn't climate change just a scam to make the poor pay more taxes?,422296 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,293089 +RT @jayrosen_nyu: Bloomberg is starting a site wholly devoted to climate change and the economics of. https://t.co/iYIn3fzq9J It won't both…,134300 +EPA: Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/aVS3sm1kSy #ScottPruitt,892921 +"RT @khushi_Verma666: #MegaTreePlantationDrive ji GURU JI, only YOUR efferts will save us from global warming, love YOU",465699 +RT @ejgertz: Can a promising-& troubled-technology for fighting global warming survive Donald Trump? https://t.co/S6tZNZwzja via @nytimes…,609512 +RT @nytimes: Obama spoke in Italy about how climate change was imperiling food production around the world https://t.co/z9IAwj7Quv,580483 +New head of @EPA rejects scientific consensus on human activity's link to climate change: https://t.co/AMwR62PAEM… https://t.co/HvHReUkVa4,176298 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,884073 +RT @ATF_udeyyy: Nah global warming is real life shit,172648 +"From Trump and his new team, mixed signals on climate change https://t.co/ocwnCnZWym https://t.co/vvdhSOtts5",395722 +Siberian Snow Theory Points to an Early and Cold Winter in U.S. https://t.co/IvaCFa19Wy via @business So much for global warming!,351392 +RT @SenatorWong: Climate change affects all nations and tackling climate change is a shared challenge that can only succeed if we al…,721553 +"if you ever want to see global warming in action come to NC, we go from 80° to hailstorms faster than trump can say china",681784 +RT @wattsupwiththat: Let the wailing begin: ‘Moral values influence level of climate change action’ https://t.co/0sV7TaJD8v https://t.co/iY…,385663 +"I was hoping global warming was real and I could bore youngsters by talking about snow in England, sledging etc https://t.co/hVNbVwNai4",844602 +RT @KamalaHarris: The goal of the Paris Agreement is simple: reduce fossil fuel use in order to address climate change. Abandoning it = aba…,888673 +"RT @Liza76N: I’m cool but global warming made me hot.. + +MARVOREE DreamTeamGoals",976202 +"RT @PolitiFact: Yes, Donald Trump once said China invented climate change https://t.co/xkMM5PgrMp https://t.co/uo72PCD2PN",846688 +Company directors to face penalties for ignoring #climate change #auspol https://t.co/0I572OeAXg via @Jackthelad1947,954728 +"RT @hemantmehta: Don't worry, everyone. When President Trump does nothing about climate change, Florida will be the first to go.",618950 +starting to dig this whole global warming thing,762599 +RT @NatGeoChannel: One of the easiest ways to help combat climate change in your daily life is to stop eating beef. Here's why:…,539961 +"RT @GreenpeaceEAsia: More than 137 million people in India, Bangladesh and China are at risk from climate change-triggered flooding https:…",550361 +RT @KKelseyBITCHH_: Polar bears for global warming https://t.co/8JsbiG0TfP,407571 +A brilliant sci-fi thriller imagines how the massive floods of climate change could transform Earth… https://t.co/0vRbw4W5Lt,656096 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,378318 +"Science is ok for Lefties to use when it comes to climate change but not ok regarding gender. + +#SituationalScience https://t.co/24jqQn9D69",967793 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,75392 +"Wow, watch the documentary 'Chasing Coral' on Netflix, it's beautiful, sad, and so informative! We need to address climate change now!",177800 +RT @AnimalsAus: .@BillNye the Science Guy re: combating global warming by eating kindly ������ #GlobalWarming #EatKind https://t.co/A7VfLg7aqZ,408225 +RT @MythiliSk: My latest: @g7 blames US for failure to issue joint statement on #climate change https://t.co/qp01WVoSgo,680118 +RT @Jeff_McE: @PhilipRucker @MSignorile I'm sure Tillerson is hiding more than his 'alias' while emailing about climate change. #WhatsHeHid…,297379 +"RT @PolitJunkieM: @tata9064 @BackwardNC @danhomick @JaneTarney +Lamebrain Skarvala is a far-right climate change doubter Unbelievable! http…",527068 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,434966 +Did Donald Trump just kill the Paris climate change deal? https://t.co/h37d71qFdt via @ABCNews,900632 +"Alternative technological solutions for climate change' about to kick off #ClimateChange #PuanConference +#PuanConference",130158 +"Guy on Baggage thinks climate change is a conspiracy +Guy: Why is it so cold?? +Other guy: you’re a dumbass :l + +marry the other guy come on",341406 +RT @LisaClaire9090: Stunning photos of climate change https://t.co/NFP6dDR5yP via @cbsnews,522679 +"RT ReutersWorld: In a rare move, China has criticized Trump's plan to exit the Paris Agreement on climate change:… https://t.co/fLUE2KPnPH",483207 +RT @capitalweather: The whole 'it snowed so global warming is fake' line is getting old. Ppl who deny climate change is real need to genera…,221942 +"Pope Francis appears in ‘climate change’ movie featuring Obama, Clinton, Leonardo DiCaprio https://t.co/5CzqVt7r7d",587012 +I added a video to a @YouTube playlist https://t.co/925Kp7Ga7u OBAMA DESTROYS Republicans on climate change,441095 +Wil Weaton celebrates @sunlorrie's recent schooling on climate change. https://t.co/RQSSueACrs,536195 +RT @SamGrittner: .@BadlandsNPS was just forced to delete all their tweets stating facts about climate change. Here's one that you ca…,43396 +RT @ajplus: Which candidate is going to take climate change seriously?ðŸŒ https://t.co/jDL1NTenQ5,991333 +"Yes, but climate change does make me money. Climate denial make me make me money. https://t.co/fsdHRN7jwu",542338 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,966161 +“Indus people knew how to deal with climate change” -- Cameron Petrie https://t.co/pWsOm9bdjw,209660 +"RT @Myth_Busterz: When illiterate and #JaahilPMModi spoke to students on climate change... irony died a thousand deaths + +https://t.co/81JDf…",653577 +"@NBCPolitics @mitchellreports by climate change, are you talking about the extremist man made alarmist position or… https://t.co/NDAlX4Pt3W",357971 +"2016's 'exceptional' weather proves that climate change is real, say scientists https://t.co/7J0ECzfA0P",407024 +RT @PetraAu: Company directors can be held legally liable for ignoring the risks from climate change https://t.co/ArYEhCswiI,94220 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,638817 +RT @TheDailyShow: .@neiltyson on why climate change denial is a threat to democracy. https://t.co/Q8yVDAy848 https://t.co/arwB8OiSa8,194215 +RT @ComedyCentral: Leonardo DiCaprio met with Trump yesterday to be ignored about climate change.,856259 +RT @glazerboohoohoo: if you don't know a ton about the paris agreement or how dangerous trump is to slowing climate change this will help h…,614917 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",621121 +You and your friends will die of old age while my generation will die from climate change',278551 +RT @JuddLegum: She probably shouldn't have campaigned for a guy who thinks climate change is a hoax invented by the Chinese then https://t.…,106543 +RT @thehill: Sierra Club calls for investigation of EPA head over climate change comments https://t.co/ScRbItLACq https://t.co/T3N6vKXAGL,637263 +RT @sciencetargets: Can business save the world from climate change?https://t.co/2e7bHF9doP By @BiancaNogrady #WeAreStillIn @CDP…,868154 +RT @Independent: Climate change denier who says no one can explain global warming gets completely schooled by someone explaining it https:/…,928749 +"RT @GuardianUS: From 2015: Exxon knew of climate change in 1981, email says – but it funded deniers for 27 more years… ",311979 +"RT @TomiLahren: Folks, the Alt Left. Ignores radical Islam. Blames global warming for terror. Special kind of blissful ignorance. https://t…",299209 +"Some ppl need to get their head out, we caused climate change, we are the only way to fix it https://t.co/DRVIXDtLt4",838786 +"RT @pharris830: Ask yourself why can't we see the WH visitor logs, why are they deleting climate change data, why are LGBT exempt from 2020…",740050 +#socialmedia Trump really doesn't want to face these 21 kids on climate change https://t.co/jTj2wY7dkO,618306 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,125116 +@IntelOperator It's a good thing climate change is a hoax made up by the Chinese otherwise we'd be in big trouble.,943217 +"If you choose not to believe in global warming, I choose to believe the guy wearing the Affliction shirt at the party won't start a fight.",556335 +RT @chuck_gopal: This is when you know this climate change shit is real. https://t.co/BmqVA10VE5,522328 +"RT @tan123: Room full of microbiologists polled: 'How many of U believe climate change is world's #1 threat?' + +No one raised hi…",708449 +"RT @keithboykin: Contradicting @NASA and @NOAA, @EPA administrator Scott Pruitt denies CO2 is primary contributor to climate change. https:…",76467 +RT @Independent: Government 'tried to bury' its own alarming report on climate change https://t.co/rHNgbZzXK8,713495 +"RT @SimonMaloy: just watch, the response to/excuse for this will be that the EPA is already politicized because it pushes a climate change…",317157 +Trump proclaims climate change a hoax as if that will alter the truth. Unfortunately we will all pay the price for his stubborn ignorance!,874864 +Trump team memo on climate change alarms Energy Department staff https://t.co/KptSePmt7Q,769447 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,723661 +RT @HeckPhilly: But climate change and society's view of death will have to change one day if we want to advance our descendants.,169776 +"RT @SteveSGoddard: - @NASA has tripled global warming since the year 2000, during a time when satellites show no temperature increase.…",341817 +"RT @JuddLegum: 4. As scientific evidence of climate change has mounted, Stephens position has remained the same…",279315 +Rep. Lamar Smith took a quick break from healthcare negotiations to tell us climate change isn't real… https://t.co/1sPPFKjT6i,56671 +My hubs is watching @TuckerCarlson make a fool out of @BillNye The Science Guy on FoxNews. TC is tearing BN apart RE: climate change. 😁😁😂😂,586033 +"Ian Gough (@LSEnews): climate change and inter generation justice: needs should trump want, now & in the future.… https://t.co/OLvGkNFRAY",424489 +"If you still think global warming is real, time for 'waky waky...' https://t.co/Lm0pIyR5J2",670559 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,813882 +RT @guardian: Why we’re all everyday climate change deniers | Alice Bell https://t.co/BD9RDcSRgL,743424 +RT @Chris_arnade: NY Times readers care deeply about climate change & their carbon footprint https://t.co/H3mOgGqQMs,998561 +"@SenatorMRoberts Global warming is real. I know the other liberal nonsense has no scientific basis, but global warming does.",35843 +RT @NinjaEconomics: China tells Trump climate change isn't a hoax it invented https://t.co/uzyfIAURZ1,148459 +"RT @shanmutweets: Very good, impactful doc from @LeoDiCaprio got to take big steps for a positive climate change #climatechange https://t.…",141814 +RT @NoNo2GOP: Analysis | EPA chief’s climate change denial is easily refuted by the EPA’s website https://t.co/VXba5mHfAL https://t.co/N0Sn…,899926 +"@ProtectthePope @EWTNGB But at least, the French government doesn't deny climate change, or else they would have to deal with @pontifex",66867 +"RT @PRESlDENTBANNON: We must seek innovative solutions in addressing climate change, like eliminating most of the people.",249425 +But the fight against climate change.,827222 +@mashable @meljmcd We have to get through to people re: climate change. Trump is the anti-change,933298 +"RT @Manly_Chicken: I am now 100% opposed to any regulations against global warming. +Not because I don't think global warming is real,…",717876 +RT @CattHarmony: Is this why the left said climate change is 'man-made'? #Science #ClimateChangeIsReal https://t.co/lZLWBX12K2,76495 +"RT @mehdirhasan: Over past few days, the New York Times has published inhouse op-eds making the case for Marine Le Pen & for climate change…",170533 +"RT @SteveSGoddard: It has been 17 years since the UN said global warming killed us all. +https://t.co/3iPRs71C9b https://t.co/S1quSVbKn3",278 +Displacement linked to climate change is not a future hypothetical – it’s a current reality #COP22:… https://t.co/NvpC18X7Yq,614316 +@IndivisibleTeam save the EPA and continue fighting global warming?,215952 +The effects of climate change will force millions to migrate. Here's what this means for human security. -… https://t.co/h0R78f4ck4,486044 +@sphinney2020 This is wonderful! Coral has been dying because of rising ocean temperatures due to global warming. W… https://t.co/D0xvmaTUZY,565883 +"Kate Brown, other Western North American leaders reaffirm climate change fight https://t.co/UZy4TGC12N via @PDXBIZJournal",333596 +Vox This one weird trick will not convince conservatives to fight climate change Vox… https://t.co/6ufCkB3CdP #hng… https://t.co/FEjJWzvdqV,774118 +"Develped countries hv greatly​ contribted to global warming thru their asymtrical develpmnt policies, onus of corr… https://t.co/sLbScbOQPk",759320 +RT @antonioguterres: Shocked to see effects of climate change - 30% of Tajikistan's spectacular glaciers melted. There's no time to lose…,729321 +"After France, the climate change discussion moves to Morocco. https://t.co/fX9afjP6Rg",734928 +"Mexico's Maya point way to slow species loss, climate change https://t.co/XhKkp2XGub",996973 +RT @drshow: Weds: Dangerous political speech & how it can incite violence. Then: Where Clinton and Trump stand on climate change→https://t.…,263240 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,967543 +Let's take a look at how some of Washington state's reps feel about climate change: https://t.co/iYu3SndQAG https://t.co/iaCGV7vhbr,88271 +RT @ClimateChangRR: Jerry Brown promises to fight Donald Trump over climate change https://t.co/NC6FQRT9h4 https://t.co/ZuyghInkJf,51682 +RT @DineshDSouza: I call this political climate change https://t.co/pWonlMemsB,765829 +@Firegal_01 hate to burst your bubble but man made climate change ain't real and the environments doing just fine.,526501 +The man that Donald Trump wants to oversee the EPA is a denier of climate change... This world is literally fucked,538022 +So that Trump site that's going around? I genuinely and sincerely asked for him to meet with climate change experts and try to save us.,464819 +Trump has no regard for the environment. He doesn't even believe climate change is real,743385 +The Paris climate change deal has become law; an important step towards fighting climate change. https://t.co/yz0NK6xPIN,352378 +@yetiweizen @MarkRuffalo Do you understand environmentalists are -directly- responsible for climate change because… https://t.co/jxdjaPZuxk,896685 +"RT @thelpfn: 1ï¸⃣day left to join the @ConservationOrg Thunderclap against climate change on Twitter, Tumblr, FB. Join us!…",344913 +Chinese & EU officials have been working to agree a joint statement on climate change & clean energy #EUChinaSummit https://t.co/gQiHAkNm3B,103328 +RT @RollingStone: Revenge of the Climate Scientists: Leaked report highlights facts about climate change in the Trump era https://t.co/jY0L…,317955 +"RT @amritabhinder: Germany Bans Meat At Official Functions + +Animal agriculture leading cause of climate change, environment degradation htt…",323535 +RT @ketchup1d: Goodnight everyone except for people that think that climate change isn't real,884118 +What can China do to counter Trump's move to axe US climate change efforts? - See more at: https://t.co/9V4ZL0YgpB,907600 +"Despotism, neoliberalism and climate change: Morocco's catastrophic convergence https://t.co/mWPQgzpKAp via @MiddleEastEye",319388 +"@jawabdeyh true,but the media is also important in drumming up support and highlighting impacts of climate change and the need to plan trees",94543 +"��@CNN: all we can say is Russian, Russia, Russia I say @CNN is why Russia made global warming",906238 +"RT @Marek96308039: @jansims471 For some days, Obama is in Milan and is propagandizing climate change. He does not realize that climate…",166594 +RT @USATODAY: Elon Musk: I'm out of Trump council if Paris climate change deal dies https://t.co/9FCmlPp0di https://t.co/N5QfMdrC2U,498008 +@UNEP climate change.,20718 +@introvertedHue After spending 8 and a half hours outside today I fully support global warming,137232 +How is Al Gore still a thing? If you predict the earth will end in 2012 bc of climate change and instead nothing changes at all ur done.,576299 +#ICYMI: Prof. Paul Rogers examines the disruptions caused by climate change and conflicts in the world https://t.co/KfTScqGHwt,213588 +RT @TaigaCompany: TV coverage of climate fell 66 percent during a record-setting year for global warming - https://t.co/WGD6SVDiFO,745401 +"@seth_gal nobody cares about that stuff anymore, it's sad, global warming is inevitable so literally who the fuck cares about it",490678 +"RT @scottsantens: Yes, we have tornadoes here now in New Orleans. But climate change totally doesn't exist. It's just that freak even… ",407623 +"RT @MacleansMag: Would the pipeline and climate change debates been different under Jim Prentice? According to his book, maybe not: https:/…",57607 +RT @trutherbotred: They push climate change down your throat so you don't think about the massive pesticide and plastic pollution that's go…,874698 +The changes humanity needs to adapt to climate change would cost <0.1% of global GDP #ClimateFacts @ConservationOrg https://t.co/kwxoJdrWvt,708834 +RT @ZeroGenmu: This is why global warming is never being solved https://t.co/GjPALiENIX,698181 +@ClimateOfGavin @ScottAdamsSays @StalinsBoots @hausfath I'm happy Scott talked about climate change. Helped me find Gavin's blog,789444 +RT @Newsweek: Climate change 101: Trump's policies will only accelerate global warming | Opinion https://t.co/Q0eNxY2Xcj https://t.co/25fvL…,846358 +@TuckerCarlson i thought that 100% of climate change scientists believed in climate change.,726457 +RT @WorldfNature: Scientists seek holy grail of climate change in Oman's hills - ABC News https://t.co/ejhvxHEnro https://t.co/5Pu4pGYIa2,721486 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,85593 +RT @CNNPolitics: The EPA chief says carbon dioxide is not the 'primary contributor' to climate change https://t.co/baokrLe2gc https://t.co/…,612031 +RT @TeslaMotors: Rising temperatures put millions at risk as climate change hotspot @third_pole (world's 3rd-largest store of ice) is melti…,338459 +Art Basel 2017: Hypnotic underwater procession tackles climate change https://t.co/AgQTTzmosW,11187 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,64779 +@Boejarnewall global warming is real. Guys I'm super cereal.,257851 +RT @NRDC: Morocco is leading by example in fighting climate change w/ a 52% green energy target by 2020. https://t.co/1CsgdWMS9B via @guard…,222681 +Trump to roll back use of climate change in policy reviews: source https://t.co/KKunLugyF1 https://t.co/X3M00onQHB,85769 +EPA chief: Carbon dioxide not 'primary contributor' to climate change https://t.co/MAPyu62eLU https://t.co/i7cnomsoSs,491695 +"RT @TimothyAWise: Would industry lie to you? +DDT +tobacco +lead +asbestos +radiation +PCBs +DES +benzene +Bisphenol A +CO2/climate change +glyp…",69652 +RT @CNN: Indian PM Modi had said it would be a “morally criminal act” for the world not to do its part on climate change…,978637 +RT @RAlNYBOY: me thinking how this warm weather is bc of global warming but my seasonal depression is gone early https://t.co/M8qaT6JY5P,194315 +Donald Trump doesn't believe in climate change — here are 16 irrefutable signs it's real… https://t.co/i2TYNoHfkU,842272 +RT @sydneythememe: 屄 climate change for desert 屄,566358 +TONIGHT! Turn out the lights and #TurnUpTheDark! Get loud about climate change for #EarthHour's 10th anniversary!... https://t.co/Y0EaVHLQtc,836624 +RT @NextGenClimate: Three things business can do to fight climate change under a Trump administration: https://t.co/bjECCkT4Lw @HarvardBiz,896889 +RT @WHLive: “We’ve promoted clean energy and we’ve lead the global fight against climate change.â€ —@POTUS on the progress we've made to #Ac…,928128 +90 #megacities in the C40 need to raise $375B by 2020 to follow through on commitment to tackle climate change. https://t.co/pclfk4CrpE,32619 +"@zarahs He probably thinks of fires the same way he does global warming & weather. Things just burn sometimes, always have. 😳",4454 +the President of the United States of America thinks climate change is a joke and wants to build a 3000km wall,300730 +RT @NewYorker: Scott Pruitt denies the scientific consensus on global warming and disputes the E.P.A.’s authority to act on it:…,462746 +Google just notched a big victory in the fight against climate change - The Verge https://t.co/xaMSDZjg6c,18230 +RT @guardian: Fiji PM invites Trump to meet cyclone victims in climate change appeal – video https://t.co/ORWjy7XgXR,762818 +RT @anastasiakeeley: Our EPA director went on Breitbart radio and denied that climate change has any relationship to Harvey. https://t.co/p…,786587 +RT @TIME: Gov. Brown vows to fight Trump on climate change: 'California will launch its own damn satellite' https://t.co/qvklrPf6jK,709164 +@marshall5912 @KyleKulinski So many ppl okay with the fact our now president doesn't care about climate change & possibly thinks its a hoax.,310079 +"RT @FT: At $65m, this is the most expensive condo in Miami Beach — but could climate change affect its value?… ",300903 +"RT @IET_online: How does climate change affect 7,000-year-old mummies? 😮 Envirotech Online https://t.co/YsW1EROPq5 #mummy #mummies https://…",311755 +"RT @Seasaver: All seven species of sea turtle are on the @IUCNRedList. Overfishing, climate change, habitat destruction & polluti…",52324 +@CharlyKirby @Seasaver Bellamys published only 1 climate change article edited by climate skeptic Sonja Boehmer-Chr… https://t.co/Yt8hGp4M4E,756349 +"RT @colettebrowne: Today, Obama donated $500m to a climate change fund and commuted Chelsea Manning's sentence. +Trump was sued by a woman h…",360063 +RT @girlposts: if global warming isn't real why did club penguin shut down,679442 +"RT @ProtectWinters: .@realDonaldTrump, the US military thinks climate change is an imminent threat. Listen to them. #100Days #KeepParis htt…",121576 +Teens suing U.S. over climate change ask for Exxon's 'Wayne Tracker' emails https://t.co/VfWphr5oWh via @Reuters,491908 +#NowReading: Gender and intersecting inequalities in climate change studies https://t.co/a2qf2INyrD @Esther_Fahari https://t.co/tjKWSoeGMU,660702 +The Liberal Party's 30 years of tussles over climate change policy .. https://t.co/oAbGoTQsKU #energy,728978 +Curbing climate change has a dollar value — here’s how and why we measure it' https://t.co/VU8VhFJarX,849682 +"RT @ChrisJZullo: #StepsToReverseClimateChange stop electing climate change deniers. We must tackle this problem as a global community, not…",548683 +"RT @davidsirota: Photo background: apocalyptic climate change + +Photo foreground: humanity nonchalantly continuing to burn fossil fue…",277746 +"RT @BradReason: In rare move, China criticizes Trump plan to exit climate change pact https://t.co/vSvaVgeR7R via @Reuters",912506 +March 2017 continues global warming trend https://t.co/nJoPCltBs0 https://t.co/TYZJsYZzxf,261231 +"RT @BadAstronomer: As much of the US freezes, here’s a #tbt reminder that yes, this bitter cold is a sign of global warming.… ",481398 +Cutting cow farts to combat climate change: https://t.co/Ggk6A0xtwa - BBC News - Home #Latest,529619 +RT @iansomerhalder: Speaking of climate change-TONIGHT Is another killer episode of @YEARSofLIVING ! 10/9c on @NatGeoChannel https://t.co/T…,864134 +"Finally, someone backbone: Energy Dept. rejects Trump's request to name climate change workers, who remain worried https://t.co/qiJvfhLmkR",764226 +RT @NeilGreenMidWor: More modelling linking global warming to the extreme weathers we are already facing. https://t.co/TvxTGqUDFf,257799 +Your mcm thinks climate change isn't real and argues about it on Facebook articles about the damage of climate change.,366010 +#Indigenous knowledge key to climate change https://t.co/26dkNcFeQK via @newscomauHQ #climate,578643 +RT @HenryMcr: Great to hear @climategeorge talk about communicating climate change to people not like ourselves @mcrmuseum…,857669 +"RT @nxthompson: To slow calamitous global warming, we may need to bring lab-grown wooly mammoths back to Siberia. https://t.co/livR6FuJ4I",478994 +"RT @XHNews: A top Chinese envoy says China will continue its objectives, policies and measures in combating climate change.…",673788 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",836471 +"The National Park employee who tweeted climate change data, in defiance of Pres. Trump will probably get fired, but… https://t.co/97rNOUA986",5195 +Naomi Klein: the hypocrisy behind the big business climate change battle https://t.co/AEqHRfjeZq,744071 +Yeah you're all dancing and drinking beer while global warming is happening,819993 +RT @ajplus: U.S. Secretary of State Rex Tillerson used an email alias to send and receive info related to climate change while…,105033 +"RT @KatyTurNBC: Trump says he will cancel Billions of dollars to the UN for global warming. 'By the way, no one knows what happens to that…",577219 +RT @mitchellvii: I have discovered the cause of global warming (and cooling)! It's that giant ball of burning fusion in the sky. #WhoKnew?,451731 +"Brace yourself for a bitterly cold winter, as climate change shifts the polar vortex https://t.co/TKrnPz6LIx https://t.co/setORHsbeK",839701 +Hopes of mild climate change dashed by new research https://t.co/mL6ZAVPZPc,873740 +"And yet there are those who say climate change isn't real, hmm https://t.co/GWQf3GdmxO",103273 +"You were the ice berg, and now I'm global warming bitch.",829729 +Acting on climate change is Africa’s opportunity https://t.co/lHySj0Ey6l #itstimetochange join @ZEROCO2_,687709 +"RT @Reuters: In a rare move, China has criticized Trump's plan to exit the Paris Agreement on climate change:…",975580 +@CoachTimSalem Give global warming a few more years,992939 +"RT @ClimateCentral: America “can’t walk out when the heat is on” over climate change, U.K. says https://t.co/ssmelJkfAI via @Newsweek https…",755969 +"RT @rehaanahhh: it was 60° yesterday and now its snowing, but tammy said global warming is a hoax so we have to believe her!!! #snowflake",425274 +Bigger beaches for us yas bitch yas global warming https://t.co/HBXaFEOKCr,449925 +RT @ninaland: Thought of the day: anti-porn feminists are the flat-earthers of the intellectual world (along w/climate change deniers). @Th…,673834 +"A global health guardian: climate change, air pollution, and antimicrobial resistance - ReliefWeb https://t.co/XhU1OJyyXo",242524 +Clinton: I believe in science. I believe that climate change is real. (Convention speech) https://t.co/LsjgmOe0Cu,699239 +my soulmate is probably lost somewhere in the woods fucking some cute black chick w a fat ass & im here reading on global warming. Fun,964461 +"RT @DrJillStein: Trump pretends not to believe in climate change, but he's buying a wall to protect his Ireland golf course from rising sea…",189638 +RT @commonwealthorg: Commonwealth drives strategies to put climate change into reverse https://t.co/Kp8eax4qkk,440494 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,286814 +RT @LisaBloom: We will be the only developed nation in the world led by a climate change denier. https://t.co/tR1DclGWEz,947754 +RT @WorldfNature: The climate change battle dividing Trump's America - The Guardian https://t.co/CTazAqStR9 https://t.co/xDO6SyKMKg,611158 +"RT @Spam4Trump: Trump will go down in history claiming that climate change doesn't exist, while meanwhile the great barrier reef and the Ea…",930418 +"RT @ratpatr0l: Niggas asked me what my inspiration was, I told 'em global warming, you feel me? https://t.co/2U8qrsUNiL",881582 +RT @Slate: The kids suing the government over climate change are our best hope now: https://t.co/AAecrGraLG https://t.co/aX4A6r7KtT,321503 +RT @JammieWF: Must be climate change. https://t.co/hHW9rdYv6k,978268 +RT @latimes: You can now figure out how much you're contributing to climate change https://t.co/UVvBJk9VBL https://t.co/3IAx9ISczr,90863 +RT @insideclimate: Leading scientists quickly denounced @EPA head Scott Pruitt's comments questioning CO2 as key climate change driver http…,461856 +"According to the U.S. Committee on Science, Space, and Technology, scientists have fabricated global warming. + +https://t.co/34OI8Qhp68",159752 +"@realMSTD @IBM @PathwaysInTech if you believe n climate change,no one will stop you from sending them a check or ditiching your car.",893413 +RT @henkovink: NATO urges global fight against climate change as Trump mulls Paris accord https://t.co/PrQhO3ET9V via @Reuters,97582 +"@jjmcc33 this is a story about weather on the east coast and mid west, not about climate change. you can help yourself by reading the story.",70433 +"RT @ziyatong: I find it interesting that a lot of people who don't believe in climate change, believe that Noah built an arc because of cli…",54251 +RT @highlyanne: Teachers: did you get climate change denying propaganda from Heartland Inst? NSTA will trade it for a science ebook! https:…,202195 +RT @HuffPostPol: GOP plots to clip NASA's wings as it defiantly tweets urgent climate change updates https://t.co/M910vXQ3FX https://t.co/s…,410018 +EPA faked biosludge safety data just like it faked global warming temperature data … Shocking truths unveiled in… https://t.co/P1qdsFagr6,505784 +RT @DanNerdCubed: Trump's put a climate change denier in charge of the EPA? https://t.co/iKRrbXRS4f,273223 +RT @lifeaseva: Taking shorter showers and buying reusable bottles won't stop global warming. It's the main result of our agriculture demand…,886247 +"RT @ESAFrontiers: Key drivers of coral reef change—fishing, water quality & climate change—must all stay within safe boundaries…",938271 +"During its earliest time, a scientist over 80 y/o was well aware of the climate changes we face today + +https://t.co/gdqroLmZdK",943867 +#Growthhacking #Startups #PPC #ideas #solution #idea The best solution to eliminate the climate change is in: https://t.co/nAzqrCc1M0,131809 +"RT @lakotalaw: “Our ancestors and our spiritual leaders have been talking about climate change for a long time.” + +Support... https://t.co/j…",617622 +"RT @QuantumAdvisory: When it comes to climate change, are pension actuaries like the frog...? https://t.co/4e8urFZ6CR https://t.co/mViVBjnI…",377222 +we literally skipped winter again in my state thx global warming,477261 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,640045 +RT @nowthisnews: Bernie Sanders wants to talk about climate change and income inequality – not 2020 aspirations https://t.co/rASODRTr3T,965900 +RT @jessalarna: when ur enjoying the peng weather but deep down you know it's cause of global warming and we're all gonna die soon https://…,19444 +"@nickkerr1961 @guardian He's got a lot more stains like racism, bigotry, climate change denial, misogyny. .....",359565 +RT @ClimateCentral: Donald Trump could scrap the Obama administration’s plans to combat climate change once he takes office…,608805 +"RT @alisonjardine: Beginning a new landscape, based on my Telluride series. + +Concerned about a climate change denier running the EPA?…",232495 +"Trudeau to raise residential school apology, climate change with Pope Francis https://t.co/l8gtHS87Zt #CTVNews #CTV #News",123701 +I recall Obama tried to have dissent outlawed on climate change. https://t.co/6a7MVw0NjC,817217 +"RT @LTorcello: If scientists don't talk about climate change, while actual impacts are being felt, the public will always treat it…",635161 +But according to #Trump there is no climate change nor problem whatsoever ... #keepdreaming #houstonflood https://t.co/c80fTpxial,247020 +"RT @SFBaykeeper: A new study shows a link between climate change and SF Bay oyster die-offs +https://t.co/XTlBLVp8PO",617451 +More intense and more frequent extreme weather is a consequence of climate change we’re experiencing right now.'… https://t.co/DAdtOeCTGE,938781 +RT @FAOclimate: #Climatechange goes far beyond global warming & its consequences. Learn more about #UNFAO's #climateaction via…,30759 +RT @Slate: Trump will be the only world leader to deny climate change. https://t.co/thTQM5qEy6 https://t.co/0WvubdXUqu,705452 +"RT @SreenivasanJain: Trump's top picks so far: a WWE promoter, a climate change denialist and a guy nicknamed 'Mad Dog'. And then there's T…",349996 +@NPR No question on climate change? Nobody wants to risk his or job on this question?,119394 +Pakistan ratifies Paris agreement to combat climate change https://t.co/DepwfbxmSk,896443 +UN climate change agency reacts cautiously to Trump plan https://t.co/U2i72kAS7x,719233 +Donald Trump believes that climate change is a myth invented by the Chinese — how does that level of stupidity even breathe unassisted?,607289 +"RT @enriqaye: im tryna SMASH +S- save the bees +M- maintain a healthy lifestyle +A- address climate change +S- support environmental reforms +H-…",303795 +RT @nvisser: I'm in Marrakech at #COP22 -- what big questions do you have about climate change/the environment? Email me: nick.visser@huffi…,123568 +RT @GoogleForEdu: Happy #WorldEnvironmentDay! Let's ensure we celebrate every year by teaching about climate change…,287032 +RT @WayneDupreeShow: Pelosi: Border Wall Will Leave Children Hungry �� How much money did they spend on climate change again?…,914400 +...and then he spouts anti-climate change nonsense and alludes to pro-Trump Birtherism. Then claims almost all clubhouse is pro-Trump. GTFO.,24611 +RT @voxdotcom: A Trump adviser wants to scale back NASA’s ability to study climate change https://t.co/XLdutJfevB,441152 +RT @KimHenke1: Call @EPAScottPruitt 202-564-4700 and express concerns about his stance on CO2 emissions & climate change. He is gambling wi…,100465 +How does climate change affect British gardens? https://t.co/iNkXl5lEkP,257636 +RT @WRIClimate: @CNBC He should have a look at a few irrefutable facts on climate change science that says otherwise: https://t.co/caMZaq9r…,587932 +RT @markarodrig: @MaureenShilaly @ChooseToBFree He's too worried about climate change,323729 +"RT @toph_bbq: Trump picked a climate change denialist, who has sued the EPA, to head the EPA. + +https://t.co/w39W4YVOy0",50830 +RT @NYTScience: Americans overwhelmingly believe global warming is happening. Far fewer think it will affect them personally.…,599546 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,552116 +RT @backdoordrafts: Gov. Jerry Brown warns Trump that California won't back down on climate change - LA Times https://t.co/NCvDBSAWvn,878865 +"@BLKROCKET @YahooNews So what? What we do? Few people will seed that planet when we ruin this one. And, we'll climate change that one.",494211 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,803869 +"RT @altUSEPA: The EPA's climate change web page shall remain in place for now. At least until it can go away more quietly. +https://t.co/TAZ…",882581 +"RT @ben_thurley: “The Coalition Government has abandoned all pretence of taking global warming seriously.” +#climatechange… ",535734 +Pacific leaders to turn up heat on climate change - Seychelles News Agency https://t.co/dbZIqeGj2W,995446 +"A turistattraction needs to collapse before the reality of climate change is taken seriously.. + +https://t.co/Bn4wXnwbpA",318172 +Washington Post - Trump's pick for Interior secretary can't seem to make up his mind about climate change https://t.co/Q3wXPo9wpB,51166 +"RT @coverboyomie: Warm today, snow tomorrow and niggas still denying climate change",801017 +73 degrees on November 1st.. But global warming isn't real right?,447285 +RT @EricHolthaus: The researchers found the amount of global warming might be higher than previously thought once CO2 levels double (prob b…,735991 +RT @MadamClinton: To the world: A man who doesn't believe in climate change is now president of one of the biggest polluters. This will aff…,100505 +RT @unfoundation: We know that gender must be considered in all climate change mitigation efforts from now on.-@jeannettewocan #EarthToMarr…,72085 +Trump's favorite techie thinks there should be 'more open debate' on global warming https://t.co/9J2WqyMbal,844827 +"RT @AmyMek: Let's blame it on Russia today, tomorrow fake news, next up global warming! This is getting really old! YOU LOST! GROW UP!�� #C…",204185 +Trump signs executive order blocking Obama-era action against climate change. We'll see how well fossil fuel profits stop the rising seas.,135358 +"RT @NickRiccardi: Finnish president on threat of climate change: 'If we lose the Arctic, we lose the globe.'",265254 +"France, where “climate change” causes Islamic terrorism https://t.co/ssPWBm186o",426503 +RT @HarvardChanSPH: In a recent episode of our podcast Lise van Susteren discussed links between climate change and mental health…,226392 +"RT @Resistance_Feed: The Energy Department climate office bans the use of the phrase ‘climate change’ . + +Trump is trying to rewrite scienti…",829793 +@RyanMaue r u saying as argument for climate change these stats don't hold water?,822833 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,613321 +RT @dailykos: Maine state rep's new bill forbids discrimination ... against climate change deniers https://t.co/2Jgmt3bDUU,789678 +RT @NAUGHTONTish: Donald Trump isn’t scrapping climate change laws to help the 'working man'. https://t.co/yE57ADLh7l,167452 +RT @Sick_Sage: Unnecessarily contributing to traffic and global warming. Smfh irresponsible. https://t.co/9A81TI8Pb6,134392 +"RT sacau_media: Time for a farmers’ convention on climate change +https://t.co/39LZ3BsZOz https://t.co/SRoxSg7tj5",761645 +RT @UNEP_CEP: We need to improve the data and gather and consolidate information on global warming to prepare for the future - models need…,265477 +RT @LarryT1940: We're in an interglacial period between ice ages. It's not global warming. This has been happening for eons.…,456308 +@jddickson @AnitaDWhite is maxine waters stupidity caused by global warming too ?,928781 +"RT @RealAlexJones: The latest globalist witch hunt is on as NYT declared incoming EPA head, Scott Pruitt, a “climate change denialist.” +htt…",488311 +RT @ClimateCentral: This is who is leading the world (and who is faltering) on climate change action in one map https://t.co/Cs2qXsnELQ htt…,637257 +@MotherJones whhhuuuut? An Oil man denying CO2 contributes to climate change?? Surely not.,398134 +Palau: on the frontline of climate change in the South Pacific https://t.co/R35GcXAWjZ,291255 +RT @deaddilf69: The iceberg wouldn't be there bc of global warming you dumbass Bitch https://t.co/8Jx4MRhe0s,636686 +RT @NatGeo: The rise in sea levels is linked to three primary factors—all induced by ongoing global climate change. Take a look: https://t.…,691251 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,717856 +RT @ryanstrug: I swear every single 'climate change' video I find has comments disabled. `The debate is over because we'd lose if we had on…,921344 +RT @tinynietzsche: be the climate change you want to see in the world,16525 +"RT @Holbornlolz: Next up + +#G20Hamburg + +Something to do with climate change apparently + +https://t.co/7Sp2rogQRx",738565 +RT @almightylonlon: It's mid November & im outside ... at the park ... with just a tshirt on ... in Chicago this is global warming at its f…,114799 +so much for global warming,64363 +RT @manahelthabet: To those who don't believe in global warming. Giant iceberg splits from Antarctic https://t.co/A5dozkdiOu,349755 +"RT @_CarlosHoy: To keep global warming under 1.5C, we need to accelerate #ParisAgreement implementation &amp; increase our ambition. - ed",709627 +"RT @MarkRuffalo: Because they know climate change is a hoax they started to make things very sad and unfair! Tremendously, very sad… ",896596 +The BBC has been weak on its coverage of climate change via /r/climate https://t.co/5za2XXbuYW #rejectcapitalism #… https://t.co/jJHUOn1reb,126674 +RT @jmsexton_: NY Attorney General uncovers email alias used by Rex Tillerson to discuss climate change at Exxon | DailyKos…,20322 +"RT @JaredWyand: Steve Bannon means bye bye to the climate change scheme we're spending $22,000,000,000 a year on for 'research' + +https://t.…",344127 +RT @romeogadungan: Semua orang sepertinya harus nonton Before The Flood di Youtube. Dokumenter National Geographic tentang climate change.…,380343 +America’s youth are suing the government over climate change https://t.co/KALEtrWL8W by #WeNeedHillary via @c0nvey,431495 +RT @AndySpenceYheke: The effects of climate change are escalating. What next? Monsoon season in NZ EVERY year in the summer? https://t.co…,666836 +"RT @JooBilly: The problem w/that is climate change is now a matter of national defense--nowhere is that more true than Houston. + +#Harvey",979256 +RT @veroniqueweill: .@AXA is committed to & investing in reducing global warming @JL_LaurentJosi @AXAUKCEO @AXAChiefEcon @AOC1978 @AXAIM ht…,522596 +"MarketWatch: Trump EPA chief Pruitt rejects link between carbon dioxide and climate change https://t.co/fhkJ1eNDam + +Trump EPA chief Pruitt…",922437 +Al Gore offers to work with Trump on climate change. https://t.co/nVsUonKdar,936407 +"reason for global warming and lack of rain +And solution + +https://t.co/FGStSvRgnL + +Please watch this",177547 +"RT @nybooks: Like tobacco companies denying that smoking causes cancer, Exxon spent decades hiding the truth about climate change https://t…",854940 +RT @jelle_simons: Leader of the 'free' world on climate change: https://t.co/ARNZ9x0mPG,219086 +"RT @sleepingdingo: .@mikebairdMP Actually, I think the land clearing laws are worse. Direct impact on global warming! Please reverse t… ",285478 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",376394 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,278668 +nuclear war so that don't have to worry about climate change. https://t.co/XiyIkDApYv,803944 +"Is Charles Koch a climate change denier? Charles Koch would say you’re asking the wrong question. + +“Obviously, if... https://t.co/HHOOmWLieN",919590 +RT @GuyKawasaki: Everything we need to know about the effects of climate change in one terrifying graph. https://t.co/rKAJZYEt4I,671551 +"RT @PopnMatters: Stabilising population helps solve poverty, climate change, biodiversity loss, resource depletion, hunger, the list…",944137 +@tiniebeany climate change is an interesting hustle as it was global warming but the planet stopped warming for 15 yes while the suv boom,794925 +"RT @Dory: Me: *Enjoying Life* +My brain: you're broke, a nuclear war could start soon, and global warming is getting worst https://t.co/aNfZ…",756835 +RT @NewYorker: A lot of the confusion about climate change can be traced to people’s understanding of the role of theory in science https:/…,485914 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,60176 +"Why President Trump will be awful for clean energy, climate change fight via @FortuneMagazine https://t.co/anegB7P6pl",45335 +"RT @RepAdamSchiff: We believe in dreamers, climate change and healthcare for all. We build futures, not walls. We are Californians. We are…",155423 +"RT @markitgirlz: With Trump as president, China—China!—will be the world’s biggest champion of fighting climate change https://t.co/shkOROo…",777221 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,302729 +@realDonaldTrump Ur going to compound climate change with ur anti environmental stance. New $$ making endeavor gas… https://t.co/xxvlHunfP8,270476 +"Hanson visits reef to dispute climate change. + Senator Pauline Hanson has slippe...https://t.co/YL8R2uRnin",564907 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",868071 +If you don't think freedom of speech is under attack ask yourself why the EPA has a gag order and can't discuss climate change.,511137 +be hate inchworm thymes global warming maroon mcchicken is marina,765166 +@realDonaldTrump NASA provides proof of climate change. I'm sure you could talk to them yourself. Please do that. https://t.co/wBGyncL5dP,686589 +"RT @TheAuthorGuy: Hmmm, climate change witch hunts? And still 32 days 'til inauguration. +https://t.co/EIOlsb20YH",179460 +Government facing legal action over failure to fight climate change - The Independent https://t.co/bvcRS6sY6Z,979548 +No @VaiSikahema it's not just 'summer there'...it's called global warming. This isn't normal.,161158 +"RT @JoyAnnReid: So the federal govt won't be fighting climate change for the next 4 years. They *will be fighting abortion, voting, healthc…",122086 +RT @AMZ0NE A SciFi author explains why we won't solve global warming. Read the blog. ▶https://t.co/SkfzcYglrf #amreading,242717 +RT @davidsirota: Most climate change denialism is a reflection of,820265 +RT @washingtonpost: CDC’s canceled climate change conference is back on — thanks to Al Gore https://t.co/rsgScuTXxn,301262 +RT @nokia: Our followers say stopping global warming is a top priority in the future. How can technology fight climate change?…,548778 +"RT @papermagazine: The LGBT, climate change, HIV/AIDS, and disabilities pages have already been removed from the White House website… ",50847 +RT @Kathleen_Wynne: We've reached our 3 billionth recycled container! Thanks to everyone fighting climate change by keeping cans & bott…,816109 +"RT @genemarks: America’s loss is China’s gain: Trump’s stance on climate change is a gift to the Chinese +https://t.co/xHe4u4oIeb",529955 +@carolinaluperc @NCStandards global warming is some serious shit,223003 +@NYCMayor We all know climate change is real your dumbass. It's called the ebb and flow of Mother Nature. Go read a book you hack,306003 +"RT @AstroKatie: Seems much of global warming denial these days is data nihilism. Lots of 'you can't possibly know!', little substantial arg…",670436 +RT @parthstwittter: how can our snow have melted if climate change isn't real? @absltly_haram https://t.co/4Bqikjj4oK,927913 +RT @GlobalGoalsUN: One more day! The #ParisAgreement on climate change enters into force on Friday. Ban Ki-moon needs us all to take a…,797806 +RT @nowthisnews: Al Franken is the master of humiliating climate change deniers https://t.co/8yu54IPI3P,518697 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,320211 +RT @NYTScience: Trump has called climate change a Chinese hoax. Beijing says it is anything but. https://t.co/tPCyXdfKAC,312148 +"Do you believe that recent climate change is primarily caused by human activity? +more: https://t.co/CuNMYc00Hw https://t.co/zQUeX3QTKN",703919 +"RT @PiyushGoyalOffc: India’s clean energy share to reach 46.8% by 2021-22; will achieve committed climate change goal much earlier +https:/…",951694 +RT @NYTNational: Trump has called climate change a hoax. Now he has the chance to destroy efforts to beat it. https://t.co/i9hdsPig9Y,78201 +Six irrefutable pieces of evidence that prove climate change is real | Popular Science https://t.co/IQ8KowQQBf,178353 +RT @NathanJonRoss: 17 US states together filed a legal challenge against White House efforts to roll back climate change regulations https…,856674 +RT @ProPublica: Weather Channel attacked Breitbart News for a post last week that denied the existence of climate change. https://t.co/NY8m…,88796 +RT @SpiritualSmoker: it's absolutely disgusting how big of a problem climate change it yet nobody seems to give a fuck,763171 +RT @richardbranson: 8 ways you can make a difference to climate change: https://t.co/vVz3HupO4l #readbyrichard https://t.co/5Zi4VXbbij,961797 +RT @tan123: 'Senior Nasa scientist [Gavin] suggests he could resign if Trump tries to skew climate change research results' https://t.co/M0…,331941 +@truth_2_pwr_ @Slate In a PBL study only 43% of meteorologists surveyed even believe in man-made climate change.,61059 +"ProudlyLiberal2: RT ChrisJZullo: Karen Handel opposes marriage equality, climate change and would outlaw abortions. Make an impact #Georgia…",228395 +"RT @Reuters: Budgets and business, climate change, oil prices and protests. Get your headlines in the Morning Briefing:…",906839 +RT @usachemo: @ActinideAge @tder2012 More proof that climate change has a religious aspect that sometimes overshadows the scientific part.,796076 +"thefirsttrillionaire Red, rural America acts on climate change – without calling it climate change… https://t.co/Zpe8DTW3RB",550181 +RT @umSoWutDntCare: @MrJamesonNeat @PatrickMurphyFL Florida you need Dems in office to get things done with climate change! #VoteBlueNoMatt…,584668 +RT @billmckibben: Mildly Disturbing Headline Dept: 'Stratosphere shrinks as record breaking temps continue due to climate change' https://t…,858574 +#BeforeTheFlood a documentary on climate change ðŸ³ðŸ¼ðŸ§https://t.co/vkSGOpO5fE https://t.co/ad7ef58YPF,397634 +@rainbowscome @billmckibben Exactly! It's address climate change or slowly kill ourselves,774584 +Angela Merkel promises to take Donald Trump to task at G20 summit over climate change via /r/worldnews https://t.co/LsBf0ghrrX,376780 +Hurricane Dineo hits SA hmmm and global warming doesnt exist according to some lmfao SA doesnt get this global warm… https://t.co/csAy0QGd5n,571842 +RT @Mensvoort: Holland before the dykes (500 AD) looks a lot like Holland after a global warming catastrophe.…,598952 +RT @EcoInternet3: California lawmakers passed a landmark #climate change bill — and environmental groups aren't h...: Business Insider http…,251053 +"I generally avoid posting politically charged material, but as a scientist I'm dismayed that many world leaders still deny global warming.",156160 +"@curticemang @JPJones1776 @CDNnow No. Chelsea has connectedness, child marriage and climate change going for her!",209792 +RT @_ajaymurthy: The last time Bill marched was to stop action on climate change. He also called Helen Clark a cow. There’s that ba…,623700 +RT @jiljilec: bees are dying out & climate change is destroying our environment yet the nigga I want has the audacity to act like…,386349 +RT @COP22_NEWS: #climatechange: To deal with climate change we need a new financial system #p2 https://t.co/XUbIM5wvej https://t.co/n44pUJ6…,975607 +"RT @NaomiAKlein: In approving Keystone XL, the State Department 'considered a range of factors' - not one of them was climate change https:…",710461 +We need a democratic president- the Democratic Party is the future! ������they embrace climate change!����,414286 +RT @climatehawk1: 2nd Wisconsin state agency has solved #climate change by removing mention from public website…,504386 +"RT @GlobalWarmingM: Ta Prohm’s haunting ruins are also a 1,000-year-old climate change warning - https://t.co/bfpdRP9Jx2 #globalwarming… ",615210 +RT @LibyaLiberty: Best climate change advice: https://t.co/GU35pzw3iA,686504 +RT @Exxon_Knew: 'ExxonMobil has a long history of peddling misinformation on climate change.' @elizkolbert in @NewYorker #ExxonKnew https:/…,201360 +RT @CNNPolitics: The EPA chief says carbon dioxide is not the 'primary contributor' to climate change https://t.co/tx0NLedD6H https://t.co/…,477876 +RT @Sanders4Potus: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump th… http…,857523 +"RT @WomensInstitute: Make, wear and share green hearts in Feb to #showthelove for all that could be lost to climate change #WENForum #whywo…",65576 +"RT @handsock_butts: Reporter: Trump, what are your thoughts on global warming? + +Trump: Rearrange 'Miracles' and you get 'Car Slime' This me…",311290 +RT @AP: VIDEO: New study says Earth will lose 10 days of mild weather by end of century because of global warming. https://t.co/hMlUsJhOn5,354703 +@albertacantwait @paigemacp - I guess climate change isn't real.,713717 +"@climatebrad @elonmusk Musk prioritizes NewSpace over environment - look at him fundraise for climate change deniers +https://t.co/0QZs4nzVUD",3484 +Energy Day comes as major companies lead the fight against climate change https://t.co/xEFmnRSVeJ,333986 +@funtrouble1 So what you're saying is because he has the educational background to understand the science of global warming you mock him.,433077 +RT @Descriptions: if global warming isn't real why did club penguin shut down,987845 +RT @uchinatravel: #GameofThrones' @NikolajCW and @GoogleMaps are showing climate change in Greenland https://t.co/yTJkPZ54sl……,487343 +He's not protesting climate change he's protesting inaction and insufficiency of action on climate change! https://t.co/ujFWxjiAZg,389631 +Theresa May says she won't address climate change at the G20 summit https://t.co/5784fELpZx https://t.co/f3KMDQB1Hz,349078 +"RT @NPR: The German chancellor had described G7 climate change talks as 'very difficult, if not to say very dissatisfying.' https://t.co/uw…",110116 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/6sR48wg6e4,853938 +RT @climatehawk1: Wisconsin state agency solves #climate change--just deletes it from public website https://t.co/v12i9R9wYH via…,280471 +"RT @NatureNews: The East Antarctic Ice Shelf is beginning to reveal its vulnerability to climate change, and scientists are worried…",528472 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,148108 +"RT @thenatehelder: When I'm on adderall thinking about finals, dark matter, climate change, and bees dying https://t.co/3xjBVLRSkb",344553 +when will people start talking about the climate being a human right? climate change is about human rights.,916759 +RT @ChristopherNFox: Merkel seeks to bolster support among #G20 members for tackling #climate change ahead of G20 summit on 7-8 July https:…,259516 +RT @kfhall0852: France's President is bilingual & believes in climate change. Our President cannot even speak English & thinks grav…,961234 +@aatishb @AstroKatie That the operator of @HouseScience thinks it is acceptable to harass people traumatized by climate change is horrific.,423634 +Post Edited: Trump ‘set to pull out’ of Paris Agreement on climate change https://t.co/bkksuiGf1X,857805 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,397365 +"♥The Taiwan government should apologize to the whole world, making air pollution caused the global warming. + +https://t.co/MPX4PhRDVP",857555 +"RT @dickfundy: Day 49 + +- EPA chief says carbon dioxide doesn't contribute to global warming. +- Flynn concealed foreign lobbying work from J…",989563 +"RT @daraobriain: Trump staffer Mick Mulvaney, wearing a Shamrock, announced an end to Meal on Wheels and climate change research. Happy St.…",288858 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,29623 +"Stopping global warming is only way to save GreatBarrierReef, scientists warn: https://t.co/DZxIQX9xJ9: #AdaniMineEnvironmentalDisaster",296324 +RT @tilc9: David does not mess about. Brilliant as per. If Attenborough isn't enough to get people to take climate change seriously.. #Grea…,195452 +"RT @BasedElizabeth: Liberals are more worried about Islamaphobia (which I believe they invented, kind of like global warming) than they are…",89006 +RT @KewGIS: Coffee and climate change in Ethiopia https://t.co/ud6CUXD3tD,685999 +RT @thelizarddqueen: have you ever heard of animal agriculture? Also known as a leading cause of climate change? https://t.co/kt6I7vFsX0,953360 +"https://t.co/dG4W1CTvdz Counting the cost of pollution and climate change, wind energy is much cheaper than burning… https://t.co/VwgGkxczua",398016 +Zombie health care bill dies in DC while bipartisan majority moves climate change bills in CA. Know hope.,23380 +RT @wef: Knowing about climate change doesn't make you care more. Your political beliefs might though https://t.co/W774R9nruZ https://t.co/…,858247 +"RT @sciam: Science and the Trump Presidency: What to expect for climate change, health care, technology and more… ",251406 +"RT @KHayhoe: How do we know this climate change thing is real - not a natural cycle, not an elaborate hoax? https://t.co/MvAWypaOJe #global…",892567 +RT @MailOnline: Scientists say climate change IS real with 'no room for doubt' https://t.co/AtetDXN1lz,544308 +"@realDonaldTrump Oh please. We have failing infrastructure, climate change (it's real), Flint water, cutting all se… https://t.co/QTztUs5aLk",736038 +Former President Obama is giving a keynote address on food security and climate change... https://t.co/XrVXFFZzII b… https://t.co/HQ4aXacz0o,788588 +RT @ProfTerryHughes: Minister's Op-Ed on Protecting the #GreatBarrierReef. No mention of tackling #climate change. https://t.co/bRVLto0enq,422746 +China 'laughed!' at Obama’s climate change speech,839256 +"On racism,global warming,and immigration policies,Poets of America take on Trump! https://t.co/XqDOAtMKmB",151320 +"RT @drvox: My new post: New research shows: yes, Exxon has been misleading on climate change https://t.co/JUGsu8yM5f",306785 +"It's not global warming, but cooler temperatures are the most pervasive throughout most of US: https://t.co/bMehhkkNw2 #climate",847300 +"RT @xoapatis: @bbhzeo @bynfck Gue tu bingung, apa hubungannya sm global warming",992698 +RT @9GAGTweets: Major causes of global warming https://t.co/fD2kbo0ZHh,659398 +RT @teenagesleuth: HRC used Obama's time machine to start the Industrial Revolution so she could use climate change storms to make Texas re…,147593 +"@Susan_Hennessey Long list of things more serious and immediate than climate change: e.g. Putin, gene drives, Pakistan/India nuclear war.",145217 +"RT @ClimateReality: Protecting our public lands, safeguarding our air and water, and acting on climate change shouldn’t be partisan iss… ",223963 +RT @nowthisnews: Listening to Barack Obama talk about climate change will make you miss common sense #tbt https://t.co/KmjYjBshIV,810561 +@realDonaldTrump I swear to god if you do nothing about climate change we are all going to die from prehistoric ice diseases. Congrats.,291291 +His opinion: The challenge of climate change: https://t.co/IhOhTk9zfM,703836 +RT @climatestate: Al Gore’s new climate change movie arrives just in time. https://t.co/471qPva31U,211575 +@MeredithFrost @gangwolf360 @artistlorenzo Brilliant! Art can do a lot to promote action on climate change. This highlights that.,238579 +"RT @Heritage: 23 environmental activists, trial lawyers, and academics came together to shut down dissent on climate change—using… ",210624 +"@themadvalkyrie you're right, global warming is already an issue. We can't pollute the air more.",819555 +RT @MJVentrice: Climate Change is something that is realized in the troposphere. I'm not aware of research regarding climate change's impac…,558154 +"@databreak Geez, that's HOT! Mail melt 2? +Can it be that global warming thingy? +Nah, Trump said it's a hoax, & he's… https://t.co/FiYFulklEa",592357 +RT @citiesdiabetes: The link between health and climate change is strong. A common vision for urban policy that includes health serves…,276482 +RT @PMOIndia: SCO can devote attention towards climate change: PM @narendramodi,673932 +RT @preston_spang: It's November 1st and the high today is 85° yet somehow people still say global warming isn't real. 🙃🙃🙃,995721 +RT @PublishersWkly: Stranger than Fiction: Why won’t novelists reckon with climate change? | @thebafflermag https://t.co/JItwCqGUXM,592147 +RT @edyong209: Trump’s “hoax” tweet has set a ridiculously low bar for his nominees on climate change https://t.co/J1OvWh6xsl https://t.co/…,773618 +RT @EnvDefenseFund: Historic news clips reveal that scientists forecasted the effects of climate change as early as 1883. https://t.co/35d7…,684165 +Nelson presses Wilbur Ross on protecting climate change data https://t.co/p4s9UqdjAO,350641 +RT @clairecoz: 'We used to grow apples here. Now we grow oranges' - how climate change is changing life in Nepal's mountains https://t.co/x…,87764 +"RT @Trump_ton: If you live in Texas, voted Trump, deny climate change and believe God sends storms as a punishment - hope you're enjoying a…",272814 +"These days temperature in Milan, Italy should be around 0°C. It was 16°C at 10 AM today. Call global warming a theory.",435767 +"RT @ImeldaAlmqvist: Brief message from a 13 year old shaman about reversing global warming! + +https://t.co/AsteUGKdNG",62657 +@foxandfriends the people that push climate change are the same that push segregation racism and we're Grand dragons of the KKK Democrats,296443 +"DUP 'the anti-abortion (...) party of climate change deniers who don't believe in LGBT rights'. + +Bigoted Healy-Rae… https://t.co/nYzeTRCQcX",263147 +"@KADYTheGREAT Aww that's no fair! I sent him, but global warming ��",671827 +"It's November and this is the forecast, but sure climate change is a hoax 👌ðŸ¼ https://t.co/V6Aq0FvcXJ",928178 +This is not climate change!!! This is the wrath of God upon the wickedness of mankind.The only hope is Jesus Christ… https://t.co/ErIaM2TZKV,467586 +"Scott Pruitt, head of EPA, isn't so sure carbon dioxide drives climate change https://t.co/2iQ2nFTBpa via @Mic",755440 +World leaders duped by manipulated global warming data https://t.co/er0fRQJQyC via @MailOnline,254496 +RT @RepMarkTakano: Since our fed agencies are no longer allowed to...I want to share some climate change facts that @realDonaldTrump doesn'…,460932 +"RT @patagonia: If our elected leaders fail to approach the environment & climate change as serious issues worthy of urgency & action, it wi…",147670 +"RT @daveanthony: If the Great Barrier Reef can die and the deniers don't bat an eye, it's time to get militant about climate change. A huge…",569718 +RT @BarbieBee63: @FREEDOMPARTY2 God said if you remove Him from your land He will make it a wasteland. It's not climate change but a…,643831 +RT @spinosauruskin: People are actually using the 'plants need CO2' argument as a rebuttal to climate change https://t.co/umGAiv8i6V,886969 +RT @yoginibear11: Wait--they want to fight climate change? Is that a misprint?😳 https://t.co/ZIyRWedoUQ,232075 +"RT @IslamicReliefUK: 'The Earth is green & beautiful and Allah has left you as stewards over it” – Muslim + +Tackling climate change is ve… ",109532 +"Because if you are a denier of climate change, you are a denier of your own existence.",468568 +RT @YahBoyAang: I blame the Fire Nation for global warming,4936 +RT @lordstern1: My new op-ed in @FT about China's leadership on climate change: https://t.co/QiPwXuFfNb,203154 +"RT @ABC: Trump team compiling names of Energy Department staff who worked on climate change policies, document shows… ",27673 +"@GodandCountry51 @megynkelly I know it's hard for you people to grasp, but this is CAUSED by climate change.",129667 +"RT @StopEatingBees: If climate change is real, how come I ain't seen any climate dollars? + +#IAmAClimateChangeDenier",98126 +"RT @krauthammer: Obama fiddles (climate change, Gitmo, now visit to Havana); the world burns – as Iran, Russia, China, ISIS march. https://…",279960 +RT @CrazyinRussia: Russian haven't got time for your climate change bullshit. https://t.co/r4HUPHiZqR,417611 +"RT @Mod_Ems: Mon. temp -5°F (with wind chill). Thurs. 65°. I'm just relieved there's no such thing as climate change, or we'd see some REAL…",179502 +"So this is winter now. I'm not complaining, but people who say there is no global warming are smoking crack. https://t.co/lv5jaMiZbM",649846 +"RT @SteveSGoddard: January 20, 2017 is the day we end the climate change scam. +On January 20, 1977 it was snowing in Miami and hot in… ",972392 +RT @EdinburghMSYPs: SYP supports the Paris Agreement & urges Scot & UK Govt to work with other nations to ensure talking climate change is…,690263 +RT @INCRnews: Investors are acting on #climate change -new doc just released from @AIGCC_update @CeresNews @IGCC_Update @IIGCCnews https://…,844854 +RT @PattyMurray: When we are already seeing the effects of climate change—it’s unnerving Trump would choose a climate change denier to set…,64801 +There's gotta be at least a 70% correlation between who's wearing sweatpants on campus right now and who believes climate change is a myth,725765 +Proud to be part of the fight against climate change @Heurtel @stpierre_ch ; one of #Qc top priorities #QcDiplo… https://t.co/RJDm1qjLy6,500151 +Soon AAP will blame them for global warming': Twitter mocks Preeti Sharma Menon for blaming EVMs fo exit polls… https://t.co/AJS6hVCxNk,137665 +RT @itsmelukepenny: U.S. national parks tweeting climate change facts is an act of rebellion against today's Trump news. Not joking. https:…,327170 +RT @RogueNASA: Trump administration buries a government site designed to educate children about global warming https://t.co/KWVnzX6Oak,737240 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,835581 +"@ericbolling Eric, climate change is a natural process which happens every 500 years. Your male guest is an idiot he drank the coolaid",975161 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,76414 +RT @ClimateNexus: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/KanMC92G2k via @MiamiHerald https:…,957883 +Satellite launched to monitor climate change and vegetation https://t.co/aUyFA4W7s3 #DSNScience #spaceexploration,946476 +RT @scifri: Here’s how to change the mind of a climate change denier. https://t.co/mzU0LaEmck https://t.co/dunJVqJk5u,933294 +I enjoy what I predicted global warming.,854047 +Glacier photos illustrate climate change https://t.co/B9bv0MLMxj https://t.co/bsEP0PFDhp,117233 +@XxSnakeProxX now I'm failing to see the correlation between climate change deniers and their substantial lack of evidence and,270551 +RT @guardian: 'Where the hell is global warming?' asked @realDonaldTrump in 2014. Well... #GlobalWarning https://t.co/3n8F5g9E3e https://t.…,65083 +RT @guardiannews: Bird species vanish from UK due to climate change and habitat loss https://t.co/pSodQ352qU,202684 +INCONVENIENT DATA? Whistle blower says NOAA scientist cooked climate change books https://t.co/A8A8kcxJZC https://t.co/uPfrpv4KAf,64863 +"RT @EcoInternet3: This is what ancient, 3km long ice cores tell us about #climate change: World Economic Forum https://t.co/W9zSLCeSdl #env…",390621 +"RT @devitosdick: trump is president, carrie fisher died, regular show is ending, global warming is real. life is basically stupid at this p…",149562 +"On climate change, Scott Pruitt causes an uproar — and contradicts the EPA’s own website +https://t.co/hFguRWZvsk https://t.co/UN0PdBHiRH",292543 +"From healthcare to climate change, Obama's bold agenda remains incomplete https://t.co/BPdPzaC37C",263451 +"I’d be gay, but I was the World Trade Center, right now, we need global warming! I’ve said if Hillary Clinton were running",40122 +Is global warming real?,573893 +RT @ClimateNexus: Trump says ‘nobody really knows’ if climate change is real https://t.co/9ucnGI1FO2 via @washingtonpost https://t.co/gVPTz…,774671 +"RT @beeandblu: Is he the reason for global warming!? +@iHrithik you make our hearts skip a beat 🙈 +#HrithikRoshan @Hrithikdbest… ",879851 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,86848 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,397160 +@wikileaks the 'science' behind climate change is financed by the same people that control the media you're bad-mouthing. YOU take THAT in.,475194 +With scientists and religious leaders. Oceans and climate change. #COP22 #climatechange https://t.co/2r5f5omzH1,637080 +"RT @NotAltWorld: EU pledges $20bn/yr for next five years to fight climate change despite Trump's plan to pull out of #ParisAgreement + +https…",740039 +RT @kim: Adoption was Junior's signature issue in the same way Ivanka worked on climate change & Melania wanted to stamp out bullying.,925132 +"Tennessee broke a record of over 100 years with the high of 74 on Christmas Day. +Tell me global warming isn't real",629995 +meanwhile america's president-elect doesn't believe in climate change 😍 https://t.co/B2G2FkhF4h,687834 +"RT @iamrajl: Stop by poster 166, if you want to talk about hydrological modelling and climate change! 😀 @ArcticNet #ASM2016… ",869772 +"Top story: China rolls its eyes at Trump over his ridiculous climate change cla… https://t.co/4iduFECBg0, see more https://t.co/bJytaDKdOI",762016 +RT @SebDance: Only hearing the uncritical voices of Brexiters on BBC akin to 'filling its airwaves with climate change deniers co…,926397 +RT @SenKamalaHarris: Our scientific community has spoken on climate change. I want them to know with certainty that I hear them. https://t.…,647788 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,562390 +RT @UNFCCC: Going to @UN climate change conference #COP23 in Bonn in November? Start preparing now with this resource:…,535086 +British scientists face a ‘huge hit’ if the US cuts climate change research https://t.co/xM1mOV7IMz,424682 +Jane Goodall calls Trump's climate change agenda 'immensely depressing' https://t.co/ch8oK051eF,877815 +"@HalleyBorderCol Also, appointing a leading climate change skeptic and science denier as your EPA guy is already a bad outcome. Predicted.",696873 +RT @NasMaraj: Not to be dramatic but if we don't take climate change more seriously we're all going to die https://t.co/Y2PgKVwnbd,475889 +RT @AJEnglish: This cute Penguin colony is at risk from climate change https://t.co/IBMSbIssbX,31358 +RT @infowars: Climate Report to UN: Trump is correct to be skeptical of 'climate change' claims... https://t.co/hhssrar2pc #GlobalWarming #…,378750 +"RT @acespace: Extra Credit: This is a much-needed reminder when facing an issue as large as climate change. Thanks,…",444206 +".@ScottPruittOK Taking on your new job, it makes sense to learn facts about climate change and the environment. #ClimateChangeIsReal @epa",608581 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,728954 +RT @realDonaldTrump: The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,957113 +You gotta be a new kind of dumb to think that climate change isn't real??????,801794 +RT @CarbonBrief: NEW - Guest post: Adapting to climate change through ‘managed retreat’ https://t.co/ucdpLzxTza https://t.co/5Mf172NU9e,518225 +RT @MattBors: Florida. Half the state's going to disappear in ten years due to global warming. They're going for the guy who says it's a Ch…,358103 +"@sallykohn Well, gee. That's called earth cycles which can last for decades. If there is a 'climate change' the cycle will explain it.",680249 +Scientists call for more precision in global warming predictions: Source: Reuters… https://t.co/1Mb6l4J3DQ,330131 +"RT @NatGeo: The ocean is home to treasure troves of biodiversity, and protecting these areas builds resilience to climate change https://t.…",639079 +The reason why there is no global consensus on climate change is that different countries have their own interests at heart. #climatechange,568837 +Inspiring: filmmaker from Odisha wins her fourth National Award for her film on climate change @theLadiesFinger… https://t.co/27ov1ndnCb,674514 +"New York 2014 - buried treasure, global warming, corporate espionage, plucky kids, love, action, community & a plan to end late capitalism ��",408712 +"RT @JonRiley7: Trump denies climate change while Somalia's drought & starvation proves the consequences +@OxfamAmerica…",751683 +RT @AnthonyAdragna: OOPS: EPA left up its climate change information in SPANISH. https://t.co/qv8DxLVEz1 https://t.co/ylas9QyBRL,83788 +@StacyBrewer18 What is funny to me is in his private legal affairs he uses climate change to justify his cases. Then in public denys it.,870105 +"RT @AngelicaJoy__: It's so nice out LOL global warming, we're all finna die https://t.co/8QsUzRURXz",506017 +and ya'll thought global warming wasn't real -___-,990787 +"RT @Waterkeeper: Stream Before the Flood, a new film about climate change by @LeoDiCaprio & Fisher Stevens, for free. https://t.co/uRaXqAri…",249793 +RT @AbortionFunds: .@NancyPelosi would never endorse a climate change denier - so why an anti-abortion candidate? https://t.co/hLFbTWsGir,500428 +Does anyone think global warming is a good thing? I love @peltzgomez . I think she's a really interesting artist.,474046 +RT @WTFFacts: This photo by Kerstin Langenberger shows how polar bears are being affected by climate change. https://t.co/oJJePGBpSD,285709 +RT @ceerara: so many people actually don't believe in climate change !!!??¿? it's alarming ??!!¡¡!!!!,738823 +"RT @top1percentile: Arguable more serious with its impact over a shorter timescale, and far more easily rectified than climate change,… ",713163 +"@ajplus this climate change, world is warming huh?",254402 +@HawaiiDelilah Radical energy shift needed to meet 1.5C global warming target: IEA https://t.co/Z2xLWdaJA1 via @Reuters,784922 +"RT @climateprogress: Brace yourself for a bitterly cold winter, as climate change shifts the polar vortex: https://t.co/AzExUHPNIL https://…",172957 +RT @physorg_com: New technique predicts frequency of heavy precipitation with global warming https://t.co/rPFtaEYrRQ @MIT,152465 +"RT @Fusion: Imagine, if you will, a world where the media covered climate change the way it covers Hillary's emails…",808051 +"RT @realDonaldTrump: It's freezing outside, where the hell is 'global warming'??",485595 +RT @Martina: Octopus in the parking garage is climate change’s canary in the coal mine https://t.co/nzRm0e8LG2,907857 +"@CoryBooker Nothing contributes to climate change, God controls it all.",976351 +RT @tan123: Guy who claimed 'climate change is a barrage of intergalactic ballistic missiles' now calls for 'less emphasis on “…,890487 +World leaders duped by manipulated global warming data https://t.co/JZjiM5wZpU via @MailOnline,22342 +RT @egervet: The heat is on... simple visualization of global warming in the past 100 years https://t.co/NvGCiz2x8R,793794 +RT @WhitfordBradley: This is huge. We need a bipartisan solution to climate change. @RepCurbelo is heroically leading the charge. https://…,397069 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,696234 +The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competitive.,446222 +"RT @mitch_at_EEN: From heatwaves to hurricanes, floods to famine: seven climate change hotspots https://t.co/Ki5IIY15Ip",421398 +"RT @davidrankin: Trump admin denies climate change & will do nothing about it; a Dem admin would have said they believe in clim change, don…",133429 +RT @thehill: NY attorney general: Tillerson used 'alias' email account to discuss climate change issues at Exxon…,906252 +Actus Mer/Sea News: Via @CBDNews - UAE’s fragile reefs will be under more strain: climate change report -…… https://t.co/21pSbcencG,414092 +RT @HarvardChanSPH: Health is the human face of climate change https://t.co/yBhqleDWeU https://t.co/Nozrp8FY7x,921186 +RT @DrexelNow: Did you know? An urban climate change research hub has opened at #Drexel https://t.co/OYctqDXlpi https://t.co/rFBWSeKmO2,73317 +There will be a banking royal commission after we change the government. Also marriage equality and action on climate change. #auspol,750866 +RT @GodfreyElfwick: My 8 year old niece told me 'I believe climate change also contributed to their vulnerability when it came to being…,404488 +RT @climatehawk1: Trump’s election marks end of any serious hope of limiting #climate change to 2C | @drvox https://t.co/O4uA38Ayq6…,217262 +"RT @PRESlDENTBANNON: 1. Get in power by denying climate change +2. Pull out of Paris Agreement +3. Watch liberal coastal cities wash away +4.…",82084 +"RT @dyoofcolor: me: exo has reversed climate change and freed us from our sins +someone: thats not possib- +me: https://t.co/h7jLnZbynh",178765 +Check out the @BillNyeSaves episode on climate change then go change the world #EarthDay https://t.co/BXkHklLST5,856902 +@DRUDGE_REPORT I coughed up a piece of my lung today. Because of climate change.,128311 +RT @xtrminatewhites: If I get a girlfriend we can stop global warming gamer girls DM me,28674 +@TerryDiMonte global warming anyone?,622104 +"RT @PMgeezer: 'China warns Trump against abandoning climate change deal!' +China not reducing emissions! Only we are. https://t.co/5YdlBvNg…",530054 +"RT @LAXX: The man who is going to be president of the United States doesn't believe in global warming. + +The world is fucked.",381560 +".@DeidreBrock pls publicly oppose DUP views on abortion, same-sex-marriage + climate change #DUPdeal",98355 +"@FLOOKLYN Well, his position on climate change definitely isn't a lie. https://t.co/cB0QNkpkGM",740344 +BBC News - G7 summit agrees on countering terrorism but not climate change https://t.co/aRObkNFQLI,138808 +RT @simon_schama: Fact: theman who said climate change was a 'Chinese hoax' now President elect of USA . Facty enough for you? https://t.co…,170089 +#ItShouldveBeenBernie He supports climate change action! Not sure abt any other politician. 2them $$$ always win… https://t.co/d95ugIUGKT,226215 +RT @EnvDefenseFund: 3/4 of our energy is being wasted. We’re losing money & contributing to climate change. Six key solutions. https://t.co…,423833 +"Millennials: In addition to housing affordability and climate change anxiety, have some nuclear existential anxiety… https://t.co/ycDKBqhqWY",369913 +RT @climatehawk1: Doctors warn #climate change threatens public health - @kavya_balaraman @SciAm https://t.co/4IsKwQp2Rp…,95896 +"Fam, if Gov. Deal denies climate change again.. and suggests we all just pray for rain.. again.. I'm DONE with this state forever",97840 +How does one not believe in global warming?,89084 +"RT @realDonaldTrump: Give me clean, beautiful and healthy air - not the same old climate change (global warming) bullshit! I am tired of he…",239009 +Republicans who support combating climate change urge Trump to stay in Paris deal https://t.co/nrQLs4Tfa1 via @HuffPostPol,366412 +"RT @LastWeekTonight: If you don’t believe man-made global warming is a a silly issue, give to the Natural Resources Defense Council (https:…",851148 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,474593 +RT @Canadian_Filth: China has 3500 coal plants so Alberta is shutting down 5 to save the world from climate change,633845 +RT @theCEWH: Research shows inland #wetlands can mitigate climate change by improving carbon stores & offsetting CO2 emissions…,51545 +How the global warming fraud will collapse https://t.co/hAMaWGKlCs,278633 +"@linyalinya Doon nalang sa basa tapos walang amoy. Kapag inasar ka, sabihin mo climate change nakikisabay lang sa p… https://t.co/pA9qLHynTk",39361 +RT @MarkRuffalo: Don't Trump our children. Record-breaking climate change pushes world into ‘uncharted territory’ https://t.co/4t31ZqceS9,221510 +RT @Independent: Leopards are moving into snow leopard territory because of climate change https://t.co/lmkD3Khzm0,66321 +@umairh @davidsirota Maybe climate change is just the Earth's immune response to us.,66661 +"RT @cnni: From urbanization to climate change, Google Earth Timelapse shows 32 years of changes on Earth… ",613615 +China deserves to be the biggest power in the world if they will battle climate change unlike the US,942704 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,15587 +"Donald Trump wants to meet Leonardo DiCaprio again, discuss climate change +#Trump #LeonardoDiCaprio #Climatechange +https://t.co/9ol16E9duc",353103 +"RT @GSElevator: Cool climate change speech, bro... https://t.co/fUCIfS4Iy0",271735 +RT @SenWhitehouse: We've got to be quicker to respond to the issues climate change poses RI fishermen like @SeaHarvesters' Chris Brown http…,159461 +RT @carolinagirl63: Sounds like more swamp needs draining....DOE won't provide names of climate change staffers to Trump team https://t.co/…,807877 +US 'forces G20 to drop any mention of climate change' in joint statement • https://t.co/qQlXc4LNzX •,934854 +RT @Joannechocolat: Amber Rudd: We wouldn't consider telling Trump he's wrong about climate change because 'that's not how diplomacy wo…,409387 +RT @PennyPurewal: Sad. We are the ones causing the climate change. Mankind must know that humans cant survive without earth but plane…,203644 +"RT @mattryanx: Tomi's favorite hobby in 2016 was calling climate change 'bad weather.' But in 2014, she said it was an agreed-upon… ",635192 +RT @climateWWF: The #ParisAgreement establishes a new way of working together to change climate change @WWF @manupulgarvidal https://t.co/9…,772176 +RT @Mr_S_Clean: Remember when climate change was called global warming but they had to change it because we're going through a cooling cycl…,227248 +y'all really voting for a man that doesn't believe in climate change,319106 +RT @ClimateCentral: Here's where people don’t believe in global warming https://t.co/LnCz4SU2BX via @PacificStand https://t.co/oD7uksAAOa,128668 +RT @indianz: Tribes go it alone on climate change as Trump team shifts priorities https://t.co/cJJRDo7USC https://t.co/UpSBMPIk8o,731220 +"Through #climate change denial, we're ceding global #leadership to #China. https://t.co/D6BHK8D7Ue https://t.co/sJ9QhRy0Sn",311826 +RT @RogueNASA: Science deniers are dangerous. The impact of climate change is real. There are consequences for infrastructure and human lif…,808440 +"RT @ImaYuriPhan: If we painted the roof of every building in the world white, would we reduce the rate of global warming?",615105 +RT @Nix_km: WTF is wrong w/ Jerry Brown & the California Legislature? MORE taxes & HIGHER gas prices for FAKE 'global warming'.…,723926 +A new book ranks the top 100 solutions to climate change. The results are surprising. https://t.co/enWeOTohV6 via @voxdotcom,582734 +RT @altNOAA: Trump's other wall - a seawall around his golf course he says to protect against effects of climate change! https://t.co/WnTnc…,520223 +"RT @nycjim: In Florida, Trump pledges to stop sending money to the United Nations aimed at fighting climate change. https://t.co/G7kNkbrNM8",858352 +"Ocean goes from Jaws to jellyfish as climate change progresses, says @thetimes https://t.co/FD9hQZdiYS",606234 +Thank goodness for global warming because without it we would still be in the Cold War,276096 +RT @Wahlid: If global warming is real then why are my nipples so hard��,254986 +"RT @RealKyleMorris: If you think that climate change is a greater threat than radical terrorism in this world, you're part of the problem.…",381775 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,592526 +RT @antoniodelotero: good morning to everyone except climate change deniers,230347 +@MissBills2You damn global warming is serious shit.,61228 +"if trump wont support climate change, we will be having summer christmas next year",819339 +RT @SwannyQLD: Turnbull’s backbench lining up with Abbott on sinking the Paris climate change agreement #auspol #qt,995982 +"This is not global warming, an invasion etc.. got 3 hurricanes in the golf now this? This is the rapture, God is an… https://t.co/veIb2ZHOwS",727863 +"US federal department is censoring use of term 'climate change', emails reveal https://t.co/JOPStYc6VN",186751 +That $52-billion road bill just made California's next climate change move a heavy lift,964719 +Stand up to climate change deniers with the League of Conservation Voters. https://t.co/2mmHHtqpqS #PositiveAction,125624 +#eco #environment #tfb Selenium deficiency promoted by climate change https://t.co/Df7fPHXCA3,344973 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,949789 +RT @guardianeco: Tony Abbott says 'moral panic' about climate change is 'over the top' https://t.co/f7MiLOiQA2,599330 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,265518 +"RT @kellyblaus: Damnnnnn.....is it hot in here, or are Conservatives just blatantly denying proven scientific facts that global warming exi…",298147 +#weather Climate change: Fresh doubt over global warming ‘pause’ – BBC News https://t.co/H5GAZVlAp2 #forecast,226325 +"Make that: climate change-denying, misogynist, petty, corrupt, hateful and doddering-old-fool MODERN DAY PRESIDENTI… https://t.co/8zXHdOuCqe",239874 +RT @comingupcharlie: I can guarantee people on the Buller coast wake up and think about climate change https://t.co/rTb3enBZku https://t.co…,301650 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,157290 +"RT @1followernodad: ok a climate change denier heading the EPA is AWFUL, but what's that shade of lip stain my dude https://t.co/w8BKE4wZ3s",345248 +https://t.co/8sLwOkUSZs 'intended to prevent natural gas being wasted & to cut methane emissions contributing to climate change.',137668 +@Reuters Good they are the ones that have created this so call climate change & need to clean up their dirty air. Funny Fake Science,387140 +Ryanair's O'Leary refuses to accept global warming is a reality - Irish Independent https://t.co/MtXMdzgsur… https://t.co/awLliPwrOM,393316 +How is the global warming working out https://t.co/r9TStvcg62,940665 +RT @CassRMorris: @altNOAA This is Ptolemy. He's super concerned about how climate change affects wildlife. https://t.co/068wrR4gUi,206952 +@gaylec_ global warming man,541428 +"so, if CO2 is not 'a primary contributor to the global warming that we see' TELL US WHAT IS PRUITT!! https://t.co/Wq0gTHCa7y via @PolitiFact",886796 +RT @Greenpeace: The physical reality of global warming doesn’t bend to denial or “alternative facts.” https://t.co/lzFluNj39D https://t.co/…,546374 +"RT @LineDams: @ifmsa delegation to #UNFCCC #SB46 highlighting health co-benefits of tackling climate change; 2 for 1 deal, save e…",922849 +@neiltyson global warming or global hysteria?,857364 +RT @nytimesbusiness: If we're going to survive climate change we need better ideas a whole lot faster. https://t.co/0f7cU920CU,528773 +RT @rulajebreal: China reprimands Trump: There is an international responsibility to act over climate change. https://t.co/DGF3PEQxPb,348027 +"#news On climate change, it’s Trump against the world https://t.co/Xi3BS0ddVa",534413 +One can only hope that the little we are doing to prevent climate change isn't decimated tomorrow. https://t.co/ZdfKn3ttLR,447525 +"Can we please get #SallyYates to stump for climate change, women's reproductive rights and affordable single-payer healthcare?",607037 +RT @guardianeco: Paris climate change agreement enters into force https://t.co/JJTou0jtLj,136714 +New Maine anti-discrimination bill would protect… climate change skeptics https://t.co/6z86KY0UXG #pjnet #tcot #ccot https://t.co/ugANjdyKE7,698954 +"so excited for the fall... the climate change ��, the leaves ��, Halloween �� and Thanksgiving��.... IM JUST READY FOR THE FALL ☺️!",496231 +RT @MyFavsTrash: sad to see what climate change has done to the Grand Canyon �� https://t.co/rmdzq4cu6b,112559 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,746719 +RT @pzmyers: Another sign of doom: the climate change denial of Rex Tillerson https://t.co/n0SQWXfQhO,56423 +@StateDept @JohnKerry President Trump will expose your lies and agenda to bilk the people with fake climate change! You will be caught!!!,111610 +RT @ajplus: China is emerging as an unexpected leader in fighting climate change. https://t.co/3mNFCBCZnR,59106 +RT @ruthsatchfield: Watch Tucker Carlson lose it after Bill Nye takes him to school on climate change https://t.co/8SNrZIoqob,324423 +"RT @WalshFreedom: They push gun control, but glorify guns in their movies. + +They cry about climate change & fly on their private jets. + +#Ho…",903495 +The @PentlandCentre & others are calling for a globally-funded scientific team to help tackle climate change… https://t.co/yuZVpEcABn,522578 +RT @PolitiFact: Is it true that Ron Johnson doesn't believe people contribute to climate change? Mostly. https://t.co/dfsqhlmm5v,330418 +"@washingtonpost But, climate change is a 'liberal hoax.'",170036 +"RT @Greenpeace: 100 nations have agreed to take actions to prevent disastrous climate change. +There is no turning back.…",811734 +Kerry tells climate conference that the US will fight global warming — with Trump or without - Los Angeles Times https://t.co/eEsMlyra4F #…,336133 +RT @SensesFail: The nom to run the EPA doesn't believe in climate change. That is an absolutely ridiculous situation.,61446 +RT @climatehawk1: It's time for investment asset managers to step up on #climate change https://t.co/S20yoKx2rT #ActOnClimate #divest https…,286684 +RT @thehill: American Meteorological Society comes out against EPA head on climate change https://t.co/rOd39Kh37F https://t.co/ONWV5Y5xKk,86718 +RT @BeingFarhad: A “deadly duo” — invasive species and climate change https://t.co/xZpVPtYb2P https://t.co/EHA8zFA7kO #ClimateChange #tfb #…,378434 +RT @guardianeco: Five ways to take action on climate change https://t.co/oPAdYN1daO,95056 +RT @bitchrunmyfade_: @bobsadget Black women have been on here blaming black men for global warming at one point and y'all think them bei…,157217 +RT @docj76tw: Our military has been saying for years that climate change is a national security issue. Here's how: https://t.co/rPjIyevOYG,678843 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",131307 +RT @motherboard: Fiji's prime minister pleads with Trump: 'save us' from climate change: https://t.co/6GGy9FnOn6 https://t.co/jbPZ4zeG7N,531053 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",947694 +"RT @peta: The honeybee population has been nearly decimated from disease, pesticides, and climate change. Protect them by say… ",759959 +RT @epocalibera: #Greece #earthhour2017 Acropolis turned off its lights to raise awareness on climate change #Athens…,976235 +"Retweeted Christopher N. Fox (@ChristopherNFox): + +Exxon ordered to turn over documents in #climate change probe,... https://t.co/kh9eOClj4Y",772212 +Republican proposal for a $40/ton tax on carbon emissions to fend off global climate change could be a non-starter… https://t.co/d0Qci8NwY2,869188 +National Geographic’s climate change documentary with Leonardo DiCaprio is now on YouTube https://t.co/S8IbXczGgt via #thenextweb,7256 +5 climate change challenges India needs to wake up to https://t.co/k4YMowjchc,910026 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,970748 +"Dituduh Trump membuat hoax global warming, China berang | https://t.co/pePDfGjZaZ http:",960297 +@FrankReinthaler @ScottAdamsSays most skeptics r not 'denying' climate change. They just don't want to throw 90 billion to UN to 'fix it'!,487259 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,2648 +Oh dear... EPA boss says carbon dioxide not primary cause of climate change | New Scientist https://t.co/TY9OUn14ur,93493 +"RT @RussHansen51: By exposing the global warming hoax as the scam that it is, #Trump has saved American taxpayers $4.7 Billion Per Yr https…",320569 +"RT @undimas69: If we are not killed by climate change,#ClimateChange #entrepreneur_86 #MondayMotivation #MakeYourOwnLane #defstar5…",435902 +My major is straight up about climate change. We won't get funding???,24812 +"RT @tha_rami: When climate change starts having disastrous effect, I say we jail every person in government voting against climate exactly…",709950 +RT Climate Reality: We *should* rely on good science — and 97% of climate scientists agree climate change is rea...… https://t.co/yuznMiVOLW,191870 +"RT @UNEP: Scale of migration in Africa expected to rise due to accelerated climate change. @Kjulybiao, Head of our Africa Off…",544288 +RT @GIRLposts: im gonna just ignore the fact that the world is either about to end bc of climate change or nuclear war and focus o…,599634 +Data on climate change progress is disappearing from the US State Department website https://t.co/3pGe9xVlcx https://t.co/M2trVXmzHT,948396 +not necessarily global warming- it's always coldest in the morning and warmest in the afternoon https://t.co/SLEXZhN3j5,628855 +RT @ClimateCentral: February’s record warmth was brought to you by climate change https://t.co/mJLXdJs0jk https://t.co/WldhSAxjHl,219705 +RT @Reuters: Trump team memo on climate change alarms Energy Department staff https://t.co/iOVFu9i8s4,76369 +"RT @peytonmarieb: People of 2017: +*dont believe in climate change* +*believes in the Kardashian curse*",209707 +RT @davidicke: One of key proponents of climate change 'science' now says eating weed killer is safe for health & good for planet…,529193 +"So sad must do more 4 global warming, save polar bear home 😃 https://t.co/pBAn5acKU6",488505 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,649995 +#Endangered #penguins hunting for fish in wrong place after #climate change creates '#ecological trap' #nature https://t.co/pKE5Md9ZFT,328227 +#AdoftheDay: Al Gore's stirring new climate change #ad calls on world leaders. https://t.co/QmmxMOcBop https://t.co/c0ptYPFEPK,734220 +RT @raywolf3rd: Watching Soylent Green in light of climate change today certainly lends a different perspective than when it was first rele…,569724 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,617157 +"For 12 years, plants bought us extra time on climate change - The Verge https://t.co/GHBevys4ka",835618 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,497694 +RT @redsteeze: Sam Power spent her time at UN lecturing about dangers of Israel & climate change. But she totally cares about Assad now @Sa…,6641 +"South, southeast face Europe's most adverse climate change impact: agency https://t.co/YmPJ4sy5Sp",791125 +"RT @greenparty_ie: Tackling climate change requires the power of connection & collaboration rather than the exploitation of fear, divi…",479666 +@DrummPhotos @LjHaupt @datrumpnation1 I would exactly call that a ringing endorsement for climate change by the military.From your article:,232716 +Using microbes to fight climate change:,786460 +"The Weather Channel shuts down Breitbart: Yes, climate change is real https://t.co/bJepbLLCuU https://t.co/zTt8nJaHVH",492966 +"RT @ThtGuyMichael: is this real life? trumps 100 day plan intends to cut BILLIONS of dollars towards climate change, and to start the…",885363 +Lol it literally rains on trumps parade the day he is inaugurated as his first act of his presidency is to cancel the climate change act.,346906 +RT @JudicialWatch: JW suspects fraud ‘science’ behind the Obama EPA - a scheme to end coal under the guise of fighting global warming.…,295934 +RT @DineshDSouza: I'm trying to think what possible fact would disprove global warming and I believe I have the answer--when the research f…,650486 +RT @GlobalGoalsUN: The #ParisAgreement is just the start. What else is @UN doing to limit climate change? Check it out:…,958263 +"RT @RailMinIndia: Students learn about climate change on last day of Science Express. +https://t.co/CALBmgwlLs https://t.co/oTjIM7dEL4",939823 +@CIFOR @Hijaukudotcom lets go green stop global warming,69802 +"RT @Obscureobjet: @Avaaz Its as if climate change will begin with Trump, of whom it is said he ll destroy the planet in less than a month.…",264749 +.@AGScottPruitt I know global warming isn't real bc my driveway is covered in snow #checkmate but can u come shovel it for me,744004 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,903111 +RT @NPRinskeep: Wow. China points out that Ronald Reagan and GHW Bush supported international climate change talks https://t.co/pWsmSvx87J,464048 +How can people be so ignorant when it comes to climate change #ClimateCounts @PUANConference @PakUSAlumni #COP22,353129 +"https://t.co/HUv2vGQd3d-top stories Trump's EPA: Cuts, infighting and no talk of climate change https://t.co/pV9NBHsAeY",781817 +RT @AnonyPress: 2016 was the year that the United States elected a man who believes that global warming is a Chinese conspiracy,105244 +Antarctica: Revelation about sea creature could shed light on climate change https://t.co/kynvKIBqyO https://t.co/znnKXcPHKo,899313 +global warming (名)地球温暖化,421940 +"The story of man-made #global warming is a story of science fiction put forth to advance a primitive, collectivist political narrative.",651955 +RT @thehill: Trump admin tells EPA to take down its climate change webpage: report https://t.co/aBtTwWmD7K https://t.co/6CFN8Ga0dD,966826 +@jordanashley137 Everyone seems to be quick to forget that the marginalized face the harshest repercussions of climate change,277192 +RT @DoYouScience: Stopping global warming is the only way to keep the coral reefs from dying https://t.co/TTNt1rERMr,557101 +"RT @RGasperWRI: Thanks, Obama...for making the U.S. more prepared to face the impacts of climate change https://t.co/xVWUfyT63C",16077 +RT @TheDemocrats: Why are scientists marching tomorrow? Because climate change is real: https://t.co/wf7UdctuyQ,788753 +Did you miss this great collection of global stories on solutions FOR climate change? See https://t.co/Q4NrfPK9KU https://t.co/3guCL8dsgJ,636671 +"RT @SFWater: View the deterioration of the #SFSeawall & learn why seismic activity, rising seas & climate change threaten it…",209113 +RT @YEARSofLIVING: How to make a profit from defeating climate change by @MikeBloomberg and Mark Carney https://t.co/EqJsoHbU49 via @guard…,17873 +"‘Science Express’ train flags off to create climate change awareness in India. + https://t.co/33az37KLWK by #usha_sen via @c0nvey",263873 +businessinsider: American schools teach climate change differently in every state — except these 19 … https://t.co/vZOxFDgShT,818047 +RT @voxdotcom: Almost 90% of Americans don’t know there’s scientific consensus on global warming https://t.co/oSqEWnJhgK,274518 +@knightlypixies The stress about climate change has really been getting to me and i dont want to loose hope but im so scared,137245 +Scientists call for more precision in global warming predictions https://t.co/pfjHHSKl1v via @Reuters,210901 +"a question asked by my 4 year old pamangkin while finishing my melted ice cream: + +'Why do you have global warming in your ice cream?'",452172 +Concept: blow up the sun to fix global warming,814366 +RT @guardian: Antarctic study examines impact of aerosols on climate change https://t.co/aGba1esRpm,212158 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,90901 +"RT @UNEP: The longer we wait to take action on climate change, the more difficult and expensive it will get:…",143454 +planet succumbs to global climate change from greenhouse gas emissions? The answer is no so enjoying your life here on Earth while your,761556 +RT @ChristopherNFox: U.S. just signed a document calling #climate change a “serious threat” to the Arctic & noting the need for action http…,505773 +"I know climate change is really bad for the world and all, but if it keeps the weather feeling like this, I might be okay with it.",601972 +"Kashmir, climate change, and nuclear war https://t.co/IlfG7FyGn3",74231 +RT @Independent: California says it's 'ready to fight' Donald Trump over climate change https://t.co/9NkhOwoaHM,815985 +RT @brontyman: America’s loss is China’s gain: Trump’s stance on climate change is a gift to the Chinese - Salon https://t.co/ImEhme4Syn,481732 +"@goodthngs I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",627871 +Because of climate change is just the country.,594469 +"RT @Bobbyh214: UN poll shows most people don’t care about fighting global warming https://t.co/TF6Fr5XNVU via @CFACT So many lies, turn peo…",350756 +RT @GlobalGoalsUN: Fantastic sculptures highlighting crops threatened by climate change & environmental degradation. #COP13 https://t.co/pA…,269893 +"RT @GardnerSalad: Also, as an American, i now have to commit to the belief that climate change is a hoax.",6511 +"RT @EnvDefenseFund: The White House calls climate change research a “waste.” Actually, it’s required by law. https://t.co/DTJAZghYlf",436306 +"RT @SafetyPinDaily: Scott Pruitt, head of EPA, isn't so sure carbon dioxide drives climate change | By @claire_lampen +https://t.co/4lhpEO…",780075 +RT @NormOrnstein: NYT session yesterday w/Trump left Tom Friedman hopeful about Trump and climate change. Today- announced killing NASA cli…,143536 +"@AmandaJ718 No climate change isn't real! Scientists don't know what the heck they are talking about!* + +*😉 I don't… https://t.co/2zZG4ZSwAk",635339 +RT @SenSanders: The Dakota Access Pipeline would be a huge blow to our fight against climate change. #NoDAPL https://t.co/47m6yUu4m5,904919 +Scott Pruitt’s office deluged with angry callers after he questions the science of global warming https://t.co/SBoP2Ukqw6,775083 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,201705 +"RT @GeorgeTakei: A whale's entered the Hudson River. On suggestions that it's protesting climate change policy, Trump said, 'She's overweig…",71322 +RT @ProfTerryHughes: HERE is the confronting science of global warming. WHERE is Australia's science-based policy to save…,718755 +RT @sciam: Rain from thunderstorms is rising due to climate change https://t.co/Gr7J1GCDuO https://t.co/D2jYJQfKb6,355397 +"Endangered, with climate change to blame - High Country News https://t.co/3wdry1uIyV",7480 +.@p_hannam: The Great Barrier Reef is the canary in the climate change coal mine: https://t.co/dCP2QqUwMz https://t.co/I1PUYXoAcs,676361 +"RT @TheAtlantic: Welcome to Pleistocene Park, where Russian scientists want to fight climate change with woolly mammoths… ",27930 +"RT @newley: 'By a factor of three, the key threat to global security identified was climate change' https://t.co/o0nIFqpQHZ",689435 +RT @nytimesbusiness: Hundreds of American companies are pleading with Donald Trump not to abandon gains made to mitigate climate change.…,6365 +RT @WhennBoys: Only in America do we accept weather predictions from a groundhog yet refuse to believe in climate change from scientists,117872 +@LetsBCompassion @jennythefriend @JordanSchroll Burning fossil fuels is the number 1 cause of climate change. Not a… https://t.co/nVkiyGWdWh,303319 +"RT @trutherbotsilve: #Climategate, the sequel - How we are STILL being tricked with flawed data on global warming: https://t.co/GQoYmyLHCx",758069 +Great Barrier Reef just the tip of the climate change iceberg https://t.co/T5lZNHIpAc,519052 +"RT @TheAtlantic: A 765,000-person study argues that climate change is already costing Americans sleep, @yayitsrob reports.…",173245 +@Independent @violencehurts While the Australian government remains opposed to renewables. Continuing to burn global warming coal.,906749 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,9631 +"dumbass racist, sexist, misogynist, lying and unqualified corn muffin who thinks climate change is a hoax.",186664 +RT @JayBaumgarten: Glad to see #DeadliestCatch teaching some of its viewers global warming is real with a reduction of available crab this…,818801 +RT @stephenro88: @Trump__Girl @realDonaldTrump dont tell that to Bernie Sanders who tweeted that climate change is our biggest worry right…,610128 +"RT @ksmainstream: .@KCStarOpinion: New EPA administrator & acknowledged climate change denier hired to protect KS,MO,IA,NE environment http…",200984 +"Murray Energy CEO claims global warming is a hoax, says 4000 scientists tell him so - CNBC https://t.co/S5uHkUlz84",946451 +RT @pwthornton: Imagine getting a perfect score on the SATs and then voting for a guy who claimed global warming was a Chinese hoax. Unlike…,588728 +"RT @HuijsmansTim: RT +We're already facing a global warming #extinction. https://t.co/xpF974A4yb",132012 +@KatTimpf The irony of the 'not so tolerant' and climate change believers to use 'bottled water' in an assault; the… https://t.co/ccxbgtIDEX,746803 +RT @alessandracatsi: Conservative groups shrug off link between tropical storm Harvey and climate change https://t.co/3aHgN8Bg0U,684358 +@alexinthedryer global warming is a concept created by and for the Chinese government,180750 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,997932 +The US is relocating an entire town because of climate change. And this is just the beginning https://t.co/rRa5kZJQ5r via @qz,291282 +Can combating climate change coexist with increased US oil production? https://t.co/gkEByfpjw8 https://t.co/kNRFydvXsi,865532 +"RT @Stinkybarbie: there are no facts in the global warming agenda, rebrand it all you want https://t.co/jNjy0nFsTE",937154 +RT @washingtonpost: Members of Congress met to discuss the costs of climate change. They ended up debating its existence. https://t.co/u1lo…,272540 +@zakomano him and his batch of extremists that don't believe in climate change lmao I love the guy buy seriously? 😴😴,28014 +RT @ClimateCentral: “This is the next stage in climate change liability litigation' https://t.co/jGyFKsMc1U,54105 +RT @agbiotech: #Plant scientists have developed #biotech maize capable of mitigating against the effects of climate change:…,677318 +RT @austincarlile: Maybe all of you that don't think climate change is real will disagree with this one too: https://t.co/qYAyKysi84,142298 +Isn't it fun to think that we all boutta die because of global warming and our president still thinks it's 'fake ne… https://t.co/HVrOsAYlu9,546152 +@PhillipCoorey Too little too late. Just let them keep their heads in the creeping sands of climate change. Pathetic!!!!,131990 +Nordic project will solve a riddle of dramatic climate change https://t.co/G03vTJ1keR @paul_v127 @ruth_mottram… https://t.co/h7TKvebvnD,930247 +The only thing that will really change global warming in the long run... #BjornLomborg #quotes https://t.co/VbG8y9hXjS,405814 +"Trump faces G7 squeeze on climate change, trade at Sicily summit https://t.co/TUve0qI4QF #worldNews https://t.co/DXVS9RwZif",849259 +RT @buddy_dek: Anti-Science: EPA chief says carbon isn’t a ‘primary contributor’ to climate change. Science says he’s wrong https://t.co/zY…,970178 +RT @EugeneCho: The reality of climate change impacts everyone but the truth is that poor communities suffer most...perpetuating the injusti…,775969 +The role food & agriculture plays has been almost entirely absent from written commitments on climate change. https://t.co/Mikcfqpgcp,251906 +"Trump is deleting climate change, one site at a time https://t.co/s5mAb0GeKQ #green #engineering",209894 +@CBSNews Also in today's news: Trump declares trees responsible for global warming.,82633 +RT @allegory_io: By 2020 1/2 of global #smartcity programs will include #sustainability & #climate change as KPIs - @btratzryan…,216329 +RT @ericgeller: It's happening: The White House has ordered the EPA to delete its climate change page. https://t.co/uZ4TSegfYi https://t.co…,147245 +RT @livelikelois: Are we still denying climate change??? Bc it's kinda warm outside.,375068 +"I'm all for trump, but this dumbass better start believing in climate change 😂",432029 +"The picture on climate change is not quite as bleak as some claim, says @_richardblack https://t.co/ReciIWNfzS via… https://t.co/ZbD6gzZcrS",681008 +RT @HouseScience: .@BjornLomborg on facts behind Paris deal:“the agreement will cost a fortune but do little 2 reduce global warming”…,985356 +RT @extinctsymbol: Almost 90% of Americans don’t know there’s scientific consensus on global warming: https://t.co/6jkPpRuyh6,83642 +"RT @CBSNews: Donald Trump says 'nobody really knows' about climate change, contradicting settled science on the issue… ",924379 +RT @RobHudsonPhoto: If we all light candles for hope it's going to contribute to climate change. Whereas cursing the darkness is carbon neu…,474657 +"RT @tan123: Of course climate change exists. Also, CO2 is NOT the climate control knob https://t.co/O4C111XxP4",966145 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,943890 +"1/ Over on my work twitter (science org), so very dismayed to see that lots of nastiest climate change denier trolls are military personnel.",226367 +"RT @HI_GreenGrowth: mayors, cities offer 'best opportunity for dealing with climate change.' #honolulu part of @100ResCities to address…",60192 +"RT @voxdotcom: When we deal with food the right way, we can simultaneously feed the hungry and fight global warming, from…",893971 +"ReelectBernie: SenWarren: And the same day Tillerson dodged climate change q’s, ExxonMobil must turn over climate … https://t.co/rCaJA6OiCN",418543 +RT @greenpeaceusa: Did you miss the premier of @LeoDiCaprio's climate change documentary #BeforeTheFlood yesterday? Catch up here >> https:…,13358 +@yashar @jackshafer FFS - denying climate change and promoting mercenaries are NOT 'opinions' they're cankers on humanity,520619 +RT @hondadeal4vets: I will put an end to climate change,321598 +"RT @SenSanders: Will Scott Pruitt, a climate change denier who assisted the fossil fuel industry, combat climate change? Don't thin… ",741056 +RT @ClimateNexus: Trump meets with Princeton physicist who says global warming is good for us https://t.co/R0b9Wue4hl via @postgreen https:…,936461 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,143146 +Dont people buy Tesla cars to protect the planet in their own way from effects of global warming? Lets destroy the planet cos we hate Trump,535965 +RT @JoyAnnReid: ...and given that the federal government is likely about to cease action on climate change and weaken business regulations…,281202 +"@realDonaldTrump You're the fake news. Based on data? Scared to release tax returns, no travel ban on Saudi Arabia, & climate change data?",165837 +RT @nfergus: Now I get why so many Republicans deny climate change. Rising ocean levels will submerge the Clinton archipelago: https://t.co…,613580 +RT @CoryBooker: This is terrible – companies causing deforestation that damages our environment & contributes to climate change: https://t.…,446237 +RT @Obaid_Obi_: Individuals should volunteer to the couse of reducing climate change effects. #ClimateCounts #PUANConference @PakUSAlumni,897909 +RT @WIRED: What a Trump presidency means for the global fight against climate change: https://t.co/JhDmByNpNP,35072 +"RT @WakeUp__America: In the Arctic, polar bears face a grim scenario due to climate change. Rising temperatures have caused sea ice to m…",334267 +"https://t.co/S9Up1jDg5k + +No one is talking about increase in solar output contributing to climate change. +@bbc",150295 +RT @emorwee: This exchange between a senior White House official and a reporter on climate change is.... not great. https://t.co/3R6WLV1bKZ,414005 +"https://t.co/mV9UPenX1U +The government says it's a lie, fake news, no such thing as climate change. Here you go!",691449 +RT @intlspectator: UNITED STATES: Trump is consulting on how to withdraw the US from the Paris climate change deal,586333 +G20 members meet Fri to discuss climate change. T chose to meet with Putin at that time & skip hearing challenges t… https://t.co/lGfJd8TdYL,805955 +RT @GovPressOffice: ICYMI: @JerryBrownGov discusses #Under2Coalition action on climate change with @ScotGovFM Nicola Sturgeon today:…,994946 +"@FoxNews LOL, in all this time I thought it was global warming",535234 +"@shauntomson The meat and dairy industries contribute to 51% of global warming, & non plant based diets are the leading cause of disease.",990339 +RT @PremierBradWall: Carbon tax even worse idea after US election. Last thing Cda needs is tax harming economy w/o helping climate change h…,245539 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,142285 +"@politico hmm, maybe some will be made up for by not throwing it at climate change. 1.3tr/yr? #backinblack",471258 +Join the resistance. Follow @AltNatParkSer for LL your climate change and Nat'l Park services. https://t.co/4sXOgYKFfK,181421 +Trump can't deny climate change without a fight - Washington Post https://t.co/svjFLXSXJM,804056 +RT @japantimes: Trump team memo on climate change alarms Energy Department staff https://t.co/ujlN1Ohcuz,250453 +RT @DrJillStein: Military spending is 20X greater than the budget for energy + environment. But the Pentagon says climate change is a dire…,422794 +"RT @NotAltWorld: .@NASA has released a photographic series called 'Images of Change' despite President Trump denying climate change. +https:…",896160 +RT @Better_4_US: #Democrats #Liberals Next 'nothing burger' for losing the election? How about climate change affected the polling m…,493299 +We *should* rely on good science — and 97% of climate scientists agree climate change is real and man-made… https://t.co/FOY693W6uU #Clima…,579107 +RT @gillymac02: Whether you believe in climate change or not it's common fucking sense that we can't live without clean water and oxygen??,853420 +"RT @nytimes: Scott Pruitt, the head of the EPA, said that carbon dioxide was not a primary contributor to global warming https://t.co/j3DZW…",661565 +"RT @MimsyYamaguchi: @ScottWalker Affordable Care Act, legalization of same-sex marriage, Recovery Act, Paris Agreement on climate change, m…",373413 +RT techjunkiejh:RT FastCoExist: Most corporate climate change pledges aren't strict enough to stop climate change … https://t.co/yJOOQuMXyE,962094 +Groups sue EPA to protect wild salmon from climate change https://t.co/3Wb7dq5i8E https://t.co/Xn74fjUjqt,41812 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",504594 +@ABC @kathi728 damn climate change causing all the flowers to bloom.,507593 +RT @AJEnglish: Not all fur and waddles: This Penguin colony is at risk from climate change https://t.co/qZRyCS4WD4,210061 +RT @PiyushGoyal: India makes International Solar Alliance a reality. Solar-rich countries come together to fight climate change. https://t.…,287454 +@RealJamesWoods LOL! These are the same people that believe in global warming smh,536194 +RT @DCTFTW: @MrDash109 That's why the Hollywood elites & climate change millionaires are buying ocean front property. Give me a break. @Ro…,814693 +Press release: MEPs to participate in #COP22 climate change conference in Marrakesh: https://t.co/AjoCybpr3c @EP_Environment,400723 +"the sun is shining, global warming has stopped, I suddenly have straight A's, my skin is clea- https://t.co/O56WL793ix",397613 +RT @tyleroakley: if kathy griffin held up a globe on fire would barron think it's the real earth & donald then denounce global warming?? wo…,609991 +"RT @michelleisawolf: Congressman: god will take care of climate change. + +God: bitch I sent you scientists.",343360 +.@coachella's owner uses his money to support anti-LGBT causes and climate change denial https://t.co/bOfo1lDoYD via @UPROXX,519580 +"RT @sethstump17: Don't understand how human caused climate change can just be ignored like this, we should be taking more steps to help the…",631971 +"RT @WorldfNature: Economic inequality drives climate change, economist finds - ThinkProgress https://t.co/TjBDV0dvcy https://t.co/bR6zd0J4Sh",468411 +progressives absolutely LOVE science when it comes to global warming but absolutely cannot accept it in regards to gender differences,239916 +"RT @ashleycrem: If history repeats itself, Hillary will come out of hiding in about a year, with a beard and a movie about climate change.",937873 +Aung San Suu Kyi’s #climate change crisis: https://t.co/TVnwcOahmc My piece @SEA_GLOBE with @earthjournalism #Myanmar #1o5C #ParisAgreement,562422 +RT @MichaelGWhite: A new book ranks the top 100 solutions to climate change. via @azeem. https://t.co/htATI2bL1V via @voxdotcom,422498 +RT @CNNCreate: 'We should not leave anyone behind' @csultanoglu on future energy and climate change @EXPO2017Astana @UNDP…,88056 +RT @WIRED: Researchers were all set to study the effects of climate change in the arctic. Then climate change got in the way https://t.co/g…,370179 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,729780 +"After Obama, Trump may face childrens' lawsuit over global warming https://t.co/jOXdpBepEK https://t.co/9BAvb3J2ua",758644 +Interesting blog – the power of images to shape climate change perceptions @CarbonBrief @ClimateOutreach |… https://t.co/c2OGPDBIDC,965567 +Al Gore and others will hold climate change summit canceled by CDC https://t.co/bYxjJSWjDZ,327049 +"RT @DailyPsychologQ: From a survey of almost 30,000 scientists, 97% agree that climate change is caused by human activity.",973414 +"RT @UN: If properly managed, climate change action can lead to more and better jobs. @ILO info: https://t.co/o6Mgxasjkq…",109041 +RT @charliekirk11: Will it now be the policy of Disney to never fly on private jets since you are so scared of climate change? https://t.co…,457236 +From tiny phytoplankton to massive tuna: How climate change will affect energy flows in ocean ecosystems https://t.co/pgu9TnW4Tv,703005 +Bill Gates and other billionaires open climate change investment fund https://t.co/mpZJ9Lc3Mx,666461 +RT @SwannyQLD: Barking mad ideology in the coalition is the cause of our energy crisis because climate change deniers are running the Govt…,200379 +"RT @SadhguruJV: We think the biggest problem is global warming. No, it is population. +https://t.co/6Hdxw32ZDd +#WorldPopulationDay",800041 +RT @JustinTrudeau: Touching base with @EmmanuelMacron - we’re committed to addressing climate change & increasing trade to benefit peo…,645036 +RT @colincampbell: 'we need global warming!' https://t.co/bEgUYnMuDq,888342 +"RT @DerekCressman: Bay Area folks ain't cut out for heat. Get used to it, global warming is coming baby. https://t.co/Jk5DgKPWeq",308411 +Nato warns climate change is 'global security threat' as Donald Trump mulls Paris Agreement | The Independent https://t.co/nQmMMcWUIM,896890 +RT @dandangeegee_: climate change a guh kill we tpc,346042 +"RT @Unilever: Took #collective action on #GlobalGoals to end poverty, combat climate change, fight injustice & inequality #12ways… ",211349 +Record-breaking climate change takes us into ‘uncharted territory’. Stable popn can limit climate change victims… https://t.co/tRcemKQXkE,719119 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,599794 +"RT @NickKristof: Well, this will stop climate change! White House proposes steep budget cut to NOAA, leading climate science agency https:/…",710238 +Good thing global warming isn't real right everyone? https://t.co/HdBWFIYNmJ,654615 +What does a Trump presidency mean for climate change? #Tech #TechNews https://t.co/ZxBRZR22rj,744157 +RT @UN: Starts today in Marrakesh: @UNESCO conf. on indigenous knowledge & climate change https://t.co/obyaU13EWR…,68991 +"RT @SophiaBush: Censoring our national parks, and scientific facts about climate change, Drumpf? Putin would be proud. #1A https://t.co/We…",62494 +"RT @ClimateRealists: Jim Pfaff: 30,000 Scientists say catastrophic man-made global warming is a HOAX https://t.co/2oescIoENA https://t.co/J…",119981 +RT @larryelder: 'This is why they call it 'climate change'' https://t.co/P24C05hCxt,858023 +RT @HalsallPeter: We are the first generation to experience the damage of climate change and the last one that can stop it. @cathmckenna @e…,470649 +"RT @DaniRabaiotti: You may have missed this, but Defra sneaked the 5 year climate change report out on Jan 18th without announcing it https…",824428 +RT @SaleemulHuq: A long way to go on climate change adaptation https://t.co/IjqpayKX9l,499614 +"RT @laurenepowell: We have the tools, minds, & motivation to address climate change now. Honored to address the global community leadi…",382254 +"RT @COP22: Akinwumi Adesina, the @AfDB_Group supports climate finance to adapt to climate change",927245 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,63744 +RT @BBAnimals: please stop global warming.. https://t.co/S9db4KKKYg,175662 +RT @Adolfhibsta: Another warm day thanks to global warming https://t.co/JlqrEdxIZ1,808354 +Is there a link between climate change and diabetes? https://t.co/KJFw5TtHPt https://t.co/DNAyisYUVk,859015 +RT @JimVandeHei: Phrase 'climate change' scrubbed from NIH website https://t.co/9LZCeJRuXv,22385 +RT @TIME: Donald Trump's promise to reverse momentum on climate change hasn't stopped the Obama administration https://t.co/xk0JdHMtxe,245056 +"@UKLabour All governments (except 47) being too slow on climate change, please come out and show us you would ACT f… https://t.co/WyF4CfVUXU",237976 +"RT @Alex_Verbeek: �� ��‍�� ���� + +Talking to students on the importance of the #CircularEconomy and the impact of #climate change and…",884803 +RT @UN_News_Centre: #COP22: #UNSG Ban urges rapid increase of funding to address climate change. https://t.co/GzkhU6sl4C https://t.co/oqOw7…,107153 +RT @BigJoeBastardi: very very good point. If it misses everyone no one cares but if it slams someone it will be climate change point https:…,467496 +When Jimi Hendrix sang about climate change in 1967: https://t.co/NKpim6YEzX,935108 +"allkpop: Ryu Joon Yeol narrates EBS documentary about climate change +https://t.co/Sdk8eGfAMK https://t.co/tMM1ZyoHO2",835385 +RT @tveitdal: How to teach kids about climate change where most parents are skeptics https://t.co/DnJkZdUWII,345228 +RT @EmoLizzyMcguire: when florida drowns because of climate change https://t.co/zE7OHFIXqp,656751 +"@OchiDeedra I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",64369 +"RT @InxsyS: The real culprit behind climate change? +According to Rick Perry: 'The, um, uh, ocean waters and this environment that we live i…",822812 +"RT @cristiaaandiaz: Climate change and global warming is real +If our president won't do anything about it then it's up to us!!",893774 +"RT @AJEnglish: How to help those displaced by climate change? +https://t.co/aodvxtyRqb https://t.co/GIKa8theUD",300949 +I just joined @NatGeoChannel @21CF in combating climate change. Take action #BeforeTheFlood https://t.co/tE2DWywYJT,368266 +RT @issafrica: Top read | Land privatisation & climate change are costing rural Kenyans. https://t.co/eKvjwl7RKI https://t.co/Kd5rvbN3j4,762993 +RT @jankivelli: global warming is so real man.,364409 +RT @Koxinga8: Australia PM adviser says climate change is 'UN-led ruse to establish new world order' https://t.co/WWVR6fQPL7,165076 +Donald Trump cites global warming dangers in fight to build wall at his Ireland golf course https://t.co/3lXwRZ17UF via @YahooNews,845006 +We need a solid political cabinet in the White House who can stand up for climate change.,482039 +Why I actually like working in the insurance industry? B/c : No climate change skeptics ! https://t.co/BSaTIBjtqI https://t.co/acZ8YohfwX,934736 +"Daines on agriculture, climate change and Russia - NBC Montana https://t.co/NA5KViglHe",964388 +RT @deray: How climate change affects you based on which state you live in https://t.co/nh4HrLp8ix,57305 +Did you know that the use of human labor in farms conserves energy thus reducing global warming?… https://t.co/YNThEZ3lbV,955294 +It's not going to matter what bathroom ur trans grandson is going to be able to use bc they're going to drown to death due to global warming,64942 +RT @IBTimes: What do storms like #StellaBlizzard say about global warming? https://t.co/tMJrN9WRGx https://t.co/icBTU7qB6A,339722 +RT @alexberardo: Trump's plan to reverse all climate change laws is like ripping stitches out of an open wound so you can tie your shoe wit…,804326 +RT @JamesMartinSJ: Why climate change is a moral issue...and a religious one. https://t.co/Ca5ZtwIoJ4,196186 +RT @catfuI: The new president of america is going on trial for raping a 13 year old girl and doesn't believe in climate change,945210 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,910005 +"Funding for climate change research-->Funding for space exploration. + +So the plan is just to find a whole new plane… https://t.co/plD3bWOlqH",256047 +RT @MailOnline: Is global warming going to cancel the ski season? https://t.co/tasd3FxQcV,684487 +RT @WorkaholicBlake: if global warming isn't real then explain this https://t.co/O2czkMthBe,596984 +"RT @NasMaraj: Scientists: *global warming will make natural disasters worse* + +Global Warming *makes them worse* + +Y'all: GOD IS SENDING US A…",100902 +RT @WorldfNature: Green Party claims climate change 'bigger than Brexit' - BBC News https://t.co/rwbKKxF0Y3 https://t.co/hbixwF2DAi,555448 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,972459 +RT @lomehli: wow i can't believe climate change isn't real and obama is a muslim now,925684 +RT @blkahn: Reminder: it's not just about one country. We're all in this climate change thing together https://t.co/nsqFbnxz3X https://t.co…,331377 +"RT @justcatchmedemi: GlblCtzn: 'We must stand with every child who is uprooted by war, violence and poverty and climate change.'@ddlovato h…",326789 +RT @lifeaseva: Taking shorter showers and buying reusable bottles won't stop global warming. It's the main result of our agriculture demand…,649869 +RT @dimitrilascaris: Australian coastline glows in the dark in sinister sign of climate change: https://t.co/ParSUHiqfC #climatechange #kee…,447927 +@LKrauss1 Any chance the world's most brilliant psychologists can incept the reality of climate change into the head of Donald Trump?,162757 +@simplysune14 @RC1023FM some leader don't believe in climate change in especially when it don't change there pocket,121988 +Donald Trump likely to pull out of Paris deal: US states pledge to continue efforts to combat climate change -…… https://t.co/FkI7wbmHwM,876900 +"Letter: Working on the puzzle of climate change: Salt Lake Tribune: In early June, more than 1,000… https://t.co/ws5Z4ErRDZ #ClimateChange",428436 +RT @_IamLynn_: Dryspell ikipitisha 3months ni climate change.,980099 +RT @NYTScience: Republicans used to say 'I'm not a scientist' when confronted with climate change. Here's what they say in 2017: https://t.…,469400 +RT @MotherJones: Republicans beg their party to finally do something about global warming https://t.co/IxlSfrC1iO https://t.co/9yX20HSkjK,69303 +"RT @BarackObama: The Paris Climate Agreement is a big deal in the fight against climate change—and now, a big step closer to reality. https…",901450 +RT @FactTank: 49% of Trump supporters care not too much or not at all about climate change: https://t.co/HPmL385tJh https://t.co/eOaAdvWdAN,469091 +@TuckerCarlson @FoxNews Great debate with that guy about climate change. You won.,107745 +"RT @AHlMSA: Screaming 'adopt don't shop' & 'global warming' don't mean a damn thing if you fund animal ag. Own up, at least TRY not eating…",759608 +RT @rriproarin: @thisiswatt @PostMalone if you need proof global warming is caused by mankind you just have to listen to this heat! https:…,105104 +RT @kylegriffin1: Pruitt's office was so swamped w/ angry calls after he questioned global warming science the number was disconnected http…,937094 +RT @SenatorHassan: We need an Energy Sec. who will fight climate change & build a cleaner energy future. That's why I voted NO on Rick…,505536 +The Paris climate change agreements are a great place to work from as we move towards true sustainability. https://t.co/yUrHXEfDFc,166852 +RT @nytimes: Read the draft of the climate change report https://t.co/PbmYwShMTy,955751 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",297133 +RT @powershiftnet: Millennials to @NYGovCuomo: are you brave enough to stand up to Trump on climate change & #SaveOurFuture?…,840457 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",246498 +RT @TravelLeisure: #GameofThrones' @NikolajCW and @GoogleMaps are showing climate change in Greenland https://t.co/62fD8d22Ic https://t.co/…,453796 +RT @ABCPolitics: UN Secretary General Ban Ki-moon says he believes Donald Trump will make a 'wise decision' on climate change…,752359 +@southern_raynes and CA political 'climate change' is happening... storm brewing (will always ❤️ this strong man in DC����,680137 +"RT @NYMag: The realities of public health, much like those of climate change, bedevil American conservatism https://t.co/BEXpkqmWVw",651615 +"Donald Trump set to visit France for Bastille Day, Macron will bring up climate change, trade issues https://t.co/8gXWQ6ILFX",34294 +[WATCH] Cycling naked for climate change - Eyewitness News https://t.co/dmhqcdX7lR https://t.co/358kgSihtq,566577 +UN meet calls for combating climate change on urgent priority https://t.co/hkImbvxy2b,546774 +RT @thehill: Trump admin tells EPA to take down its climate change webpage: report https://t.co/DE2Ps0Gzad https://t.co/04VmHUj4KO,672130 +RT @Drsinboy: Preparing our health professionals to combat climate change https://t.co/j9RAZ0a8m9 via @CroakeyNews,180963 +"RT @internetsmom: the floor is global warming + +u.s. government: +https://t.co/91cUZeyCcP",894127 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,818501 +"Pixar, now more than ever we need you to make a movie that convinces the normies about climate change",57049 +RT @evetroeh: Prediction: climate change will lead to the revival of the indoor shopping mall.,480533 +RT @elnathan_john: Everything from climate change to desertification from rustling to porous borders. From politicians to criminals. The ca…,249370 +"Begnotea enumerated indications of climate change. In the PH, he mentioned the increased arrivals of typhoons as one example.#SealSUMMIT2016",175803 +Due to climate change no doubt... like the climate of 'why should I give you something you sell me back for $200 a… https://t.co/M0epUjQJ0u,390055 +Donald Trump may face young people suing over global warming - The Sydney Morning Herald https://t.co/1BH5S2Mbqj,797992 +RT @AJEnglish: Will a Trump presidency set back the fight against climate change? Share with us your thoughts below #COP22,720945 +RT @ClimateDesk: There's one last thing Obama can do to fight global warming...and Trump wouldn't be able to stop it https://t.co/Smeql79AR7,538702 +"@swirlOsquirrel Smoke another joint, grab a tea, and get on with how Comey lost the election, our global warming. Ur entertaining.",526631 +China is taking global warming seriously. Shame about the US. https://t.co/BA9ShybgO2,233659 +RT @ClimateGuardia: 3 signs that the world is already fighting back against climate change - The World Economic Forum #auspol #springst ht…,288602 +"RT @activist360: IN 2017, IT HAS COME TO THIS: Scott Pruitt, Trump's top climate official says humans are not causing global warming https:…",810965 +#WorldOceansDay is a great day to learn about how climate change is affecting sea levels. ������ https://t.co/TbASIa64di,111100 +John Kerry says he'll continue with global warming efforts https://t.co/I6VAiQMjXK #science,528758 +#Brazil Rio's famous beaches take battering as scientists issue climate change warning https://t.co/5DLDxQMU3C https://t.co/L64KCKnxTy,564829 +Well done @elonmusk Enlightened America will rise to the climate change challenge despite @POTUS… https://t.co/3qyeJgqbus,538223 +"agriculture is bad we should stop agriculture because it causes climate change' + +me: go starve",39918 +"RT @RealAdamRose: climate change + +climate change + +climate change + +there's no politics if there's no planet. + +climate change + +climate change…",128542 +RT @CNN: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,110687 +RT @ClimateReality: A1. We’re turning off our lights and starting conversations about climate change—and the power we have to solve it #Mak…,198596 +@jbendery Isn't the news here that liberalism is raising hysterics who think climate change is going to take forty years off their lives?,64585 +RT @realtimhess: Still can't believe that Donald Trump is a President who rejects basic science. 97% of scientists agree climate change is…,586728 +RT @DavidCornDC: So @Scaramucci is against the wall and for climate change action & gun safety measures. So why does he 'love' Trum…,223741 +RT @M_Steinbuch: #unbelievable: EPA chief Scott Pruitt says carbon dioxide is not a primary contributor to global warming https://t.co/Z6w5…,753397 +"@Linda0628 I'm glad to hear it! But it was flooded when that person tweeted, yes? I was RTing in the context of my climate change tweet.",290174 +RT @ajplus: Diplomats at the UN global warming summit are very concerned about Trump's stance on climate change. https://t.co/wZ6VbM60K8,542214 +Trump abolishes climate change in first moments of regime https://t.co/VeQrEkCskG,372837 +"RT @ErikSolheim: At the #R20AWS, talking with @Schwarzenegger about local action to fight climate change, and health and economic ga…",288012 +#IfinditFascinating that people still question climate change? Do you even science brah?,94780 +RT @sciam: Fifty-nine percent of voters want the U.S. to do more to address global warming. https://t.co/IkgORHI1bC https://t.co/TXkzRaMfkW,964126 +RT @lhfang: Jaime helped coal firms defeat Obama's climate change legislation. Worked for banks. No qs about his lobby career https://t.co/…,869801 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,366133 +RT @guardian: Want to fight climate change? Have fewer children https://t.co/cfEg31Wgt0,702070 +The case for collaborating on climate change https://t.co/MGYEn61fGH,407850 +"BlAme it on global warming!, Snow falls in SAHARA DESERT for only second time in living memory https://t.co/ImhhvVvMnM",681790 +RT @BernieSanders: #ImVotingBecause the future of the planet is at stake. Hillary Clinton will combat climate change. Donald Trump thinks i…,528548 +RT @SenSanders: If we don't address climate change there'll be more conflict over limited resources. We must listen to scientists not fossi…,830318 +RT @bogglesnatch: Independent study shows NOAA was right -- there was no global warming 'pause'. https://t.co/Onx0WqxxPY,720943 +EPA head Scott Pruitt may have broken integrity rules by denying global warming https://t.co/gO0OZ9H1HS,355391 +"#NewNBATeams @midnight + +The global warming trotters",910133 +@francoisd8000 They don't belong in captivity for our viewing pleasure ... but you're right global warming is another problem they r facing,644426 +Free trade helps to deal w/ impacts of climate change argues H. Lotze-Campen @pik_climate #T20blog… https://t.co/GeuOWlOUrc,892393 +Pretty afraid watching this @Heritage foundation briefing on climate change on @cspan 😂😂😂,147139 +New priests to learn about global warming as part of formation - Green - News - Catholic Online https://t.co/7i9WmAKrMh (NEW WORLD ORDER?),242092 +"@IndianaUniv Global cooling, global warming, oh wait.. Climate Change.. My tax dollars flushed down the FN toilet �� �� Ridiculous",337513 +"Well according to our lord and savoir Trump, global warming doesn't exist. + +And since we always know Trump is right… https://t.co/eGFr6Tz40p",442543 +"RT @RepRaskin: Proposed cuts to @NOAA would devastate climate change research and resiliency. Who's designing the budget, Vlad Put… ",331242 +RT @Phosphorus_ie: Conference to focus on manure management in battle against climate change https://t.co/Nk75izEM2p,697685 +Growing algae bloom in Arabian Sea tied to climate change - https://t.co/W6QReCj9Zx https://t.co/Us6ysUPPsJ,238142 +RT @alicemmilner: Palaeoecology tells us species constantly move w/ climate change.Policy needs to take long term future view to reflect th…,639271 +RT @SierraClub: California signs deal with China to combat climate change https://t.co/ysFmBeSUTI (@thehill),390876 +RT @deathpigeon: A silver lining to global warming. https://t.co/ZodblSJhoo,892822 +RT @ScotGovFM: First Minister met with the Governor of California Edmund G Brown. Joint agreement signed to tackle climate change.…,368716 +New post on my blog: What will Trump presidency mean for efforts to curb climate change? https://t.co/l7UDMTHrvP,391611 +@alison_rixon @SAPaleAle @JacquiLambie just like the irrational church of climate change persecutes skeptics today.,26366 +RT @Joelsberg: @IvankaTrump So NASA is correct about this but wrong on climate change?,830437 +RT @ClimateReality: We don’t have to choose between putting Americans to work and acting on climate change. Retweet if you know the US…,213126 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,421994 +"RT @RichardOSeager: @SteveBriscoe6 @MaryStGeorge @NZGreens So far none of the parties have adequate polices on climate change. +#LeftWithEno…",585939 +@TheWaiverHounds 'Yeah right! Let me tell you some more global warming...' https://t.co/9WzkMqseEM,475433 +"On climate change, Trump won't kill the planet - The Globe and Mail https://t.co/LyKmVstgDY",481193 +Panelist at #sustainableag deflects discussion of climate change. 'CLIMATE CHANGE IS REAL' shouts audience member. 😨😨,388001 +"RT @RICSnews: News | In the race to curb climate change, cities outpace governments. #WBEF https://t.co/eapT3jr7Ca",721285 +"RT @mwbloem: #DYK For each 1 degree of global warming, 7% of world will see decrease of 20% water resources…",395050 +@wesearchr i'm gonna go for the darkhorse candidate 'global warming',577469 +"#Nigeria #news - Satellite launched to monitor climate change, vegetation https://t.co/b37E5ISjS6",211607 +Can energy-efficient lightbulbs help Zimbabwe reach its climate change goals? https://t.co/YOHWKvMHIb https://t.co/gebJguc8pF,574907 +RT @BraddJaffy: The Trump-Putin meeting is taking place at the same time the other world leaders are discussing climate change https://t.co…,805807 +RT @Oldyella49: Seriously? They're endorsing someone that denies global warming. They should be ashamed. https://t.co/tbyRI6pWVF,661405 +"California Republicans join climate change fight, tell colleagues 'it would be foolish not to engage' https://t.co/Tu171Tk6Hr via @TheWeek",767832 +Veterans urge the White House to stand by our fight against climate change as senior advisers debate exiting the... https://t.co/lJiA8XJAR3,851400 +climate change. change the stairway Krystal.96x.,726350 +RT @bigmacher: #IWishICouldSpeedUp global warming. It's cold!!!,826614 +Now's the time: we need a strong #FTT that works for those hardest hit by climate change and poverty!,821952 +sun cycles and global warming' https://t.co/qEsfH7WFQ9,468095 +"RT @ClimateCentral: February was the second hottest on record, despite the lack of an El Niño, a clear mark of global warming…",225454 +RT @cnni: No snow where there should be. Bleached anemones. Cracks in the ice. This is what climate change looks like:…,937705 +"France regrets G20 meeting outcome on trade, climate change https://t.co/ziskKVWWJx via @Reuters",346504 +"RT @EricBoehlert: reminder: network evening newscasts this yr spent 125 mins on Clinton emails, 0 mins on climate change;…",372790 +"RT @verge: What 720,000 years of ice can tell us about climate change in the past — and the future +https://t.co/4Tnxcpx165 https://t.co/t0Q…",715616 +What is climate change? https://t.co/lL5BkLpDw6 via @DavidSuzukiFDN CO2 & #climate for dummies:,281080 +"Google:Malcolm Roberts' climate change press conference starts bad, ends even worse - The Sydney Morning Herald https://t.co/tmoQsV0PNa",361431 +RT @climatehawk1: Here's why #climate change would swamp Trump’s border wall – @climateprogress https://t.co/2MUr6MY4zm #ActOnClimate…,434867 +RT @ImranKhanPTI: Pak 7th most affected country by climate change. Apart from immed reforestation we must plan for clean energy today https…,425309 +Great Barrier Reef is A-OK says climate change denier as she manhandles coral https://t.co/7AEnNmizkn https://t.co/A3VaLfAypn,698813 +RT @StayHopeful16: Mike Pence gets buried for pretending he can’t understand the importance of climate change https://t.co/l50y1jp5Zb via @…,615023 +"@BofA_News I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",641 +"New York Times actually asked in a TWEET..' What’s a greater threat to Guam? North Korea, or climate change?' + ��Insane Liberalism!",937551 +RT @spectatorindex: IMAGE: New Zealand newspaper discusses climate change in article from 1912 https://t.co/uZhOybd0MK,133842 +"RT @SteveSGoddard: The whole 'climate change' scam is fake news, from top to bottom. The biggest fraud in science history. https://t.co/5kM…",252814 +@ElizHarball @SusieMadrak @exxonmobil @SuzanneMcCarron Didn't Exxon scientists do some of the original research on climate change?,575434 +"Everglades restoration report shows success, but climate change remains a challenge https://t.co/5iRYMwaBoi https://t.co/sbm8YPeCGr",242013 +RT @JustinCase02: @merz_steven No one with a brain who is honest believes man made global climate change. They even changed it from 'global…,206664 +RT @Super70sSports: Climatologists now believe global warming was dangerously accelerated by the Hall and Oates H2O album cover. https://t.…,399851 +"RT @ZachJCarter: Anthropogenic climate change immediately threatens food and water for 100s of millions of people. + +THE CAUSE IS RIGHT, AND…",104630 +RT @The_Win_Trump: Trump begins tearing up Obama's years of progress on tackling climate change https://t.co/kFTGzy7kZh https://t.co/GNatn2…,237325 +RT @CNNPolitics: Why climate change experts fear Donald Trump's presidency https://t.co/HrFP4c1qSH https://t.co/zvhRsjqrx6,814076 +It doesn't look like climate change is going to be stopping any time soon. #climatechange #globalwarming #science https://t.co/5qM0L3lbk6,438092 +RT @TPM: Fourteen Democratic state attorneys general warn Trump that he'll face litigation if he scraps climate change plan…,902087 +"RT @RedTRaccoon: #UselessScienceExperiments + +Using snow to prove climate change isn't happening. + +Support the #climatemarch activi…",845881 +RT @DennisWardNews: Grand Chief Stewart Phillip says Indigenous peoples are already climate change refugees. https://t.co/pTXWNxyqQs,93753 +"RT @MikeBloomberg: With partners like the EU, we're creating a path to victory on climate change. Great to meet w/President @JunckerEU…",746802 +RT @alertnetclimate: Can Finland's Sámi reindeer herders survive climate change and logging? https://t.co/w1IFiW0AQY @Fern_NGO #Finland htt…,545644 +If we could overturn global warming … how exiting would that be? https://t.co/0pZZV4GKZL,494858 +"RT @SamJamesVelde: It's 90 degrees in early November in Los Angeles, but you know ....according to Trump global warming and climate change…",744232 +"1969: By 2017 we will have flying cars, no global warming, high end technology. + +2017: https://t.co/YlAbClAiIy",518375 +DON'T FALL FOR GLOBAL WARMING @realDonaldTrump!! ->What's going on between Ivanka Trump & global warming guru Gore? https://t.co/gOc4Vt5nOb,673188 +RT @billshortenmp: Used to have fairly strong views on climate change too. https://t.co/yJN6twCzww,650394 +RT @NnimmoB: 'We didn't create the problem;but we have the solutions. ' - Indigenous women fighting climate change @Health_Earth https://t.…,579240 +The GOP absolutely believes in climate change. They just know we're fucked and are consolidating power before the coasts start to go under.,283548 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,964677 +I’ll build a man – we need global warming! I’ve said if Ivanka weren’t my office and you all know it! Please don't feel so,733088 +RT @SpiritualSmoker: it's absolutely disgusting how big of a problem climate change it yet nobody seems to give a fuck,795451 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,189822 +RT @HuffingtonPost: White House gives $500 million more to help poor countries fight climate change https://t.co/wHFynQk0zO https://t.co/pA…,554376 +RT @JunkScience: Trump in Jacksonville: 'We will cancel millions and millions of global warming payments to the UN.' #climate,83587 +"RT @71djt: What a headline. +Trump to name Scott Pruitt, Oklahoma attorney general suing EPA on climate change, to head the EPA https://t.co…",77193 +"RT @HuffPostPol: Thousands march in Washington, D.C. heat to demand Trump act on climate change. https://t.co/s3irCK2nZq https://t.co/EN1Px…",802848 +"@mench_ke I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/u1UbQXLmrF ?",258627 +RT @amazonnews: 1/4 Amazon continues to support the Paris climate agreement and action on climate change.,665792 +"RT @AGBS2017: Green Building can help us limit global warming to 2 degrees – rather than 6 degrees +#AGBS2017 #AGBS2017FINALDAY",322201 +"RT @billyeichner: Head of the ENVIRONMENTAL PROTECTION AGENCY doesnt believe CO2 contributes to global warming, contradicting, oh ya… ",23535 +RT @MariaAlejAlva: @curvegawdess climate change isn't real tho right? i mean we have countries UNDERWATER and the western half of amer…,630135 +RT @BBAnimals: please stop global warming.. https://t.co/S9db4KKKYg,848949 +RT @ThisWeekABC: .@algore: Trump administration 'comes off as tongue-tied and confused' about climate change https://t.co/A9cSdVohZX…,802178 +@canberratimes For $100 per year per household we will ignore climate change???,203862 +"RT @latimes: Despite Trump's skepticism, nearly 200 countries pledge to keep fighting climate change https://t.co/YheWWAD9nz https://t.co/l…",239658 +"RT @JeffreyGuterman: #Trump has selected Myron Ebell, a climate change and global warming skeptic, to lead the @EPA transition team.…",456223 +RT @SenatorCarper: There are no alternative facts when it comes to climate change. And there’s no alternative planet. https://t.co/pyj3C9Jr…,586979 +"RT @hemantmehta: Don't worry, everyone. When President Trump does nothing about climate change, Florida will be the first to go.",474632 +@CRhodesTWilson heck with a high I want to solve climate change world hunger eliminate US debt create jobs & cure cancer only cannabis can!,651329 +"RT @ezraklein: All the risks of climate change, in a single graph: https://t.co/nvnr97cCDi",889489 +RT @cosmicaIly: When u ask him what the leading cause of climate change is and he says 'animal agriculture' https://t.co/Nx8ozn7oQU,725388 +"Huckabee on prioritizing terrorism over climate change: 'A beheading is worse than a sunburn' +Nothing says dumbass… https://t.co/dLLPLrd5g6",477844 +Why coal miners need a moratorium (but can't ask) | Climate Home - climate change news https://t.co/LFvWnIZ1cX via @ClimateHome,376894 +Best of Davos: How can we avoid a climate change catastrophe? Al Gore and Davos leaders respond… https://t.co/785AzHIa9f,402248 +RT @p_hannam: Hey @Barnaby_Joyce I hope you are listening to this excellent summary of climate change and WA farming: https://t.co/XnN0MUVK…,310164 +"RT @AssaadRazzouk: In the new new world, China lectures the United States about climate change and the importance of cooperation betwe…",130849 +RT @CattyTheDoormat: Although I think it's ludicrous that Trump is a climate change skeptic- there are ways everyone can do their bit to co…,374093 +"RT @paulapoundstone: If we don't like flooding, and it looks horrible, we'd better take global warming real fucking seriously.",481749 +Elon needs to not go to Mars because if we cannot solve climate change and capitalist imperialism we do not deserve to expand our reach.,463808 +"RT @KamalaHarris: From melting glaciers to rising sea levels, we can’t ignore the evidence—humans are contributing to climate change. +https…",288000 +RT @CNNPolitics: OMB Director Mick Mulvaney on climate change: “We’re not spending money on that anymore” https://t.co/uJ1zwwqhNH,845217 +"Everyone had to complain about global warming when we had nice weather, and this is what we get for it. Smh.",757316 +This statue in Berlin is called 'politicians discussing global warming'.. Retweet if #funny #reaction #lol https://t.co/kKxPilaUv9,262230 +@bbcweather hi is the high temperatures a natural occurrence or is it a consequence of man made climate change ?,167856 +RT @LangBanks: Finally got the perfect gift for Trump for his inauguration... Prince Charles’ new Ladybird book on climate change…,215975 +RT @guardianscience: ‘Moore’s law’ for carbon would defeat global warming https://t.co/x3MXzofik9,182510 +RT @harambaetista: good morning to everyone except everyone the bees are dying and we caused global warming we should be ashamed of ourselv…,396184 +RT @nowthisnews: Remember when we had a president who acknowledged climate change was real? https://t.co/zC3RNfEo3N,449083 +RT @pemalevy: He is a microbiologist. He's standing in the rain because politicians are ignoring science and global warming https://t.co/VQ…,627919 +"RT @NatGeoChannel: Watch #BeforeTheFlood right here, as @LeoDiCaprio travels the world to tackle climate change https://t.co/LkDehj3tNn htt…",944107 +@crabtrem Yes! Imagine all the money wasted. Trump's plan to ditch payments for climate change will save us billions!!,314291 +RT @PleasureEthics: We use the sea around Britain as a place to build on water & work out solutions to climate change #opendata #smartcitie…,907344 +It's midnight in November in colorado and I'm literally walking around in shots and flip flops. Don't tell me global warming isn't real.,380697 +"@JimW_in_NM “The Secret Society of Anti-AGW-ACC Cultism,” an organization that claims climate change is a hoax was… https://t.co/cK9ipreZTH",374602 +It was literally 96° in LA today in mid November & our future president doesn't believe in global warming...,568728 +RT @jamalraad: Sen. Jeff Merkley patiently exposed Rex Tillerson on climate change https://t.co/LKGOdkOQQd via @voxdotcom,32358 +RT @FXS_Finance_EN: PwC's 25 Fastest Growing Cloud Companies signal software climate change #All Finance #United Kingdom https://t.co/6fMV9…,358751 +RT @frankdpi: Obama takes a swipe at Trump over climate change policy - Daily Mail https://t.co/bTr3KGcqMo,601169 +"Merkel urges EU to control their own destiny, after Trump visit, climate change decision https://t.co/YiIs4NmnsX https://t.co/FNAlJ5gLcp",563515 +"RT @kevxnkvto: So we just gon act like the weather in 20 years ain gon be extremely unstable and global warming don't exist, bet",825374 +"RT @matthaig1: Believing in climate change is not left wing. It's just science. If you don't believe in it, that's because of your ignoranc…",401164 +Arctic ice melt could trigger uncontrollable climate change at global level | Environment | The Guardian https://t.co/6ATfKqSPG6,269512 +"RT @wwwfoecouk: Watch, share and #ShowTheLove 💚 with a RT because climate change risks so, so much - music by @Elbow +https://t.co/61Bag2UFsI",736903 +"Pope Francis appears in ‘climate change’ movie featuring Obama, Clinton, Leonardo DiCaprio https://t.co/cJPy80oDRQ",665185 +RT @GlobalMomsChall: A4: Collaboration is key! We need to work together to address climate change. #EarthToMarrakech https://t.co/KImvRjFcon,703493 +"RT @GSmeeton: The picture on climate change is not quite as bleak as some claim, says @_richardblack https://t.co/ReciIWNfzS via…",649176 +RT @VICE: What the future looks like with a climate change denier in the White House: https://t.co/957NwcUBbq https://t.co/cNoEW5AGRW,89747 +"RT @TomCBallard: Senator Malcolm Roberts on terrorism: + +'MUSLIMS ARE EVIL AND WILL KILL US ALL!!!' + +On global warming: + +'Everyone stop be…",801434 +"In executive order, Trump to dramatically change US approach to climate change @CNNPolitics https://t.co/s9XAj0tyHi",750936 +"Trump will be the only world leader who denies climate change, giving the United States the official title of Dumbe… https://t.co/oCuViLX4n4",62996 +"Hey, we are all fucked. Welcome to earth where it snows, rains, gets hot and where the people say climate change is a hoax",197941 +"RT @openDemocracy: With a climate change denier in the White House, what are the prospects for the Paris Agreement on climate change? https…",931726 +RT @scienceclimate: If anyone wants lessons on how to learn about climate change. It's here. ������ https://t.co/cpxsaxzjvr…,999411 +"RT @CBCNews: After Trump's Paris pullout, MPs line up behind climate change accord https://t.co/jyi0eFDQ9Z https://t.co/MpDOHKM1Kf",166179 +"@wraithburn I’m creating a new think tank for climate change, would you join and post your tweet also at https://t.co/5FRPWXpvU7 ?",415347 +RT @nowthisnews: Rick Perry is a proud climate change skeptic — but Sen. Al Franken is having none of it https://t.co/RjL95OtD0G,703334 +RT @elisewho: Hey remember that time that Donald Trump backed urgent action on climate change? It wasn't that long ago https://t.co/ciohQ43…,535633 +"RT @_K_N_Z_: It's not 'spring' you fools, it's global warming and it's boutta snow next week. #minnesota",848046 +"RT @ESQPolitics: China is now embarrassing the U.S. on climate change. + +How did we get here? + +https://t.co/y48vTaD0vW https://t.co/XxAfY2h…",26885 +"RT @Blubdha: @simonworrall Prince Charles; climate change is 'wolf at the door', mtg w Donald Trump mooted https://t.co/umeKlbTR7R via @tel…",656503 +RT @JulianBurnside: Senator Paterson skilfully evaded dealing with the major point: accepting the reality of climate change #qanda,876235 +"Retweeted Washington Post (@washingtonpost): + +Opinion: Phoenix heat, Tropical Storm Cindy show how climate change... https://t.co/7qWekKiYSa",253058 +@kumailn Isn't it amazing how people who don't believe in global warming or science trust & believe we can predict… https://t.co/0qpfVEfJoe,335901 +"@realDonaldTrump You don't have to believe in climate change to want cleaner air, water, and a healthy planet. Don't let pollution win.",486930 +"RT @LeeCamp: 44% of bee colonies died last year due to climate change/pesticides. When bees die, we die. ...But who's counting?",519709 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,751553 +"Ran a 5K in shorts. In January. In Pennsylvania. OOOOOook. Thanks, global warming. https://t.co/aJuga2tn1O",15916 +RT @hodgman: The New York Times should not have hired climate change bullshitter Bret Stephens https://t.co/0dn1OarWei via @voxdotcom,876083 +’hereTs another story to tell about climate change. And it starts wiht water | Judith D Schwartz https://t.co/vtKGCvhhlT,549489 +RT @FoxBusiness: .@realDonaldTrump: 'We will also cancel billions in global warming payments to the United Nations.' https://t.co/HxeORNHL5p,484787 +RT @Pat1066Patrick: Major TV networks spent just 50 minutes on climate change — combined — last year. https://t.co/XEBHh2Q86Y,339205 +"RT @robinince: J. Delingpole said 'liberal left have lost the battle against climate change', unaware that the acid sea won't just flood th…",293922 +RT @SierraClub: Women Mayors break the glass ceiling to tackle climate change https://t.co/RjV0YXhbVF via (@HuffPostPol),716370 +"RT @Greenpeace: The world is on fire. And if we continue like this, climate change is only going to make it worse…",121979 +"@DailyCaller climate change is doing as much good to our planet as bad. Better crops, less death, etc. We headed into cycle cold period",355364 +RT @Jon_Pantaloon: I swear if it's 80 degrees on Christmas again I will personally defeat global warming. Revenge is a dish best-served cold,652890 +"RT @zachhaller: 'You're going to die of old age +I'll die of climate change +I just lost 40 years life expectancy' + +https://t.co/3eAbvcJ4xF",736209 +@ScottAdamsSays 'Sci. consensus on man-made climate change is at same level as sci. consensus that cigarettes cause cancer. ' #persuasive,506571 +「環境がテーマの文章ででやすい単語2」 global warming:地球温暖化 greenhouse effect:温室効果 ozone layer/ozonosphere:オゾン層 skin cancer:皮膚ガン the Kyoto Protocol:京都議定書,874194 +RT @foe_us: 'A study of our electrical grid that fails to even mention climate change is barely a study worth reading.' https://t.co/zPVLup…,24852 +"@historylvrsclub How would of thought he would grow up to be an advocate for climate change, global warming crap!!!",960566 +"Apparently the elderly, poorly read & educated DJT nominates a politician who denies climate change to head NASA?! #FunnyTrump #FallofTrump",932863 +Perils of global warming could sink coastal real-estate markets - https://t.co/84tWCjc5X7,329246 +RT @abbymccartin: don't understand why some people think they have the luxury to not 'believe in' climate change lmao,339552 +"RT @semodu_pr: We should stop #climate change, otherwise climate change will stop us - #climatechange #future #Earth #Mankind #environment…",175017 +"Let's make this perfectly clear: CLIMATE CHANGE DENIERS should be called what they are: CLIMATE TERRORISTS. Yes, climate change is that bad.",605037 +"In Trump budget briefing, 'climate change musical' is cited as tax waste. Wait, what? - Washington Post https://t.co/4HsbpGgHBo",910328 +RT @Earthjustice: BREAKING: Trump to issue a sweeping exec order that will undermine critical action to fight climate change tomorrow…,379922 +"EPA chief says carbon dioxide doesn’t cause global warming https://t.co/DHazzs01iZ via @BostonGlobe + +https://t.co/pclxOFIysp. MARCH",620027 +RT @WhiteHouse: .@POTUS on how acting to combat climate change can help the environment and grow the economy: https://t.co/dLThW0dIEd,798220 +care about climate change' is one of the most useless phrases concocted. It can mean too many things. 1/? https://t.co/avZrKwXnwt,378654 +RT @mishacollins: Good point! @realdonaldtrump IS the candidate who might end global warming by bringing us nuclear winter. DON'T BE…,90310 +RT @slforeign: #Somaliland faces its worst drought ever but is still excluded from discussions on climate change. It's time to end…,660044 +Fighting climate change isn’t a “waste of money” — it’s a good investment https://t.co/v3sfqVOCHd via @Verge,143190 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,350310 +RT @davidsirota: Remember how Gov. Jerry Brown just refused to back single-payer? Well now there’s this on climate change policy.…,743542 +RT @newscientist: Most people don’t know climate change is entirely human-made https://t.co/kbAPaoR3TZ https://t.co/JNAuLwESAp,66186 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,772331 +RT @guardian: Arctic ice melt could trigger uncontrollable climate change at global level https://t.co/AuNkUlVX3c,205514 +RT @kurteichenwald: China is now explaining the history of climate change science/politics 2 underscore to Trump they didnt do a hoax. God…,743938 +"If u aint concerned with global warming my nigga, u should be",534691 +@lakshmisharath mam r u also interested in the field of climate change ? Just asking,52110 +"@EcoWatch @ukycc @CANEurope @RebelMouse Meanwhile, no one in Utah believes in climate change",179889 +RT @BBAnimals: please stop global warming.. https://t.co/S9db4KKKYg,921175 +RT @thehill: EPA flooded with phone calls after EPA head denies CO2 role in climate change: report https://t.co/vOE1d0hMtD https://t.co/1wo…,516392 +Washington state youths sue government over climate change - The Mercury News https://t.co/4U7qkukSSW - #ClimateChange,967962 +And Mr #DonaldTrump says that climate change is a hoax! What a pity. https://t.co/dGNzeTrmg3,8838 +Mexico-sized algae bloom in the Arabian Sea connected to #climate change | Inhabitat https://t.co/WQ2AxM3eAo,192236 +RT @jay_zimmer: Icebergs for global warming https://t.co/8ZYOZK4KfR,212983 +Surprising that @EPA has not changed the content 'Humans are largely responsible for recent climate change' yet.. https://t.co/4HVVn7yEMh,203985 +Beginning of the youth conference on climate change and REDD + @ONG_AIDEPur # Copmycity225,710768 +@karaisshort It's a legit question as global warming has changed our environment,524220 +"@VP @POTUS @NASA @NASA_Johnson So, the VP doesn't believe in climate change, that people are born LGBT, or that birth control (1/2)",750797 +"RT @JaredWyand: Mon: 'Hey Al, stop by Trump tower & pitch me climate change' + +Wed: 'Hey Al, I'm gonna nominate the guy who thinks you're fu…",964888 +"RT @StationCDRKelly: Tragic day yesterday with the passing of Piers Sellers, astronaut classmate, friend, and champion of climate change… ",969489 +RT @AmericanVoice_1: Surveys find 97% of #ClimateChange experts believe global warming is real & human activity is the main cause. Do you t…,178619 +"@PatriciaRobson9 @cenkuygur Their messages of being pro climate change, pro gay rights, pro immigration reform, pro gun control not enough?!",704138 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,132174 +Pretty sure we are about to see George blame penguin shit for global warming any minute now.. #QandA,46263 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,817449 +RT @Greenpeace: Happy 2017! Let's make it the year for stronger action on climate change: https://t.co/eHVVy2NULg #PeopleVsOil https://t.co…,870810 +RT @MuqadessGul: I assure you that I'll be the voice of climate change in the Senate. - Senator Mushahid Hussain Sayed @PUANConference #Cli…,233755 +"RT @GLOBE_Nigeria: 2/2)..of acting to mitigate climate change is real and cannot be ignored,”- @BarackObama @SPNigeria #NigeriaGreenEconomy",609080 +"@touchofgrey9 ⚡️ “Apocalypse bunker for seeds gets flooded by global warming” by @anchor + +https://t.co/sM9DRkLxV2",981674 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,417942 +RT @ChinaUSFocus: Follow to learn more about how China and the U.S. plan to combat detrimental climate change. https://t.co/VLo5nZ1PmM http…,992917 +"Documentary explores how climate change is impacting Yosemite +https://t.co/rJbqNhv8L4 https://t.co/ZiHXVfQ7Dr",84796 +@StormhunterTWN @weathernetwork I'll bet everyone is happy we have global warming. Imagine how much worse could this have been?,346872 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,631393 +RT @sajeebwazed: #Bangladesh demonstrates coping with #climate change as #CoP22 talks begin https://t.co/4LJ45mwvmn,340881 +RT @ajplus: Leo takes on climate change skeptics: “You might as well not believe in gravity.â€ https://t.co/v8EdagKObD,216823 +RT @Andrew_Marcus21: @MLoParis @BeverleyMaxwe15 @Jane9873 True but he also is a global warming scam promoter & appeaser and booster of I…,182348 +RT @PeterGleick: The @nytimes replaces '#climate change dissenter' with 'denialist.' Thank you for reconsidering key word choice. https://t…,567946 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,141268 +U.S. Energy Department balks at Trump request for names on climate change - Reuters https://t.co/6d8mAMmfFS,684612 +#fragrance #beauty #fashion The powerful smell of pine trees and climate change https://t.co/XaCUsIhY3J,687469 +RT @Crapplefratz: I've been saying the same thing about 'man-made global warming' for decades. Glad to see you're finally coming arou…,702863 +RT @BernieSanders: 'The concept of global warming was created by and for the Chinese in order to make U.S. manufacturing non-competiti…,286035 +"RT @kellykvee: Science may say climate change exists and here's how we can stop it, but philosophy says why climate change is bad and why w…",284067 +"RT @Pinboard: In both cases, a millenarian obsession with End Times prevents work on actual problems: climate change, ethical problems of m…",458157 +United states engagement with african partners on climate change hydroelectric energy ppt The United States has worked closely with ...,834117 +RT @CNN: How cities across Africa are fighting the effects of climate change https://t.co/zcSZtTsIuP (via @CNNAfrica) https://t.co/DRzqJd2F…,255010 +RT @Independent: Government to 'scale down' climate change measures in bid to secure post-Brexit trade https://t.co/Up9Gd9kvut,797499 +@z0mgItsHutch CNN is the result of decades of boiling down rhetoric to the point where climate change is debated by pundits on air,646377 +"RT @sjredmond: Hey Jerry Brown,climate change deniers are solidifying their support. The Koch Brothers Are Pulling Trump's Strings. https:/…",940776 +RT @abcnews: Westpac's new climate change policy is bad news for #Adani's Carmichael mine in Queensland #ausbiz…,195519 +RT @vornietom: If climate change isn't real then what the hell is up with this turtle https://t.co/HfyZQPzBAr,993798 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,364112 +"RT @cinespia: Happy Birthday @LeoDiCaprio +Thank you for standing up for climate change and human rights. ✌ï¸ https://t.co/k3Ytjn1Rha",197836 +"RT @Planetary_Sec: ���� + +Four-star veterans urge Trump-government to continue U.S. support for combating #climate change…",245546 +"RT @FilmFestList: At Sundance, Al Gore says storytellers can rally the fight on climate change - https://t.co/5hchr3VwhB… ",365759 +Hawaiian Airlines joins international climate change study - https://t.co/W6QReCj9Zx https://t.co/BVU9nsAoGg,896324 +@RMaintainers @mary122514 0bama /9/11/2001 global warming climate change carbon trading scam..killing off 1142 peop… https://t.co/xik2rwNyF9,351010 +"EPA chief: Trump to undo Obama plan to curb global warming | @scoopit https://t.co/TWiPVmS04w + now you can breath more carbon dioxide.",502504 +"RT @latimes: Despite Trump's skepticism, nearly 200 countries pledge to keep fighting climate change https://t.co/YheWWAD9nz https://t.co/l…",332354 +"RT @mike4193496: Bill Nye is protesting Donald Trump. +No one cares about Bill Nye. Old old news. He's a hoax just like climate change & th…",484950 +"@EPA @EPAScottPruitt @WashTimes Humans on the verge of causing Earth’s fastest climate change in 50 million years +https://t.co/6fJMS1WHeX",37265 +"RT @PajaritaTW: no, Alicia. los grandes perdedores son los latinos, los q luchan contra el climate change, los indocumentados, los…",202025 +RT @ChrisCuomo: Notion that all advisers who helped make this decision never discussed global warming with Potus? Come on. https://t.co/sh…,886374 +"RT @CECHR_UoD: Benefits far outweigh costs of tackling climate change - say economists +http://t.co/FvZS45Bidc http://t.co/alfK8fFezb",180486 +@NoahCRothman Problem here is many believe envir regs shouldn't be left to states. Country should act in unison to threat of climate change,687405 +"@EWErickson Is all the data -- polls, election results, alleged global warming -- manipulated? + +What, other than God's Word, is trustworthy?",298447 +RT @BjornLomborg: Don't blame climate change for the Hurricane Harvey disaster – blame society https://t.co/8IKqtsgdfl via @ConversationUK,9338 +"RT @Independent: 80,000 reindeer killed due to global warming melting sea ice https://t.co/n3602Dt8gm https://t.co/mPQ1pNaRep",982971 +RT @EricHolthaus: Just something to keep in mind: A President Trump would halt most efforts to tackle climate change. Not much point of any…,328782 +RT @newsbusters: CNN took a break from conspiracy theories about Russia to promote Al Gore’s conspiracy theories about climate change. #alg…,208788 +Come on china enough of your global warming conspiracies!!!!,477780 +RT @Amazing_images: Here you can see who the victims of global warming are ... https://t.co/NuZDI1Hloy,941588 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,576611 +"@bravenak @smcvea When global warming REALLY hits, somehow climate change deniers will overnight shift gears and bl… https://t.co/CrWBdE61Np",947570 +"@highwaystarzo 1 of the benefits of global warming & international terrorism,is that more people are holidaying in England,ill drink to that",997910 +RT @emmaroller: A climate change skeptic running the EPA is now a reality https://t.co/8JUq66p1Qz,74986 +"RT @ULTRAVlOLENCE: Interviewer: 'What do you think about global warming?' +Melania Trump: 'Hello... He's kind he's strong, he's a great... c…",496365 +RT @JulianCribb: Stephen Hawking has a message for Trump: Don't ignore climate change https://t.co/11SUBs0VlH,502482 +"Finally, Paris climate change agreement designed by crooks- #Trump is not buying this crap https://t.co/afS8vBckLs",961810 +"RT @GovMarkDayton: Today, Gov. Dayton joined the #USClimateAlliance, joining Governors across the U.S. to address climate change…",94242 +RT @scienceclimate: Do you teach climate change? Join the climate curriculum project. @edutopia https://t.co/cpxsaxzjvr #lessons…,183339 +"@FoxNews @brithume @POTUS shut it down & arrest or fire all of these Democrat saboteurs, their 'climate change' hoax & lies end right now",780613 +RT @whosanto: if global warming is real why my girl cold hearted,658499 +RT @Doughravme: The only way States can fight against climate change is 2 work around the treasonous authoritarian conman in the WH https:/…,144485 +I believe in Mr. Trump about as much has Mr. Trump believes in climate change,485804 +"In Trump's America, climate change research is surely 'a waste of your money' https://t.co/wMgxASPhmz",265961 +"RT @CarolineLucas: One single mention of climate change, with no detail at all. Nothing at all on air pollution. Total environmental failur…",974437 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,430035 +RT @miel: if you are not wanting to 'get political' consider this - trump's actions re: climate change will render this plane…,906357 +RT @alyshanett: 92 degrees in November... da fuq?? But climate change isn't real... 😒,327332 +RT @Fusion: Why the scariest response to climate change is finally being taken seriously: https://t.co/jPL6QR5n54 https://t.co/LlgQFlVIly,460921 +RT @PrisonPlanet: A bunch of Oxford elitists want to tax the food of poor people because 'climate change'. How about fuck off instead? http…,493471 +RT @UN: #WorldOceansDay: Crisis beneath the calm of Seychelles as climate change threatens coral reefs #SaveOurOcean…,16241 +RT @clareshakya: Denying denial: time to arm ourselves with facts & shore up ambition to tackle climate change @IIED @andynortondev https:/…,58712 +17 U.S. communities are actively relocating due to climate change. Upwards of 13 million Americans will be at risk… https://t.co/DVoRZ5ZrD8,816270 +"RT @elimeixler: .@AJEnglish appears to have taken down a heinously anti-Semitic tweet about climate change denial. +Cuz deleting me…",910551 +RT @pettyblackgirI: Well considering her husband doesn't even believe in climate change the 'gift of nature' won't be able to heal sick…,771337 +"RT @TonyKaron: 'Do you now, or have you ever believed that climate change is caused by human activity?' https://t.co/RnHCvwRrAI",573204 +"RT @Scout_Finch: It's climate change and saving the planet and mankind, not picking where to vacation. https://t.co/SeYz8wWGWm",367907 +"@RVAwonk + +That's the guy who brought a snowball into the house floor and said it was proof that global warming wasn't a thing, isn't it?",372518 +@DavidCornDC @MotherJones does he know there's a difference between weather and climate change or does he lump them together? Oh right...,639437 +"RT @CLMTBerkeley: Head of EPA denies carbon dioxide causes global warming – video: Scott Pruitt, the new head of the US Environmental… http…",474666 +RT @washingtonpost: EPA chief pushing governmentwide effort to question climate change science https://t.co/x0g3CwNlrR,648482 +RT @JGreenDC: The most polarized on the issue of climate change scored the highest on assessments of scientific literacy https://t.co/6LNDm…,143860 +RT @insideclimate: Gov. Jerry Brown warns Trump that California won't back down on climate change https://t.co/CO0p9PU3Fd,114275 +"RT @USMC_DD: Questions Trump never answered +Obama's wiretapping evidence? +Did Russia hack? +Is climate change a HOAX? +Why no cameras @Press…",358451 +"RT @xanria_00018: You’re so hot, you must be the cause for global warming. +#ALDUBLOSTinLOVE @jophie30 @asn585",576988 +"@darrenrovell pollsters 👎Like the deniers of climate change. +They have no clue!",346022 +"RT @globalnews: “In Paris, we came together around the most ambitious agreement in history to fight climate change,” Obama said. https://t.…",533375 +RT @sloat24: Damn I wish global warming was this good when I was a kid so I coulda trick or treated in 70 degree weather,887942 +RT @rabihalameddine: Trump calls global warming a Chinese hoax. Clinton emails.,643526 +"RT @AstroKatie: In case you were wondering: no, 4 years of US-led inaction on climate change will not go well for the planet. Now is when i…",435200 +RT @KeepsinItRealz: I blame global warming and something about gay wedding cakes. https://t.co/x4L2JN2ark,73621 +RT @highimjessi: America's new president doesn't believe in climate change and thinks women who have abortions should be punished. Welcome…,430733 +"Trump just had to do it...stared at eclipse without glasses. Scientists said NOT to , but they believe in climate change so must be false",187712 +RT @therealroseanne: #Obama's bullshit has caught up w him: global warming is caused by radiation from Japan's nuclear accident which he ha…,216777 +"RT @HillaryClinton: 'If you believe in science and that we have to act on climate change, then you have to vote!' —Hillary https://t.co/jfd…",236330 +"Scott Pruitt, the head of the EPA, said that carbon dioxide was not a primary contributor to global warming https://t.co/PFgvJgbMNV",615817 +"Nicholas Stern: cost of global warming ‘is worse than I feared’ + +https://t.co/6w3nouwg3V",279661 +@BadAstronomer @Syfy How about we study global warming on some hypothetical expoplanet. Those Earth studies are just to provide a baseline.,515797 +My one request: during all the coming coverage of the hurricane please make a note of how often you hear climate change mentioned.,846929 +"RT @Bentler: https://t.co/iB1xnJDJKi +A man who rejects settled science on climate change should not lead the EPA +#climate… ",927705 +Humans Caused 100% of the Past Century’s Global Warming - Unnatural Causes 100 percent of global warming over t... https://t.co/KvzPmEJfBI,337882 +Must-watch: Leonardo DiCaprio's climate change movie 'Before the Flood' - https://t.co/qJQxWXN6aF https://t.co/W75wlPjKz1,651214 +"RT @_Makada_: Sahara Desert gets first snowfall in almost 40 years, but the fake news media told me global warming is real! + +https://t.co/L…",751056 +"RT @Hope012015: Trump to undo Obama plan to curb global warming, EPA chief says https://t.co/RME4KwJ5iQ via @BostonGlobe",248125 +They aren't bright enough to understand. I will translate. 'Tattoo Kardashian iPhone8 herbal enema climate change s… https://t.co/76uYPGh3do,659759 +First two paragraphs are loaded with bullshit about climate change and forced carbon tax.. this government has got… https://t.co/KoEgsFZLGf,44797 +"RT @cleanh2oaction: Scott Pruitt misled the Senate at least 3 times abt climate change. As a former baseball player, he should know wha… ",798117 +RT @Niki_London: Not surprised. This is a man who thought global warming was propaganda. https://t.co/uA5lozZR5Q,638313 +New Post: Global warming causes Alaskan village to relocate. How to stop climate change before it’s too late https://t.co/pzKU7Ubom8,204555 +RT @ClimateTracking: Why is #women participation and engagement important in climate change work both in policy and grassroots level?…,540417 +RT @michaelhallida4: 97% of scientists told the LNP climate change is real and happening so Josh Frydenberg say COAL will save you. Morons…,352057 +"RT @SuzanneWaldman: 'Activists, treating climate change as a problem validating their policy goals, contributed to climate skepticism.' htt…",799088 +"Getting used to the snow in Tabuk, KSA (desert) was weird but snowing 190km north of Riyadh? We have serious global warming issues- Wut even",934720 +"The longer we wait to take action on climate change, the more difficult and expensive it will get:… https://t.co/xjzE7XXmp4",529609 +RT @albertasoapbox: Why a #C02 tax? I would like to see the Alberta #PCAA have a public discussion on the science of global warming. C02 la…,358662 +"RT @UberFacts: President-elect Trump has selected Myron Ebell, a climate change skeptic, to lead his Environmental Protection Agency transi…",704245 +Trump-fearing scientists remove 'climate change' from proposals - https://t.co/Pl8D4zh0Ve,932974 +"£1.5 billion for climate change denying creationist anti-abortion, anti-science, homophobic fraud and terror enablers.",531048 +Deny climate change and stop protecting our nation's natural spaces. This is how we make America great again. https://t.co/rMQD6YKklU,71743 +"RT @ThePoke: #recap 23 amusing signs to distract you from the perpetual doom that is Brexit, Trump & climate change… ",767345 +Group says Nigeria needs 2.4m litres of biodiesel daily to meet climate change… https://t.co/qSCg7iwHcV #EnergyNews,530839 +RT @NRDC: G7 leaders blame US for failure to reach climate change agreement in unusually frank statement. #ParisAgreement https://t.co/dbX…,815047 +"RT @MissLizzyNJ: Blizzard Warning: A bunch of snowflakes will try to shut this trend down and replace it with muh global warming. + +❄️��❄️��❄️…",128752 +"RT @joostbrinkman: Cost of climate change: World's economy will lose $12tn unless GHG's are tackled. Thats $12,000,000,000,000 #ActNow http…",39654 +RT @KvanOosterom: Celebrating entry into force of #ParisAgreement to counter climate change with #SIDS colleague PermReps hosted by…,132905 +"RT @samgeall: China understands the need to mitigate climate change. But also: wants to move into position of technology leadership, restru…",116459 +I admire the irony of David Koch being a major sponsor of NOVA while at the same time pushing climate change denial.,165532 +called global warming a hoax perpetrated by the chinese' I'm wheezing pls watch this https://t.co/UfiPVNyYGb,502758 +RT @mitchellvii: Americans are even less worried about Russia than climate change.,284295 +RT @SaleemulHuq: Need to invest in long term capacity building to tackle climate change instead of sending fly-in and fly-out international…,29769 +RT @YaleE360: Botanist plans to use unique biodiversity of Appalachia to save plants from climate change & boost region’s economy https://t…,818671 +RT @LeeCamp: A 1991 Shell Oil video shows they KNEW about the dangers of climate change all along [WATCH] https://t.co/ikn9y3NU7m,201465 +Does Trump getting elected mean global warming isn't real? Find out tomorrow at our annual Flat Earth Society Convention,663088 +Scientists say climate change is causing reindeer in the Arctic to shrink - The Week Magazine… https://t.co/KqKE89sIF4,184683 +@ChrisMBassFTW I'm surprised more businesses haven't parted ways with GOP due to the religious nutters. Denying climate change?! Bonkers!,281280 +RT @mttmera: Dry ice will save global warming thanks dayjah,496917 +RT @bencaldecott: Mark Carney: firms must come clean on exposure to climate change risks | Business | The Guardian https://t.co/kBGGOIDWN3,229445 +RT @drewepting: How about that global warming folks,906993 +"RT @PoliticKels: Don't worry about global warming. We're going to build a new Earth, a bigger Earth, it will be the best Earth ever #TrumpN…",734003 +RT @TIME: 'This is the pivotal moment in the fight against climate change' https://t.co/IWaQ77MD3f,970888 +RT @CharlieDaniels: I cant remember if Al Gore invented the internet before or after he invented global warming,75892 +RT @YourAnonNews: Why don't people understand Exxon Mobile and the Koch Brothers are funding the narrative that climate change doesn't exist,829171 +RT @newscientist: It just got harder to deny climate change drives extreme weather https://t.co/dbI8WdX0fW https://t.co/AKvQVfjmTg,487955 +"RT @Jackthelad1947: Wild weather & climate change #StopAdani #keepitintheground #auspol #qldpol #science + https://t.co/UCLs3zB3Pb",127968 +World leaders duped into investing BILLIONS by manipulated global warming data https://t.co/iLEtQKfB14 … https://t.co/n4pUAYxXER,274632 +RT @MaryCreaghMP: Theresa May should use her meeting Donald Trump to tell him that climate change is not a 'hoax'. https://t.co/J0xzYRBYag,731069 +"@donttrythis I hear this a lot in my part of the country, show me recorded data showing evidence of climate change from 1000 years ago.",221632 +@JenniferGrayCNN @hm5131_massey Of course one candidate believes in the science of climate change the other dismisses it.,769168 +RT @realLO2017: @realLO2017 If 'global warming' is #real then why do we have so many snow days? China is responsible. Sad!,641285 +"RT @GeorgeTakei: Pope Francis gave Donald a copy of his climate change encyclical & a treatise on progressive economics. + +Hope he included…",454883 +@POTUS @realDonaldTrump Donald most intelligent speech on 'climate change'... https://t.co/ixYhB4CbLy,821566 +Moroccan vault protects seeds from climate change and war #RABAT #Morocco #seedbank https://t.co/RO9t0IK4HQ https://t.co/7FqCCuyFqT,314629 +RT @CivilJustUs: How do they expect us to care about global warming with all this penguin on penguin crime?? https://t.co/HypysWHvVV,82988 +"RT @JoshButler: I went to Antarctica with @TomCompagnoni for this massive project on climate change, science and exploration… ",696785 +RT @naheinyaar: Find yourself a guy who cares about global warming and the bees dying,797805 +RT @washingtonpost: Analysis: Hurricane Harvey and the inevitable question of climate change https://t.co/k3sRVeamO9,525201 +"#ClimateChange #GIF #New #world, green, earth, waiting, sign, sitting, climate change, soul… https://t.co/j6qZUpV3R1 https://t.co/KjOSdnyrcI",599152 +"@luisbaram @EcoSenseNow rule #1 of climate change alarmism, the current year is always the hottest on record.",466357 +RT @GadSaad: imply that I am a climate change denier BUT it does imply that I don't believe that my soccer injuries were caused by climate…,191679 +RT @sierra_markk: Happy Earth Day! Stop denying climate change! Science not Silence!! I love earth!,777617 +"RT @tveitdal: G/: Trump’s colleagues want to change his instincts on climate change, but few can predict how he might react…",3581 +RT @NRDC: Flat-out denial of accepted science: Pruitt says he doesn't agree CO2 is a primary contributor to climate change. https://t.co/NP…,176471 +RT @UCSUSA: Will fossil fuel companies join in fighting #climate change? https://t.co/zQk51TivZE #CorporateAccountability https://t.co/2Doj…,188510 +RT @postgreen: The quest to capture and store carbon – and slow climate change - just reached a new milestone https://t.co/J73phLV7de,852019 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,687573 +RT @SethMacFarlane: HRC proposes installing half a billion solar panels by the end of her first term. Trump thinks climate change is a hoax…,1499 +"RT @DaniNierenberg: 'Let's give the next generation agriculture that protects soil, promotes biodiversity, fights climate change.â€ -K.…",687976 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,815050 +RT @ajplus: Is this deal to fight climate change too late? 😕 https://t.co/e76UJNCYN8,670948 +"RT @davatron5000: A climate change denier as head of EPA. +A creationist as head of Education. +A Nazi-inspired database for Muslims. +Ugh. Th…",321255 +@EPA Scott Pruitt wants to set up opposing teams to debate climate change science https://t.co/Mz1LWpIsBc,683149 +RT @Thomas1774Paine: How bout you refund the billions you've stolen in federal grants to fund your portfolio. Real climate change: To yo…,157906 +"RT @MarkDiStef: Yes really, Australia’s senate set aside one hour to debate “the disputed theory of global warming' https://t.co/71ryMJkDbX",723426 +"@erinisaway if you're able to turn a blind eye to climate change & consider it an issue for thirty years down the line, you're very wrong.",977979 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,693058 +"RT @suzlette333: A million bottles a minute: world's plastic binge 'as dangerous as climate change' #Pollution #ClimateChange +https://t.co…",917095 +"RT @MDSebach: If by 'climate change experts' you mean 'catastrophic climate change cheerleaders' or '...partisans,' their fear is…",197950 +RT @InfoDesign_Lab: We discuss how to communicate climate change with @bjornhs and Espen Larsen @klfep @unioslo https://t.co/LWK3jojtDY,812383 +It's the beginning of November n I'm wearing jeans n a t shirt n sweating but y'all still think global warming doesn't exist ðŸ¸â˜•ï¸,122505 +Ice core samples used for climate change research melted after freezer failure https://t.co/1zoDcSJdYV,913830 +"this year is snowing more in USA/canada/europe and sahara desert than other years, i can agree with trump that global warming is hoax xD",286098 +"@Sluttela not this year apparently, global warming kill us all",76092 +Badham favours workers (coal jobs) over climate change (too much fossil fuels) - 'jobs save nature' or some such b… https://t.co/V4JeXLDO8u,544534 +"RT @explicithooker: me: Leo come over +Leo: i can't im busy +me: my friend said global warming isn't real +Leo: https://t.co/kveRTYlpIi",370160 +"RT @Tomleewalker: u talking about tackling climate change + +▶ ��──────── 23:07:42 + +u talking about the environmental effects of animal ag + +▶…",527515 +"As climate change heats up, Arctic residents struggle to keep their homes #Arctic https://t.co/SM9eYMZ9Z4 #Arctic",617472 +RT @climatehawk1: Insurers count cost of #Harvey and growing #risk from #climate change | @reuters https://t.co/eyZXdWtyUT…,177127 +RT @TheAuracl3: Vice President Elect Pence just confirmed an anti-LGBT agenda is definitely on and Trump appointed a climate change…,173098 +RT @AnimalBabyPix: The effects of global warming https://t.co/NV3eFwBk6D,328325 +"From Oslo to Sydney, #cities are leading the way in setting ambitious goals to curb climate change. https://t.co/FnyNUb8k2G",443275 +RT @RogueEPAstaff: EPA has taken down its climate change website. #climatemarch #altgov https://t.co/qp8CBvZQB0,662169 +RT @NowaboFM: Now @POTUS will change his opinion: climate change may not be invented by China - but by Japan. Great stuff.…,745784 +3/ objective journalism sticks to facts: 'science says climate change is real' - and avoids ascribing motives etc.… https://t.co/u1fsUDQ4xE,877890 +RT @pleatedjeans: Santa gives coal bc the North Pole is cold af he's trying to speed up global warming in 100 years his workshop will be be…,129486 +Scientists just published an entire study refuting Scott Pruitt on climate change: https://t.co/GG2xjz0fz7,57431 +RT @thehill: EPA removes climate change page from website amid 'updates' https://t.co/LeALQozE8L https://t.co/7uch58zYUH,184494 +RT @Fusion: America is about to become the only country in the world with a leader who doesn’t think global warming is real.…,653677 +"@FCPSMaryland We have to have a snow day tomorrow, with global warming we won't have many left. Fit 'em in while you can right?",77414 +RT @LodhiMaleeha: I was honoured to deposit Pakistan's instrument of accession to the Paris agreement on climate change at UN today. https:…,766841 +RT @nature_org: World leaders reaffirm their commitment to climate change and the #ParisAgreement. https://t.co/q6dKopWrSo https://t.co/BMp…,340443 +"RT @rootsinterface: i love being queer, supporting women & poc & their rights, believing in climate change & evolution & basic science, aid…",331063 +@GregHands @tradegovuk Agreed. Does the forecast account for works required for global warming preparation/ resilie… https://t.co/uC88QGCnvi,560136 +RT @GreatGasScam: #FossilFuel driven climate change disaster yet #auspol throw our $$$ at their mates in #Shale #CSG #GAS. Smacks of…,791454 +1 News • '‘Fight against climate change is a moral obligation’' via @233liveOnline. Full story at https://t.co/j7W89CP1NS,804182 +RT @RichieBandRich2: 75 degrees in Chicago on November 1st...global warming but aye it's bussin,996054 +"RT @NewsHour: What a Trump administration could do on immigration, health care, climate change & more in his first 100 days. https://t.co/Z…",997577 +"Pruitt’s EPA office deluged with calls after he questions science link between human activity and climate change~ +https://t.co/u1mXTADByw",678955 +politico: Merkel's visit this week will test whether allies can persuade Trump not to blow up their efforts on global warming… …,146227 +RT @GEMReport: Both teachers and students need to learn about climate change and its underlying causes #COP22…,299148 +"#EPA chief Scott #Pruitt: Carbon dioxide not a primary contributor to global warming https://t.co/OU0IWzeYG1 +#Embarrassed as a country yet?",964213 +G20 finance ministers ditch anti-protectionist pledge and #climate change commitment after US opposition: City AM https://t.co/kg2Lz6IxpP,703910 +"RT @cbcasithappens: Canadians help U.S. scientists protect climate change data: +https://t.co/xdeifq0G7l https://t.co/mC1QEozHTf",651805 +RT @Reuters: EPA chief unconvinced on CO2 link to global warming. Via @ReutersTV https://t.co/eeG5RieyTY https://t.co/l67L0dr6AZ,360112 +RT @MBlackman37: #ChrisChristie successfully getting tan is proof global warming exists.,554929 +Obviously the scientists behind the global warming conspiracy have calibrated these plants incorrectly. https://t.co/Z4oHmf3REn,460850 +@spacealienzz & people here still have the nerve to say global warming isn't real !,266567 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",988459 +RT @climatehawk1: China blames #climate change for record sea levels | @Reuters https://t.co/zmKndsamHI #globalwarming #saveourfuture…,54960 +@AlwayzB_ the problem here is.. what is the long run when we cut funding to the EPA and climate change destroys the planet,262128 +Having a phone without a headphone Jack will be like having a president who doesn't believe in climate change https://t.co/8dOaodLoxO,390911 +"@YogiBabaPrem @FOTCangela @CNN @DrJillStein Well if you voted Jill, how's climate change going for ya among other t… https://t.co/hau4lGqJrq",663234 +@helenhuanggg @joyceala it's a waste of wood and causes global warming tho. Killing trees for no reason,207607 +#bbc US diplomat in China quits 'over Trump climate change policy': The Beijing-based envoy… https://t.co/7UlFff6210,166012 +"RT @charliejane: It's definitely true that fiction should be dealing with climate change way more, but there's been some great stuff: https…",215025 +RT @jameshupp: Batteries are great but the best way to fight climate change is to elect 70 or so additional Democrats to Congress. https://…,819232 +"seriously, though, would saying 'climate change is an alien conspiracy' really be any sillier than denying its existence completely",738464 +"As climate change heats up, Arctic residents struggle to keep their homes #Arctic https://t.co/H2w6cStnUy #arctic",152114 +@POTUS @NWS oh and global warming arming is fake news right?,812759 +China tells Trump that climate change isn't a hoax it invented https://t.co/rVm8xZR6Pv via @business,249602 +"RT @DavidParis: ahaha the ALP are saying, fresh off their approval of Adani, that progressives need to work together on climate change. FFS…",802862 +RT @jamespeshaw: A strong Green heart in the next progressive govt means ambitious climate change legislation in the first 100 days https:/…,713304 +The entire global warming mantra is a farce. Enlist in the #USFA at https://t.co/oSPeY48nOh. Patriot central awaits… https://t.co/Qb5F99nDKF,577367 +RT @Channel4News: .@LeoDiCaprio calls on citizens to vote for “people who believe in climate changeâ€; @realDonaldTrump has called it…,491349 +RT @ATBigfoot91: Hey MAGAs: how stupid are you when 100K PhD.s tell you global warming is caused by CO2 yet you never even heard of…,652650 +"@televisionjam issues of unemployment, infrastructural & economic development, climate change, social intervention programmes & civic pride.",967930 +RT @davonmagwood: When you believe global warming is fake news. You do dumb shit like this. https://t.co/V8tiREQfvy,900531 +im howling at these global warming memes but for real im acctually worried about the environment https://t.co/xTBy9fRiSv,869994 +RT @wef: 7 things @NASA taught us about #climate change https://t.co/Gxxm61F2iB https://t.co/xvmMjzUWWZ,677812 +RT @SenSanders: We have a president-elect who doesn't believe in climate change. Millions of people are going to have to say: Mr. T…,576783 +RT @NYtitanic1999: Boris Johnson thinks no one should tell Donald Trump he's wrong about climate change https://t.co/4Zfs2u6mKt https://t.c…,401607 +RT @benandjerrys: We've come too far to back down now. We must continue to fight climate change and #KeepParis. Join @ProtectWinters…,935016 +RT @TheInfidelAnna: Im not willing to change my lifestyle because of climate change. I dont care. I want ISIS wiped out #MAGA…,743175 +"RT @GhostPanther: Biggest loser tonight is the human race. Cause climate change is gone as an issue in Trump America. + +THIS IS A HUGE DEAL.…",966359 +You know who doesn’t care about climate change? Everybody. #GetReady https://t.co/3CgxfwUGPp,208243 +RT @elonmusk: @TheEconomist ... on how to address threats of climate change. They do require a global response.',332009 +"RT @1followernodad: parent: I'd do anything for my children! + +Scientist: here's how to stave off climate change so your children can stay o…",486157 +RT @leepace: Bali. The mud under mangroves hold one of natures best solutions to climate change. Blue Carbon Solutions.…,343615 +RT @bvdgvlmimi: completely normal. climate change is absolutely a myth. nothing to see here folks let's keep pretending the world i…,462164 +RT @thinkprogress: TV coverage of climate fell 66 percent during a record-setting year for global warming https://t.co/uliCapYn4e,407405 +RT @LeeCamp: 44% of honey bee colonies died last yr due to climate change& pesticides. 90% of great barrier reef has died. When bees &ocean…,931719 +@a2controversial BTFO global warming conspiracists,642445 +"@TwitterMoments 'Uh......fake news! Ain't no such thing as climate change' + +- A republican, somewhere in America.",940529 +UC Berkeley researcher debunks global warming hiatus - SFGate.. Related Articles: https://t.co/WskgTLf1vw,693850 +RT @richardbranson: Everyone from Sir David Attenborough to Rex Tillerson knows climate change is critical: https://t.co/m5BWwat5Hu https:/…,846956 +RT @MDBlanchfield: Al Gore thought Trump ‘might come to his senses’ on climate change. Nope. - The Washington Post https://t.co/B1m76WmtGA,999669 +RT @sophiaxemily: Obama has spent time creating a plan for climate change issues and it's gonna go down the drain bc TRUMP THINKS GLOBAL WA…,256463 +"RT @craigtimes: Jack Black calls @FLGovScott 2x about #Florida's lack of action on #climate change, can't get thru https://t.co/xpRzEHpONy…",37534 +@HuffPostPol - We all know climate change is real.,930321 +"RT @CapitolAlert: As Trump appoints climate change denier to EPA transition team, @JerryBrownGov doubles down on climate change fight https…",495749 +Wow......the Chinese are soooooo good at this climate change 'hoax' smh....... I sure wish our next president had a… https://t.co/FPmpm5uYS4,363368 +"Stopping global warming is only way to save Great Barrier Reef, scientists warn: Improvements to water quality or… https://t.co/EmoIfnzRWB",482774 +RT @WinWithoutWar: Rex Tillerson funded climate change deniers for 27 years despite Exxon’s knowledge of climate change in 1981. #rejectrex…,968706 +RT @michikokakutani: The Arctic is undergoing an astonishingly rapid transition as climate change overwhelms the region. via @sciam https:/…,984473 +Al Gore offers to work with Trump on climate change. Good luck with that. - Washington Post https://t.co/kn4RGZw1B1,537348 +RT @obliviall: «Il concetto del global warming è stato creato dai cinesi in modo tale che l’industria manifatturiera Usa non fosse competit…,511380 +"RT @mcarrington: SHOCK: The 'Father of global warming', James Hansen, dials back alarm https://t.co/vHKoqtuKXP #FAKEGlobalWarming… ",74611 +"@criticalthinkrs @nlingua @realDonaldTrump you mean saving some Americans job , focusing more on economy than climate change maybe",714843 +@BreitbartNews 93 million a day??? That would probably solve the 'climate change' issue.,83398 +RT @business: China tells Trump climate change isn't a hoax it invented https://t.co/eWVQtI28t3 https://t.co/7qV3RfzTTE,953071 +@Not_a_rake1234 @AnaBulger2 @KgiardenKaren @jjauthor @KevinPlantz don't make stereotypes. She might believe in some kind of climate change,644182 +RT @ingridfcnn: More #Science facts adding to body of research on #climate change. Perilous warming increase in #oceans.…,636836 +Rex Tillerson made Trump’s position on climate change seem like a hoax https://t.co/adb6oek74b,591233 +"Under Obama, national parks tweeted about climate change. + +Under Trump, they tweet about shit. https://t.co/kANnVpZj9F",479785 +"RT @SenSanders: When climate change is already causing devastating harm, we don't have the moral right to turn our backs on efforts to pres…",366080 +@iainkidd Genocide and mass rape are more horrific and evil. Irreversible climate change is potentially more catastrophic. Apples/oranges.,86880 +"RT @CSUBiodiversity: Conserving natural sounds is an important, yet often overlooked practice, especially as climate change alters the s… ",285987 +@kerrence Good thing climate change is a liberal hoax and weather won't continue to get more and more extreme going forward,560727 +"If global warming doesn't exist, then why did club penguin shut down?",248082 +RT @corpsemap: you know who was really good at science? the oil company guys who figured out climate change in the 1960s. didnt help much,53406 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",152769 +"RT @SenBookerOffice: In May 2016, Scott Pruitt said the debate over global warming “is far from over.” 97% of scientists & a majority of… ",953075 +How informed are you on climate change? Take the quiz and find out. https://t.co/bHqs83HQ70,798231 +RT @DmitriMehlhorn: Phrase 'climate change' scrubbed from NIH website https://t.co/G0NPCCwAR2,596716 +"Trump's transition team crafting a new blacklist—for anyone who believes in climate change + +https://t.co/NhzeA2RcLG",496433 +"RT @J_amesp: Thankfully, America's autocracy will be short lived and the world we know will be killed by climate change before we repeat th…",68652 +RT @altUSEPA: 75% of extreme heat events now attributed to climate change. https://t.co/TW5MMWQmIx,415102 +RT @k_leen022: let's just keep pretending global warming isn't a thing and enjoy the 60 degree weather in january 👍🏼,247580 +The bigger pictture: combining #climate change reduction #policies with ensuring #humanrights https://t.co/ycY0soFWbP via @ecobusinesscom,739680 +"RT @InvestWatchBlog: Trump killed Obamas, Merkel & China's global climate change initiative today. ( The Paris Act) - https://t.co/POwlb1n6…",467608 +"RT @TheReel_in: Watch, absorb and act upon Leonardo DiCaprio’s dire warnings on climate change in ‘Before the Flood’ https://t.co/7NpajBFLrG",120848 +@JodieMarsh How do you feel about Trump's denial of climate change though? He says one of his first jobs will be to cut funding...,799462 +RT @kshaidle: .@ClimateDepot meets up with @SheilaGunnReid at the UN climate change confab in #Marrakech #COP22... #MAGA https://t.co/aHUiL…,580292 +"RT @ZachTBott: Global warming and climate change isn't real, so fuck the earth amiright??",943835 +"RT @jfberke: Bloomberg has a message for Trump on climate change. + +https://t.co/84G5pzeUwN",990402 +"Climate talks: 'Save us' from global warming, US urged https://t.co/uwHvPMeE5l #BBC",955360 +Why didn't Theresa May make a PUBLIC declaration about Trump's climate change u-turn? https://t.co/3I7N1OqVhI via @MidWalesMike,947963 +"@sidharth_shukla well, after your contribution at global warming phenomena you owe to humanity a kind of compensation ����������",784748 +RT @MichaelSpenc72: Questions about climate change ? This gif says it all. Retweet. https://t.co/YrdNU6eYig,502914 +"Harvests in the U.S. to suffer from climate change, according to study https://t.co/96EpDPwTIt https://t.co/NHdC7alKOz",365296 +RT @ClimateBook: Call US EPA administrator Scott Pruitt +1 202-564-4700 and tell him global warming is real and is due to CO2 emissions.,158992 +Oil & gas as part of the solution to global warming: materials. Read https://t.co/rg5sqrlkfG,471246 +David Hempleman-Adams urges climate change action after Arctic voyage https://t.co/sTIJ402RFO,345671 +@Dad613 @democracynow @mgyllenhaal nuts is ignoring climate change so you can keep greedily polluting.,687199 +"Charlie Clark talks Uber, climate change and fentanyl at mayors' meeting with Trudeau https://t.co/n1pUtHZsVY #uber",321723 +"RT @ddlovato: #IVotedBecause I believe in equality, we need comprehensive immigration reform, I am pro-choice and global warming IS real. #…",174439 +RT @FollowTheVegan: People who care about climate change: one of the biggest factors a person has personal control over is eating vegan. ht…,442391 +RT @ClimateTreaty: Mangroves and marshes key in the climate change battle - Huffington Post https://t.co/y1W5N3SvIo - #ClimateChange,750827 +"@RaylaKrummel Lmao I believe that to but not about this, if you believe global warming isn't real then you're wrong… https://t.co/PkvTKhG39K",171801 +RT @rabiasquared: And climate change has much to do with this. Pruitt is helping dig this grave. https://t.co/58dXCQ0wHW,165677 +SPPI is a green advocate and helps in the preservation of more trees to help curb climate change. https://t.co/ClawMrUPJJ #exteriorpainters,563428 +"RT @sydneythememe: Donald trump, the now president of the United States...... does not believe in global warming ðŸ˜",464821 +The unthinkably high stakes for climate change that we’ve completely ignored this election https://t.co/jItgZUnfKs via @voxdotcom,116432 +"Latest climate change scare story: Rising oceans to produce '2 billion climate refugees' by the year 2100, alarmis… https://t.co/mq9Iv2omaw",204331 +"RT @jedrlee: Hey girl, are you climate change? +Because I'm going to ignore you until you fuck me.",644706 +"RT @ABCPolitics: Trump team compiling names of Energy Department staff who worked on climate change policies, document shows… ",305351 +RT @NYTScience: Want a real snapshot of Trump's climate change policies? Take a look at the proposed Energy Department cuts…,731500 +"@MauritsGroen @Standplaats_KRK Ye-, men denkt aan abrupt global warming zelfs- en dan zijn we mega-fucked, en snel ook",17208 +RT @Thomas_A_Moore: polar bears for global warming https://t.co/6AITzjHapC,19337 +i think the day i understand why many people don't think climate change is real is the day i die,8755 +"RT @PeterHeadCBE: +40C never been recorded in UK, but could quickly become common with climate change. Also drier S Coast,wetter West. http…",133797 +@climateguyw This hot is nonstop - thanx climate change. We have weathered enough heat for the summer-at least rain… https://t.co/DJbZnWJZOK,255140 +RT @mcnees: Periodic reminder that Trump is a hypocrite who knows that human-driven climate change is real. https://t.co/s0KMY79Wk3,627021 +RT @PhotograNews: Meet the woman using photography to tackle climate change - The Independent https://t.co/cryWp9tIeh,914045 +#weather King County among US hotbeds of belief in global warming – The Seattle Times https://t.co/k73QzA3xX6 #forecast,763365 +RT @grist: Major TV networks spent just 50 minutes on #climate change (COMBINED) last year https://t.co/Wm8OGXEN1b https://t.co/RFXvU56uum,655183 +RT @tweetotaler: Today's @PLOS Reddit AMA: #scicomm researchers answer Qs on science literacy and climate change. https://t.co/SRDwdDvhVW #…,773911 +"When asked about climate change, Hillary Clinton stated that she will 'Deliver on the pledge' President Obama made to combat global warming",411123 +RT @benmekler: It's 91 degrees in mid-November and the president-elect wants to cut 100 billion dollars in federal climate change spending,125139 +Watching Bill Nye the Science Guy special on climate change. One dude just leaves us 15 more years to survive. Doomed,647348 +RT @StephenSchlegel: she's thinking about how she's going to die because your husband doesn't believe in climate change https://t.co/SjoFoN…,335490 +"Shrinking glaciers are ‘categorical evidence’ of climate change, study says https://t.co/Nd58nlqfjF",660005 +"RT @ULTRAVlOLENCE: Interviewer: 'What do you think about global warming?' +Melania Trump: 'Hello... He's kind he's strong, he's a great... c…",612647 +RT @Complex: .@BillNye on climate change under Trump: 'Maybe the world will end' https://t.co/KPW3tq2082 https://t.co/NzK32hWIxg,53118 +"@CNNPolitics @cnnbrk taking money from the little people cant fix global warming, its a ponzi scheme to steal from poor to give to liberals",402290 +"Tackling climate change doesn’t cost the Earth, and Britain is the proof, writes Michael Howard @guardianopinion… https://t.co/8VrTy58tmb",954816 +RT @ClimateRealists: Three Cheers: Another US agency deletes references to climate change on government website https://t.co/yvhm28dBRt,285572 +pnwsocialists: Microbes in soil are essential for life and may help mitigate climate change via /r/climate … https://t.co/bV7LDB5RnC #just…,682172 +RT @GlennKesslerWP: The Trump administration just disbanded a federal advisory committee on climate change https://t.co/t8LenfJl5S,229711 +Older politicians that deny climate change are too old to care. It's time for politician change.,17840 +"RT @SteveSGoddard: 'for the last four decades the global warming industry has been almost wholly under the control of crooks, liars, ....'…",959088 +RT @ClimateChangeB: Guest Opinion: Time to act on climate change #ClimateChange https://t.co/4ijOsrYEZz,638708 +RT @alexwagner: The areas of the US that will be most disproportionately affected by climate change are red states in Trump Country: https:…,940588 +@SenSanders scientists disagree in means of dimension not in means of origin of global warming and climate change as such.,288271 +RT @a35362: Scientists explain apocalyptic effect of Trump pulling out of the Paris climate change agreement…,961513 +Just watched Nat Geo's documentary about climate change! #BeforeTheFlood #FeedTheMind #BeInformed,46205 +RT @kazahann: & this will be their pretext for Iran 'US Navy emphasized that climate change poses a threat to national security.'https://t.…,27319 +RT @ScienceNews: What’s the cost of climate change for your county? https://t.co/K6dXuOdebc,634943 +"RT @BrittanyBohrer: Brb, writing a poem about climate change. #climatechange #science #poetry #fakenews #alternativefacts https://t.co/RpUs…",895714 +"2016: the year climate change came home: During the hottest year on record, Karl Mathiesen travelled to Tasmania… https://t.co/WwSrJQfvMg",875167 +RT @loop_vanuatu: Pacific countries positive about Fiji leading the global climate change conference in November. https://t.co/PIPRndhkYd,78329 +"RT @xanria_00018: You’re so hot, you must be the cause for global warming. #ALDUBLaborOfLove @jophie30 @asn585",867455 +RT @chloebalaoing: climate change is a global issue that's only getting worse. eating plant based is the least amount of effort that h…,470892 diff --git a/tweet.png b/tweet.png new file mode 100644 index 00000000..e7acf9f1 Binary files /dev/null and b/tweet.png differ diff --git a/word_cloud.png b/word_cloud.png new file mode 100644 index 00000000..9dc0cfc8 Binary files /dev/null and b/word_cloud.png differ