Data from the Trump Twitter Archive: https://github.com/bpb27/political_twitter_archive
-
-
Save jmuyskens/7afd1f9f2b6bd0b767b2df346d39a847 to your computer and use it in GitHub Desktop.
Mister Nester
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
font-family: "Helvetica", Arial; | |
} | |
body { | |
margin: 10px 20px; | |
background: #f0f0f0; | |
font-family: "Helvetica"; | |
color: #666; | |
font-weight: 200; | |
} | |
a { | |
color: #004276; | |
} | |
p { | |
font-size: 15px; | |
line-height: 1.5em; | |
margin: 0 0 10px; | |
} | |
h1 { | |
font-family: "ratio", sans-serif; | |
font-size: 60px; | |
line-height: 1em; | |
font-weight: 200; | |
margin-bottom: 8px; | |
} | |
button { | |
background-color: #004276; | |
color: white; | |
border: none; | |
border-radius: 2px; | |
padding: 4px 8px; | |
font-size: 12px; | |
} | |
/* Header */ | |
.header { | |
width: 840px; | |
margin: 0 auto; | |
text-align: center; | |
} | |
.description { | |
font-size: 15px; | |
} | |
/* Converter */ | |
#converter { | |
position: relative; | |
width: 100%; | |
border-top: solid 1px #aaa; | |
border-bottom: solid 1px #aaa; | |
margin: 30px 0; | |
padding: 0 0 20px; | |
overflow: hidden; | |
} | |
.left { | |
position: relative; | |
float: left; | |
width: 49%; | |
/*border-right: solid 1px #ccc;*/ | |
} | |
.right { | |
position: relative; | |
float: right; | |
width: 49%; | |
/*border-left: solid 1px #ccc;*/ | |
} | |
#converter textarea, #converter pre { | |
border: solid 1px #ddd; | |
border-radius: 4px; | |
background: #fff; | |
width: 100%; | |
height: 400px; | |
margin: 0; | |
padding: 0px; | |
font-size: 12px; | |
overflow-y: scroll; | |
font-family: monospace; | |
} | |
#converter .input textarea { | |
height: 185px; | |
} | |
#converter .code textarea { | |
height: 185px; | |
} | |
#converter .output pre { | |
height: 429px; | |
} | |
.snippets { | |
position: absolute; | |
right: 0; | |
} | |
.snippet { | |
font-size: 12px; | |
float: left; | |
margin-left: 10px; | |
} | |
.output button { | |
display: block; | |
margin: 17px 0 | |
/* position: absolute; | |
right: 0; | |
top: 18px;*/ | |
} | |
.controls { | |
width: 100%; | |
height: 40px; | |
} | |
#converter h3 { | |
font-family: "Helvetica"; | |
color: #666; | |
font-weight: 200; | |
font-size: 16px; | |
line-height: 1em; | |
margin: 20px 0; | |
} | |
.output .controls select { | |
width: 150px; | |
} | |
.output .controls h3 { | |
} | |
/* Details */ | |
.details { | |
width: 720px; | |
margin: 0 auto 20px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
github.com style (c) Vasily Polovnyov <[email protected]> | |
*/ | |
pre code { | |
display: block; padding: 0.5em; | |
color: #333; | |
background: #f8f8ff | |
} | |
pre .comment, | |
pre .template_comment, | |
pre .diff .header, | |
pre .javadoc { | |
color: #998; | |
font-style: italic | |
} | |
pre .keyword, | |
pre .css .rule .keyword, | |
pre .winutils, | |
pre .javascript .title, | |
pre .nginx .title, | |
pre .subst, | |
pre .request, | |
pre .status { | |
color: #333; | |
font-weight: bold | |
} | |
pre .number, | |
pre .hexcolor, | |
pre .ruby .constant { | |
color: #099; | |
} | |
pre .string, | |
pre .tag .value, | |
pre .phpdoc, | |
pre .tex .formula { | |
color: #d14 | |
} | |
pre .title, | |
pre .id { | |
color: #900; | |
font-weight: bold | |
} | |
pre .javascript .title, | |
pre .lisp .title, | |
pre .clojure .title, | |
pre .subst { | |
font-weight: normal | |
} | |
pre .class .title, | |
pre .haskell .type, | |
pre .vhdl .literal, | |
pre .tex .command { | |
color: #458; | |
font-weight: bold | |
} | |
pre .tag, | |
pre .tag .title, | |
pre .rules .property, | |
pre .django .tag .keyword { | |
color: #000080; | |
font-weight: normal | |
} | |
pre .attribute, | |
pre .variable, | |
pre .lisp .body { | |
color: #008080 | |
} | |
pre .regexp { | |
color: #009926 | |
} | |
pre .class { | |
color: #458; | |
font-weight: bold | |
} | |
pre .symbol, | |
pre .ruby .symbol .string, | |
pre .lisp .keyword, | |
pre .tex .special, | |
pre .prompt { | |
color: #990073 | |
} | |
pre .built_in, | |
pre .lisp .title, | |
pre .clojure .built_in { | |
color: #0086b3 | |
} | |
pre .preprocessor, | |
pre .pi, | |
pre .doctype, | |
pre .shebang, | |
pre .cdata { | |
color: #999; | |
font-weight: bold | |
} | |
pre .deletion { | |
background: #fdd | |
} | |
pre .addition { | |
background: #dfd | |
} | |
pre .diff .change { | |
background: #0086b3 | |
} | |
pre .chunk { | |
color: #aaa | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hljs=new function(){function l(o){return o.replace(/&/gm,"&").replace(/</gm,"<").replace(/>/gm,">")}function b(p){for(var o=p.firstChild;o;o=o.nextSibling){if(o.nodeName=="CODE"){return o}if(!(o.nodeType==3&&o.nodeValue.match(/\s+/))){break}}}function h(p,o){return Array.prototype.map.call(p.childNodes,function(q){if(q.nodeType==3){return o?q.nodeValue.replace(/\n/g,""):q.nodeValue}if(q.nodeName=="BR"){return"\n"}return h(q,o)}).join("")}function a(q){var p=(q.className+" "+q.parentNode.className).split(/\s+/);p=p.map(function(r){return r.replace(/^language-/,"")});for(var o=0;o<p.length;o++){if(e[p[o]]||p[o]=="no-highlight"){return p[o]}}}function c(q){var o=[];(function p(r,s){for(var t=r.firstChild;t;t=t.nextSibling){if(t.nodeType==3){s+=t.nodeValue.length}else{if(t.nodeName=="BR"){s+=1}else{if(t.nodeType==1){o.push({event:"start",offset:s,node:t});s=p(t,s);o.push({event:"stop",offset:s,node:t})}}}}return s})(q,0);return o}function j(x,v,w){var p=0;var y="";var r=[];function t(){if(x.length&&v.length){if(x[0].offset!=v[0].offset){return(x[0].offset<v[0].offset)?x:v}else{return v[0].event=="start"?x:v}}else{return x.length?x:v}}function s(A){function z(B){return" "+B.nodeName+'="'+l(B.value)+'"'}return"<"+A.nodeName+Array.prototype.map.call(A.attributes,z).join("")+">"}while(x.length||v.length){var u=t().splice(0,1)[0];y+=l(w.substr(p,u.offset-p));p=u.offset;if(u.event=="start"){y+=s(u.node);r.push(u.node)}else{if(u.event=="stop"){var o,q=r.length;do{q--;o=r[q];y+=("</"+o.nodeName.toLowerCase()+">")}while(o!=u.node);r.splice(q,1);while(q<r.length){y+=s(r[q]);q++}}}}return y+l(w.substr(p))}function f(q){function o(s,r){return RegExp(s,"m"+(q.cI?"i":"")+(r?"g":""))}function p(y,w){if(y.compiled){return}y.compiled=true;var s=[];if(y.k){var r={};function z(A,t){t.split(" ").forEach(function(B){var C=B.split("|");r[C[0]]=[A,C[1]?Number(C[1]):1];s.push(C[0])})}y.lR=o(y.l||hljs.IR,true);if(typeof y.k=="string"){z("keyword",y.k)}else{for(var x in y.k){if(!y.k.hasOwnProperty(x)){continue}z(x,y.k[x])}}y.k=r}if(w){if(y.bWK){y.b="\\b("+s.join("|")+")\\s"}y.bR=o(y.b?y.b:"\\B|\\b");if(!y.e&&!y.eW){y.e="\\B|\\b"}if(y.e){y.eR=o(y.e)}y.tE=y.e||"";if(y.eW&&w.tE){y.tE+=(y.e?"|":"")+w.tE}}if(y.i){y.iR=o(y.i)}if(y.r===undefined){y.r=1}if(!y.c){y.c=[]}for(var v=0;v<y.c.length;v++){if(y.c[v]=="self"){y.c[v]=y}p(y.c[v],y)}if(y.starts){p(y.starts,w)}var u=[];for(var v=0;v<y.c.length;v++){u.push(y.c[v].b)}if(y.tE){u.push(y.tE)}if(y.i){u.push(y.i)}y.t=u.length?o(u.join("|"),true):{exec:function(t){return null}}}p(q)}function d(D,E){function o(r,M){for(var L=0;L<M.c.length;L++){var K=M.c[L].bR.exec(r);if(K&&K.index==0){return M.c[L]}}}function s(K,r){if(K.e&&K.eR.test(r)){return K}if(K.eW){return s(K.parent,r)}}function t(r,K){return K.i&&K.iR.test(r)}function y(L,r){var K=F.cI?r[0].toLowerCase():r[0];return L.k.hasOwnProperty(K)&&L.k[K]}function G(){var K=l(w);if(!A.k){return K}var r="";var N=0;A.lR.lastIndex=0;var L=A.lR.exec(K);while(L){r+=K.substr(N,L.index-N);var M=y(A,L);if(M){v+=M[1];r+='<span class="'+M[0]+'">'+L[0]+"</span>"}else{r+=L[0]}N=A.lR.lastIndex;L=A.lR.exec(K)}return r+K.substr(N)}function z(){if(A.sL&&!e[A.sL]){return l(w)}var r=A.sL?d(A.sL,w):g(w);if(A.r>0){v+=r.keyword_count;B+=r.r}return'<span class="'+r.language+'">'+r.value+"</span>"}function J(){return A.sL!==undefined?z():G()}function I(L,r){var K=L.cN?'<span class="'+L.cN+'">':"";if(L.rB){x+=K;w=""}else{if(L.eB){x+=l(r)+K;w=""}else{x+=K;w=r}}A=Object.create(L,{parent:{value:A}});B+=L.r}function C(K,r){w+=K;if(r===undefined){x+=J();return 0}var L=o(r,A);if(L){x+=J();I(L,r);return L.rB?0:r.length}var M=s(A,r);if(M){if(!(M.rE||M.eE)){w+=r}x+=J();do{if(A.cN){x+="</span>"}A=A.parent}while(A!=M.parent);if(M.eE){x+=l(r)}w="";if(M.starts){I(M.starts,"")}return M.rE?0:r.length}if(t(r,A)){throw"Illegal"}w+=r;return r.length||1}var F=e[D];f(F);var A=F;var w="";var B=0;var v=0;var x="";try{var u,q,p=0;while(true){A.t.lastIndex=p;u=A.t.exec(E);if(!u){break}q=C(E.substr(p,u.index-p),u[0]);p=u.index+q}C(E.substr(p));return{r:B,keyword_count:v,value:x,language:D}}catch(H){if(H=="Illegal"){return{r:0,keyword_count:0,value:l(E)}}else{throw H}}}function g(s){var o={keyword_count:0,r:0,value:l(s)};var q=o;for(var p in e){if(!e.hasOwnProperty(p)){continue}var r=d(p,s);r.language=p;if(r.keyword_count+r.r>q.keyword_count+q.r){q=r}if(r.keyword_count+r.r>o.keyword_count+o.r){q=o;o=r}}if(q.language){o.second_best=q}return o}function i(q,p,o){if(p){q=q.replace(/^((<[^>]+>|\t)+)/gm,function(r,v,u,t){return v.replace(/\t/g,p)})}if(o){q=q.replace(/\n/g,"<br>")}return q}function m(r,u,p){var v=h(r,p);var t=a(r);if(t=="no-highlight"){return}var w=t?d(t,v):g(v);t=w.language;var o=c(r);if(o.length){var q=document.createElement("pre");q.innerHTML=w.value;w.value=j(o,c(q),v)}w.value=i(w.value,u,p);var s=r.className;if(!s.match("(\\s|^)(language-)?"+t+"(\\s|$)")){s=s?(s+" "+t):t}r.innerHTML=w.value;r.className=s;r.result={language:t,kw:w.keyword_count,re:w.r};if(w.second_best){r.second_best={language:w.second_best.language,kw:w.second_best.keyword_count,re:w.second_best.r}}}function n(){if(n.called){return}n.called=true;Array.prototype.map.call(document.getElementsByTagName("pre"),b).filter(Boolean).forEach(function(o){m(o,hljs.tabReplace)})}function k(){window.addEventListener("DOMContentLoaded",n,false);window.addEventListener("load",n,false)}var e={};this.LANGUAGES=e;this.highlight=d;this.highlightAuto=g;this.fixMarkup=i;this.highlightBlock=m;this.initHighlighting=n;this.initHighlightingOnLoad=k;this.IR="[a-zA-Z][a-zA-Z0-9_]*";this.UIR="[a-zA-Z_][a-zA-Z0-9_]*";this.NR="\\b\\d+(\\.\\d+)?";this.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)";this.BNR="\\b(0b[01]+)";this.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|\\.|-|-=|/|/=|:|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~";this.BE={b:"\\\\[\\s\\S]",r:0};this.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[this.BE],r:0};this.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[this.BE],r:0};this.CLCM={cN:"comment",b:"//",e:"$"};this.CBLCLM={cN:"comment",b:"/\\*",e:"\\*/"};this.HCM={cN:"comment",b:"#",e:"$"};this.NM={cN:"number",b:this.NR,r:0};this.CNM={cN:"number",b:this.CNR,r:0};this.BNM={cN:"number",b:this.BNR,r:0};this.inherit=function(q,r){var o={};for(var p in q){o[p]=q[p]}if(r){for(var p in r){o[p]=r[p]}}return o}}();hljs.LANGUAGES.javascript=function(a){return{k:{keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const",literal:"true false null undefined NaN Infinity"},c:[a.ASM,a.QSM,a.CLCM,a.CBLCLM,a.CNM,{b:"("+a.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[a.CLCM,a.CBLCLM,{cN:"regexp",b:"/",e:"/[gim]*",i:"\\n",c:[{b:"\\\\/"}]},{b:"<",e:">;",sL:"xml"}],r:0},{cN:"function",bWK:true,e:"{",k:"function",c:[{cN:"title",b:"[A-Za-z$_][0-9A-Za-z$_]*"},{cN:"params",b:"\\(",e:"\\)",c:[a.CLCM,a.CBLCLM],i:"[\"'\\(]"}],i:"\\[|%"}]}}(hljs);hljs.LANGUAGES.xml=function(a){var c="[A-Za-z0-9\\._:-]+";var b={eW:true,c:[{cN:"attribute",b:c,r:0},{b:'="',rB:true,e:'"',c:[{cN:"value",b:'"',eW:true}]},{b:"='",rB:true,e:"'",c:[{cN:"value",b:"'",eW:true}]},{b:"=",c:[{cN:"value",b:"[^\\s/>]+"}]}]};return{cI:true,c:[{cN:"pi",b:"<\\?",e:"\\?>",r:10},{cN:"doctype",b:"<!DOCTYPE",e:">",r:10,c:[{b:"\\[",e:"\\]"}]},{cN:"comment",b:"<!--",e:"-->",r:10},{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"<style(?=\\s|>|$)",e:">",k:{title:"style"},c:[b],starts:{e:"</style>",rE:true,sL:"css"}},{cN:"tag",b:"<script(?=\\s|>|$)",e:">",k:{title:"script"},c:[b],starts:{e:"<\/script>",rE:true,sL:"javascript"}},{b:"<%",e:"%>",sL:"vbscript"},{cN:"tag",b:"</?",e:"/?>",c:[{cN:"title",b:"[^ />]+"},b]}]}}(hljs);hljs.LANGUAGES.json=function(a){var e={literal:"true false null"};var d=[a.QSM,a.CNM];var c={cN:"value",e:",",eW:true,eE:true,c:d,k:e};var b={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:true,eE:true,c:[a.BE],i:"\\n",starts:c}],i:"\\S"};var f={b:"\\[",e:"\\]",c:[a.inherit(c,{cN:null})],i:"\\S"};d.splice(d.length,0,b,f);return{c:d,k:e,i:"\\S"}}(hljs); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Mister Nester</title> | |
<link rel="stylesheet" href="github.css"> | |
<link rel="stylesheet" href="converter.css"> | |
</head> | |
<body> | |
<div class="header"> | |
<h1>Hello, I’m Mister Nester</h1> | |
<p class="description">I’m a simple console for learning and experimenting with <a href="http://d3js.org">d3.js</a> data <a href="https://github.com/mbostock/d3/wiki/Arrays#wiki-d3_nest">nesting</a>.</p> | |
<p class="description">Forked by John Muyskens from <a href="http://bl.ocks.org/shancarter/raw/4748131/">the original</a> by Shan Carter for the NICAR 2017 intermediate d3 workshop.</p> | |
<p class="description"> | |
Data from the <a target="_blank" href="http://www.trumptwitterarchive.com/">Trump Twitter Archive</a>. Documentation links: <a target="_blank" href="https://github.com/d3/d3-collection/blob/master/README.md#nests">d3.nest</a>, <a target="_blank" href="https://github.com/d3/d3-array/blob/master/README.md#statistics">statistics</a> | |
</p> | |
</div> | |
<div id="converter"></div> | |
<div class="details"> | |
<p></p> | |
</div> | |
<script src="http://d3js.org/d3.v4.min.js"></script> | |
<script src="highlight.js"></script> | |
<script src="main.js"></script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var codeSamples = [ | |
// Default | |
{ label: "Identity", code: "d3.nest()\n .map(data);"}, | |
{ label: "By source", code: "d3.nest()\n .key(function(d) { return d.source; })\n .map(data);"}, | |
{ label: "Number of tweets by source", code: "d3.nest()\n .key(function(d) { return d.source; })\n .rollup(function(values) { return values.length; })\n .map(data);"}, | |
{ label: "Number of tweets by day", code: "var parseTime = d3.timeParse('%a %b %d %H:%M:%S +0000 %Y');\nvar formatTime = d3.timeFormat('%Y-%m-%d');\nd3.nest()\n .key(function(d) { return formatTime(parseTime(d.created_at)); })\n .sortKeys(d3.ascending)\n .rollup(function(values) { return values.length; })\n .entries(data);"}, | |
{ label: "Number of tweets by day and source", code: "var parseTime = d3.timeParse('%a %b %d %H:%M:%S +0000 %Y');\nvar formatTime = d3.timeFormat('%Y-%m-%d');\nd3.nest()\n .key(function(d) { return d.source; })\n .key(function(d) { return formatTime(parseTime(d.created_at)); })\n .sortKeys(d3.ascending)\n .rollup(function(values) { return values.length; })\n .entries(data);"}, | |
{ label: "Number of retweets by day", code: "var parseTime = d3.timeParse('%a %b %d %H:%M:%S +0000 %Y');\nvar formatTime = d3.timeFormat('%Y-%m-%d');\nd3.nest()\n .key(function(d) { return formatTime(parseTime(d.created_at)); })\n .sortKeys(d3.ascending)\n .rollup(function(values) { return d3.sum(values, function(d) { return d.retweet_count;}); })\n .entries(data);"}, | |
]; | |
var html = d3.select("#converter"); | |
var left = html.append("div") | |
.classed("left", true); | |
var input = left.append("div") | |
.classed("input", true); | |
input.append("h3") | |
.text("Input CSV or TSV"); | |
input.append("textarea"); | |
var code = left.append("div") | |
.classed("code", true); | |
var snippets = code.append("div") | |
.classed("snippets", true); | |
snippets.selectAll("snippet") | |
.data(codeSamples) | |
.enter().append("a") | |
.classed("snippet", true) | |
.text(function(d) { return d.label; }) | |
.attr("href", "#") | |
.on("click", function(d) { | |
d3.event.preventDefault(); | |
code.select("textarea") | |
.property("value", d.code); | |
update(); | |
}); | |
code.append("h3") | |
.text("Code"); | |
code.append("textarea"); | |
var right = html.append("div") | |
.classed("right", true); | |
var output = right.append("div") | |
.classed("output", true); | |
output.append("button") | |
.text("Update Output") | |
.on("click", update); | |
var codeOutput = output.append("pre"); | |
codeOutput.append("code"); | |
d3.text("realdonaldtrump2017.csv", function(d) { | |
input.select("textarea") | |
.property("value", d); | |
code.select("textarea") | |
.property("value", codeSamples[0].code); | |
update(); | |
}); | |
function update() { | |
var t = input.select("textarea") | |
.property("value"); | |
var c = code.select("textarea") | |
.property("value"); | |
var data = (t.indexOf("\t") < 0 ? d3.csvParse : d3.tsvParse)(t); | |
var out = eval(c); | |
codeOutput.html(JSON.stringify(out, false, 2)); | |
hljs.highlightBlock(codeOutput.node()) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
favorite_count | source | text | in_reply_to_screen_name | is_retweet | created_at | retweet_count | id_str | |
---|---|---|---|---|---|---|---|---|
0 | Twitter for iPhone | The #MarchForLife is so important. To all of you marching --- you have my full support! | False | Fri Jan 27 16:27:02 +0000 2017 | 0 | 825017279209410561 | ||
2077 | Twitter for Android | Mexico has taken advantage of the U.S. for long enough. Massive trade deficits & little help on the very weak border must change, NOW! | False | Fri Jan 27 13:19:10 +0000 2017 | 535 | 824970003153842176 | ||
1 | Twitter for Android | Look forward to seeing final results of VoteStand. Gregg Phillips and crew say at least 3,000,000 votes were illegal. We must do better! | False | Fri Jan 27 13:12:52 +0000 2017 | 1 | 824968416486387713 | ||
62 | Twitter for iPhone | Miami-Dade Mayor drops sanctuary policy. Right decision. Strong! https://t.co/MtPvaDC4jM | False | Thu Jan 26 23:53:37 +0000 2017 | 22 | 824767281146245120 | ||
291 | Twitter for iPhone | Will be interviewed by @SeanHannity on @FoxNews at 10:00pm tonight. Enjoy! | False | Thu Jan 26 23:45:28 +0000 2017 | 95 | 824765229527605248 | ||
928 | Twitter for iPhone | Spoke at the Congressional @GOP Retreat in Philadelphia, PA. this afternoon w/ @VP, @SenateMajLdr, @SpeakerRyan. Th… https://t.co/ALSADGrwoe | False | Thu Jan 26 19:21:17 +0000 2017 | 171 | 824698743630995457 | ||
9 | Twitter for iPhone | Spoke at the Congressional @GOP Retreat in Philadelphia, PA. this afternoon w/ @VP, @SenMajLeader, @SpeakerRyan. Th… https://t.co/s4sTbSyBSR | False | Thu Jan 26 19:15:44 +0000 2017 | 9 | 824697349335293952 | ||
1705 | Twitter for Android | of jobs and companies lost. If Mexico is unwilling to pay for the badly needed wall, then it would be better to cancel the upcoming meeting. | False | Thu Jan 26 13:55:03 +0000 2017 | 445 | 824616644370714627 | ||
15 | Twitter for Android | The U.S. has a 60 billion dollar trade deficit with Mexico. It has been a one-sided deal from the beginning of NAFTA with massive numbers... | False | Thu Jan 26 13:51:46 +0000 2017 | 5 | 824615820391305216 | ||
202 | Twitter for Android | Ungrateful TRAITOR Chelsea Manning, who should never have been released from prison, is now calling President Obama a weak leader. Terrible! | False | Thu Jan 26 11:04:24 +0000 2017 | 105 | 824573698774601729 | ||
1089 | Twitter for Android | Interview with David Muir of @ABC News in 10 minutes. Enjoy! | False | Thu Jan 26 02:48:25 +0000 2017 | 220 | 824448880993509376 | ||
105 | Twitter for Android | "@romoabcnews: .@DavidMuir first @POTUS interview since taking office. Tonight on @ABCWorldNews @ABC2020 tonight. https://t.co/I4Vz1mRdBK" | True | Thu Jan 26 02:45:32 +0000 2017 | 32 | 824448156935081984 | ||
2 | Twitter for iPhone | As your President, I have no higher duty than to protect the lives of the American people. https://t.co/o7YNUNwb8f | False | Thu Jan 26 02:14:56 +0000 2017 | 1 | 824440456813707265 | ||
104 | Twitter Web Client | Beginning today, the United States of America gets back control of its borders. Full speech from today @DHSgov:… https://t.co/8aDaHsAhg9 | False | Thu Jan 26 00:03:33 +0000 2017 | 38 | 824407390674157568 | ||
0 | Twitter for iPhone | I will be interviewed by @DavidMuir tonight at 10 o'clock on @ABC. Will be my first interview from the White House.… https://t.co/4zuOrRdcoc | False | Wed Jan 25 22:05:59 +0000 2017 | 0 | 824377804590563339 | ||
1 | Twitter for Android | I will be making my Supreme Court pick on Thursday of next week.Thank you! | False | Wed Jan 25 12:17:01 +0000 2017 | 0 | 824229586091307008 | ||
22 | Twitter for Android | even, those registered to vote who are dead (and many for a long time). Depending on results, we will strengthen up voting procedures! | False | Wed Jan 25 12:13:46 +0000 2017 | 15 | 824228768227217408 | ||
1 | Twitter for Android | I will be asking for a major investigation into VOTER FRAUD, including those registered to vote in two states, those who are illegal and.... | False | Wed Jan 25 12:10:01 +0000 2017 | 0 | 824227824903090176 | ||
7573 | Twitter for Android | Big day planned on NATIONAL SECURITY tomorrow. Among many other things, we will build the wall! | False | Wed Jan 25 02:37:48 +0000 2017 | 2147 | 824083821889015809 | ||
25336 | Twitter for Android | If Chicago doesn't fix the horrible "carnage" going on, 228 shootings in 2017 with 42 killings (up 24% from 2016), I will send in the Feds! | False | Wed Jan 25 02:25:40 +0000 2017 | 7845 | 824080766288228352 | ||
30926 | Twitter for Android | Congratulations to @FoxNews for being number one in inauguration ratings. They were many times higher than FAKE NEWS @CNN - public is smart! | False | Wed Jan 25 02:16:19 +0000 2017 | 7142 | 824078417213747200 | ||
37754 | Twitter for iPhone | Great meeting with Ford CEO Mark Fields and General Motors CEO Mary Barra at the @WhiteHouse today. https://t.co/T0eIgO6LP8 | False | Wed Jan 25 00:46:57 +0000 2017 | 7748 | 824055927200423936 | ||
10474 | Twitter for iPhone | Signing orders to move forward with the construction of the Keystone XL and Dakota Access pipelines in the Oval Off… https://t.co/aOxmfO0vOK | False | Tue Jan 24 17:49:17 +0000 2017 | 2563 | 823950814163140609 | ||
9 | Twitter for iPhone | Great meeting with automobile industry leaders at the @WhiteHouse this morning. Together, we will #MAGA! https://t.co/OXdiLOkGsZ | False | Tue Jan 24 17:04:01 +0000 2017 | 2 | 823939422743830528 | ||
9852 | Twitter for iPhone | A photo delivered yesterday that will be displayed in the upper/lower press hall. Thank you Abbas! https://t.co/Uzp0ivvRp0 | False | Tue Jan 24 16:58:06 +0000 2017 | 2061 | 823937936056008704 | ||
61630 | Twitter for Android | Will be meeting at 9:00 with top automobile executives concerning jobs in America. I want new plants to be built here for cars sold here! | False | Tue Jan 24 11:11:47 +0000 2017 | 11695 | 823850781946343427 | ||
128414 | Twitter for Android | Busy week planned with a heavy focus on jobs and national security. Top executives coming in at 9:00 A.M. to talk manufacturing in America. | False | Mon Jan 23 11:38:16 +0000 2017 | 21293 | 823495059010109440 | ||
27781 | Twitter for Android | Peaceful protests are a hallmark of our democracy. Even if I don't always agree, I recognize the rights of people to express their views. | False | Sun Jan 22 14:23:17 +0000 2017 | 7492 | 823174199036542980 | ||
52398 | Twitter for Android | Wow, television ratings just out: 31 million people watched the Inauguration, 11 million more than the very good ratings from 4 years ago! | False | Sun Jan 22 12:51:36 +0000 2017 | 11767 | 823151124815507460 | ||
53149 | Twitter for Android | Watched protests yesterday but was under the impression that we just had an election! Why didn't these people vote? Celebs hurt cause badly. | False | Sun Jan 22 12:47:21 +0000 2017 | 14153 | 823150055418920960 | ||
39795 | Twitter for Android | Had a great meeting at CIA Headquarters yesterday, packed house, paid great respect to Wall, long standing ovations, amazing people. WIN! | False | Sun Jan 22 12:35:09 +0000 2017 | 6724 | 823146987117772800 | ||
0 | Twitter for iPhone | RT @WhiteHouse: "Do not allow anyone to tell you that it cannot be done. No challenge can match the HEART and FIGHT and SPIRIT of America."… | True | Sat Jan 21 23:54:31 +0000 2017 | 14597 | 822955565949272065 | ||
150772 | Twitter for Android | A fantastic day and evening in Washington D.C.Thank you to @FoxNews and so many other news outlets for the GREAT reviews of the speech! | False | Sat Jan 21 11:53:41 +0000 2017 | 20744 | 822774162011910144 | ||
244612 | Twitter for iPhone | THANK YOU for another wonderful evening in Washington, D.C. TOGETHER, we will MAKE AMERICA GREAT AGAIN🇺🇸 https://t.co/V3aoj9RUh4 | False | Sat Jan 21 04:56:15 +0000 2017 | 47008 | 822669114237943808 | ||
44789 | Twitter for iPhone | TO ALL AMERICANS🇺🇸 https://t.co/D7Es6ie4fY | False | Fri Jan 20 18:13:48 +0000 2017 | 9764 | 822507434396753921 | ||
3388 | Twitter for iPhone | So to all Americans, in every city near and far, small and large, from mountain to mountain...https://t.co/cZKkrGXLSi | False | Fri Jan 20 18:00:43 +0000 2017 | 922 | 822504142178500608 | ||
6915 | Twitter for iPhone | It is time to remember that...https://t.co/ZKyOiOor62 | False | Fri Jan 20 17:58:24 +0000 2017 | 1788 | 822503558369181697 | ||
22727 | Twitter for iPhone | We will follow two simple rules: BUY AMERICAN & HIRE AMERICAN! #InaugurationDay #MAGA🇺🇸 | False | Fri Jan 20 17:55:44 +0000 2017 | 7266 | 822502887477673984 | ||
25127 | Twitter for iPhone | We will bring back our jobs. We will bring back our borders. We will bring back our wealth - and we will bring back our dreams! | False | Fri Jan 20 17:54:36 +0000 2017 | 7350 | 822502601304526848 | ||
33 | Twitter for iPhone | The forgotten men and women of our country will be forgotten no longer. From this moment on, it’s going to be #AmericaFirst🇺🇸 | False | Fri Jan 20 17:54:00 +0000 2017 | 11 | 822502450007515137 | ||
7393 | Twitter for iPhone | January 20th 2017, will be remembered as the day the people became the rulers of this nation again. | False | Fri Jan 20 17:53:17 +0000 2017 | 2903 | 822502270503972872 | ||
11009 | Twitter for iPhone | What truly matters is not which party controls our government, but whether our government is controlled by the people. | False | Fri Jan 20 17:52:45 +0000 2017 | 3693 | 822502135233384448 | ||
13936 | Twitter for iPhone | power from Washington, D.C. and giving it back to you, the American People. #InaugurationDay | realDonaldTrump | False | Fri Jan 20 17:51:58 +0000 2017 | 4175 | 822501939267141634 | |
14947 | Twitter for iPhone | Today we are not merely transferring power from one Administration to another, or from one party to another – but we are transferring... | False | Fri Jan 20 17:51:25 +0000 2017 | 4576 | 822501803615014918 | ||
200102 | Twitter for Android | It all begins today! I will see you at 11:00 A.M. for the swearing-in. THE MOVEMENT CONTINUES - THE WORK BEGINS! | False | Fri Jan 20 12:31:53 +0000 2017 | 64710 | 822421390125043713 | ||
31370 | Twitter for iPhone | Thank you for a wonderful evening in Washington, D.C. #Inauguration https://t.co/a6xpFQTHj5 | False | Fri Jan 20 04:24:33 +0000 2017 | 7090 | 822298747421986828 | ||
87831 | Twitter for iPhone | Thank you for joining us at the Lincoln Memorial tonight- a very special evening! Together, we are going to MAKE AM… https://t.co/OSxa3BamHs | False | Fri Jan 20 00:40:51 +0000 2017 | 21362 | 822242449053614081 | ||
13600 | Twitter for iPhone | Join me at 4pm over at the Lincoln Memorial with my family! #Inauguration2017 https://t.co/GQeQpJOgWz | False | Thu Jan 19 20:21:36 +0000 2017 | 3382 | 822177206633955328 | ||
13767 | Twitter for Android | Great Concert at 4:00 P.M. today at Lincoln Memorial. Enjoy! | False | Thu Jan 19 20:18:32 +0000 2017 | 2668 | 822176438627536897 | ||
16405 | Twitter for iPhone | On my way! #Inauguration2017 https://t.co/hOuMbxGnpe | False | Thu Jan 19 20:13:57 +0000 2017 | 3669 | 822175285151928320 | ||
40432 | Twitter for Android | the American people. I have no doubt that we will, together, MAKE AMERICA GREAT AGAIN! | False | Thu Jan 19 13:02:18 +0000 2017 | 10738 | 822066653953458177 | ||
38575 | Twitter for Android | Getting ready to leave for Washington, D.C. The journey begins and I will be working and fighting very hard to make it a great journey for.. | False | Thu Jan 19 13:00:13 +0000 2017 | 8670 | 822066132307808256 | ||
33317 | Twitter for Android | "It wasn't Donald Trump that divided this country, this country has been divided for a long time!" Stated today by Reverend Franklin Graham. | False | Thu Jan 19 12:52:22 +0000 2017 | 8839 | 822064153426857984 | ||
49426 | Twitter for iPhone | Thank you to our amazing Wounded Warriors for their service. It was an honor to be with them tonight in D.C.… https://t.co/Qj5cpfaykD | False | Thu Jan 19 04:01:40 +0000 2017 | 11098 | 821930600290521089 | ||
3232 | Twitter for iPhone | Great seeing @TheLeeGreenwood and Kimberly at this evenings VP dinner! #GodBlessTheUSA https://t.co/SxVmaWvOFT | False | Thu Jan 19 01:54:13 +0000 2017 | 610 | 821898525432811520 | ||
43658 | Twitter Web Client | Looking forward to a speedy recovery for George and Barbara Bush, both hospitalized. Thank you for your wonderful letter! | False | Wed Jan 18 22:21:02 +0000 2017 | 8361 | 821844875268255744 | ||
8648 | Twitter for iPhone | Writing my inaugural address at the Winter White House, Mar-a-Lago, three weeks ago. Looking forward to Friday.… https://t.co/J0ojOXjrga | False | Wed Jan 18 17:33:25 +0000 2017 | 2221 | 821772494864580614 | ||
28056 | Twitter for Android | .@TheAlabamaBand was great last night in D.C. playing for 147 Diplomats and Ambassadors from countries around the world. Thanks Alabama! | False | Wed Jan 18 14:03:53 +0000 2017 | 5634 | 821719763214880769 | ||
28314 | Twitter for Android | No wonder the Today Show on biased @NBC is doing so badly compared to its glorious past. Little credibility! | False | Wed Jan 18 13:06:58 +0000 2017 | 6207 | 821705440178348033 | ||
28140 | Twitter for Android | "Bayer AG has pledged to add U.S. jobs and investments after meeting with President-elect Donald Trump, the latest in a string..." @WSJ | False | Wed Jan 18 13:00:51 +0000 2017 | 6872 | 821703902940827648 | ||
30682 | Twitter for Android | to the U.S., but had nothing to do with TRUMP, is more FAKE NEWS. Ask top CEO's of those companies for real facts. Came back because of me! | False | Wed Jan 18 12:44:03 +0000 2017 | 7192 | 821699672687448064 | ||
25325 | Twitter for Android | Totally biased @NBCNews went out of its way to say that the big announcement from Ford, G.M., Lockheed & others that jobs are coming back... | False | Wed Jan 18 12:34:09 +0000 2017 | 6398 | 821697182235496450 | ||
22135 | Twitter for Android | Will be interviewed by @ainsleyearhardt on @foxandfriends - Enjoy! | False | Wed Jan 18 11:53:24 +0000 2017 | 4027 | 821686928680583169 | ||
0 | Twitter Web Client | RT @EricTrump: Thank you to @GolfDigest for this incredible feature! "Golfer-in-Chief" @RealDonaldTrump https://t.co/vpdY4jNbI4 https://t.c… | True | Tue Jan 17 19:58:10 +0000 2017 | 7426 | 821446536278274050 | ||
0 | Twitter Web Client | RT @MoskowitzEva: .@BetsyDeVos has the talent, commitment, and leadership capacity to revitalize our public schools and deliver the promise… | True | Tue Jan 17 19:36:21 +0000 2017 | 5720 | 821441044097224704 | ||
21740 | Twitter Web Client | Thank you to General Motors and Walmart for starting the big jobs push back into the U.S.! | False | Tue Jan 17 17:55:38 +0000 2017 | 5181 | 821415698278875137 | ||
12279 | Twitter Web Client | "How Trump Won--And How The Media Missed It" https://t.co/Hfab41h65X | False | Tue Jan 17 17:36:45 +0000 2017 | 3811 | 821410947864653825 | ||
23937 | Twitter for Android | "thought it would be hypocritical to attend Bush's swearing-in....he doesn't believe Bush is the true elected president." Sound familiar! WP | False | Tue Jan 17 14:52:39 +0000 2017 | 6146 | 821369651968012288 | ||
24499 | Twitter for Android | John Lewis said about my inauguration,"It will be the first one that I've missed." WRONG (or lie)! He boycotted Bush 43 also because he... | False | Tue Jan 17 14:46:27 +0000 2017 | 6859 | 821368088935432196 | ||
24047 | Twitter for Android | country and with the massive cost reductions I have negotiated on military purchases and more, I believe the people are seeing "big stuff." | False | Tue Jan 17 14:36:26 +0000 2017 | 5133 | 821365569366671360 | ||
24580 | Twitter for Android | With all of the jobs I am bringing back into the U.S. (even before taking office), with all of the new auto plants coming back into our..... | False | Tue Jan 17 14:30:19 +0000 2017 | 5396 | 821364027506966532 | ||
1561 | Twitter for Android | The same people who did the phony election polls, and were so wrong, are now doing approval rating polls. They are rigged just like before. | False | Tue Jan 17 13:11:56 +0000 2017 | 411 | 821344302651555840 | ||
2043 | Twitter for Android | People are pouring into Washington in record numbers. Bikers for Trump are on their way. It will be a great Thursday, Friday and Saturday! | False | Tue Jan 17 13:05:10 +0000 2017 | 545 | 821342600322043905 | ||
29314 | Twitter for Android | "@drgoodspine: @realDonaldTrump @Ivanka Trump is great, a woman with real character and class." | True | Tue Jan 17 02:08:21 +0000 2017 | 5564 | 821177307708661761 | ||
39654 | Twitter for Android | At 9:00 P.M. @CNN, of all places, is doing a Special Report on my daughter, Ivanka. Considering it is CNN, can't imagine it will be great! | False | Tue Jan 17 01:49:38 +0000 2017 | 8911 | 821172595869577220 | ||
40284 | Twitter for Android | "@levisteveholt: @realDonaldTrump I appreciate your use of Twitter to keep us informed and maintain transparency." Very dishonest media! | True | Tue Jan 17 01:42:18 +0000 2017 | 9115 | 821170750983995392 | ||
82745 | Twitter for Android | Celebrate Martin Luther King Day and all of the many wonderful things that he stood for. Honor him for being the great man that he was! | False | Mon Jan 16 13:54:52 +0000 2017 | 22118 | 820992721120854016 | ||
26164 | Twitter for Android | much worse - just look at Syria (red line), Crimea, Ukraine and the build-up of Russian nukes. Not good! Was this the leaker of Fake News? | False | Mon Jan 16 00:29:05 +0000 2017 | 6877 | 820789938887294977 | ||
21238 | Twitter for Android | .@FoxNews "Outgoing CIA Chief, John Brennan, blasts Pres-Elect Trump on Russia threat. Does not fully understand." Oh really, couldn't do... | False | Mon Jan 16 00:16:20 +0000 2017 | 5947 | 820786730257285120 | ||
49318 | Twitter for Android | .@NBCNews is bad but Saturday Night Live is the worst of NBC. Not funny, cast is terrible, always a complete hit job. Really bad television! | False | Sun Jan 15 22:46:33 +0000 2017 | 12107 | 820764134857969666 | ||
6105 | Twitter for Android | about that...Those Intelligence chiefs made a mistake here, & when people make mistakes, they should APOLOGIZE." Media should also apologize | False | Sun Jan 15 20:13:00 +0000 2017 | 1614 | 820725491812487170 | ||
9050 | Twitter for Android | Thank you to Bob Woodward who said,"That is a garbage document...it never should have been presented...Trump's right to be upset (angry)... | False | Sun Jan 15 20:04:38 +0000 2017 | 2335 | 820723387995717632 | ||
35408 | Twitter for Android | For many years our country has been divided, angry and untrusting. Many say it will never change, the hatred is too deep. IT WILL CHANGE!!!! | False | Sun Jan 15 19:00:21 +0000 2017 | 9536 | 820707210565132288 | ||
49792 | Twitter for Android | will only get higher. Car companies and others, if they want to do business in our country, have to start making things here again. WIN! | False | Sun Jan 15 14:02:41 +0000 2017 | 10724 | 820632299037409280 | ||
48807 | Twitter for Android | The Democrats are most angry that so many Obama Democrats voted for me. With all of the jobs I am bringing back to our Nation, that number.. | False | Sun Jan 15 13:59:29 +0000 2017 | 11050 | 820631495660408835 | ||
13935 | Twitter for Android | Inauguration Day is turning out to be even bigger than expected. January 20th, Washington D.C. Have fun! | False | Sun Jan 15 01:58:57 +0000 2017 | 3277 | 820450166331346944 | ||
12765 | Twitter for Android | Congressman John Lewis should finally focus on the burning and crime infested inner-cities of the U.S. I can use all the help I can get! | False | Sun Jan 15 00:22:01 +0000 2017 | 3455 | 820425770925338624 | ||
33822 | Twitter for Android | INTELLIGENCE INSIDERS NOW CLAIM THE TRUMP DOSSIER IS "A COMPLETE FRAUD!" @OANN | False | Sat Jan 14 13:14:13 +0000 2017 | 10201 | 820257714362314753 | ||
37428 | Twitter for Android | mention crime infested) rather than falsely complaining about the election results. All talk, talk, talk - no action or results. Sad! | False | Sat Jan 14 13:07:12 +0000 2017 | 9158 | 820255947956383744 | ||
42339 | Twitter for Android | Congressman John Lewis should spend more time on fixing and helping his district, which is in horrible shape and falling apart (not to...... | False | Sat Jan 14 12:50:26 +0000 2017 | 11545 | 820251730407473153 | ||
55094 | Twitter Web Client | A beautiful funeral today for a real NYC hero, Detective Steven McDonald. Our law enforcement community has my complete and total support. | False | Fri Jan 13 17:42:42 +0000 2017 | 12166 | 819962894616064001 | ||
46202 | Twitter for Android | The "Unaffordable" Care Act will soon be history! | False | Fri Jan 13 11:33:24 +0000 2017 | 11717 | 819869953692155904 | ||
27699 | Twitter for Android | have been allowed to run - guilty as hell. They were VERY nice to her. She lost because she campaigned in the wrong states - no enthusiasm! | False | Fri Jan 13 11:25:54 +0000 2017 | 6443 | 819868066364461058 | ||
23848 | Twitter for Android | What are Hillary Clinton's people complaining about with respect to the F.B.I. Based on the information they had she should never..... | False | Fri Jan 13 11:22:38 +0000 2017 | 6124 | 819867246352801792 | ||
24057 | Twitter for Android | released by "Intelligence" even knowing there is no proof, and never will be. My people will have a full report on hacking within 90 days! | False | Fri Jan 13 11:16:54 +0000 2017 | 6229 | 819865802849587200 | ||
24761 | Twitter for Android | Totally made up facts by sleazebag political operatives, both Democrats and Republicans - FAKE NEWS! Russia says nothing exists. Probably... | False | Fri Jan 13 11:11:13 +0000 2017 | 6540 | 819864373988573184 | ||
31494 | Twitter for Android | It now turns out that the phony allegations against me were put together by my political opponents and a failed spy afraid of being sued.... | False | Fri Jan 13 11:05:55 +0000 2017 | 8793 | 819863039902097408 | ||
36799 | Twitter for Android | All of my Cabinet nominee are looking good and doing a great job. I want them to be themselves and express their own thoughts, not mine! | False | Fri Jan 13 10:49:34 +0000 2017 | 9033 | 819858926455967744 | ||
22752 | Twitter for iPhone | Congrats to the Senate for taking the first step to #RepealObamacare- now it's onto the House! | False | Thu Jan 12 17:41:11 +0000 2017 | 5767 | 819600124133474307 | ||
4700 | Twitter for Android | .@CNN is in a total meltdown with their FAKE NEWS because their ratings are tanking since election and their credibility will soon be gone! | False | Thu Jan 12 14:22:21 +0000 2017 | 1607 | 819550083742109696 | ||
14402 | Twitter for Android | Thank you to Linda Bean of L.L.Bean for your great support and courage. People will support you even more now. Buy L.L.Bean. @LBPerfectMaine | False | Thu Jan 12 13:50:13 +0000 2017 | 3867 | 819541997325316096 | ||
23433 | Twitter for Android | James Clapper called me yesterday to denounce the false and fictitious report that was illegally circulated. Made up, phony facts.Too bad! | False | Thu Jan 12 12:23:45 +0000 2017 | 7014 | 819520238446411777 | ||
17198 | Twitter for Android | "@zhu_amy3: @realDonaldTrump It's Morning in America again!!! ☀️☀️☀️Thank you President-Elect Donald Trump!!! So proud of you!!!!" THANKS! | True | Thu Jan 12 04:24:52 +0000 2017 | 3510 | 819399723924803585 | ||
47078 | Twitter for Android | We had a great News Conference at Trump Tower today. A couple of FAKE NEWS organizations were there but the people truly get what's going on | False | Thu Jan 12 04:01:38 +0000 2017 | 13591 | 819393877174087682 | ||
51040 | Twitter for Android | Intelligence agencies should never have allowed this fake news to "leak" into the public. One last shot at me.Are we living in Nazi Germany? | False | Wed Jan 11 12:48:52 +0000 2017 | 17733 | 819164172781060096 | ||
51673 | Twitter for Android | I win an election easily, a great "movement" is verified, and crooked opponents try to belittle our victory with FAKE NEWS. A sorry state! | False | Wed Jan 11 12:44:05 +0000 2017 | 15037 | 819162968592183298 | ||
42993 | Twitter for Android | Russia has never tried to use leverage over me. I HAVE NOTHING TO DO WITH RUSSIA - NO DEALS, NO LOANS, NO NOTHING! | False | Wed Jan 11 12:31:31 +0000 2017 | 14087 | 819159806489591809 | ||
37160 | Twitter for Android | Russia just said the unverified report paid for by political opponents is "A COMPLETE AND TOTAL FABRICATION, UTTER NONSENSE." Very unfair! | False | Wed Jan 11 12:13:40 +0000 2017 | 11740 | 819155311793700865 | ||
33487 | Twitter for iPhone | 'BuzzFeed Runs Unverifiable Trump-Russia Claims' #FakeNews https://t.co/d6daCFZHNh | False | Wed Jan 11 02:00:11 +0000 2017 | 12423 | 819000924207251456 | ||
0 | Twitter for iPhone | RT @MichaelCohen212: I have never been to Prague in my life. #fakenews https://t.co/CMil9Rha3D | True | Wed Jan 11 01:35:41 +0000 2017 | 1787 | 818994757569564673 | ||
22984 | Twitter for Android | FAKE NEWS - A TOTAL POLITICAL WITCH HUNT! | False | Wed Jan 11 01:19:23 +0000 2017 | 9851 | 818990655418617856 | ||
19371 | Twitter for iPhone | 'Trump Helps Lift Small Business Confidence to 12-Yr. High' https://t.co/MhbABREhzt https://t.co/CWAvJ4fRdx | False | Tue Jan 10 22:30:53 +0000 2017 | 4811 | 818948254943604736 | ||
26794 | Twitter for iPhone | 'Small business optimism soars after Trump election' https://t.co/WjBaTp824U | False | Tue Jan 10 20:50:31 +0000 2017 | 6711 | 818922995980845056 | ||
20363 | Twitter for iPhone | 'U.S. Small-Business Optimism Index Surges by Most Since 1980' https://t.co/X22x1BttdG | False | Tue Jan 10 15:26:22 +0000 2017 | 5944 | 818841421364989952 | ||
66849 | Twitter for iPhone | Thank you to all of the men and women who protect & serve our communities 24/7/365! #LawEnforcementAppreciationDay… https://t.co/aqUbDipSgv | False | Tue Jan 10 02:20:01 +0000 2017 | 16849 | 818643528905621504 | ||
33471 | Twitter for iPhone | An old picture with Nancy and Ronald Reagan. https://t.co/8kvQ1PzPAf | False | Mon Jan 09 22:32:33 +0000 2017 | 7316 | 818586286034485250 | ||
30556 | Twitter for Android | Ford said last week that it will expand in Michigan and U.S. instead of building a BILLION dollar plant in Mexico. Thank you Ford & Fiat C! | False | Mon Jan 09 14:16:34 +0000 2017 | 7591 | 818461467766824961 | ||
29661 | Twitter for Android | It's finally happening - Fiat Chrysler just announced plans to invest $1BILLION in Michigan and Ohio plants, adding 2000 jobs. This after... | False | Mon Jan 09 14:14:10 +0000 2017 | 8077 | 818460862675558400 | ||
15629 | Twitter for Android | "groveling" when he totally changed a 16 year old story that he had written in order to make me look bad. Just more very dishonest media! | False | Mon Jan 09 11:43:26 +0000 2017 | 4627 | 818422930157830144 | ||
17669 | Twitter for Android | Hillary flunky who lost big. For the 100th time, I never "mocked" a disabled reporter (would never do that) but simply showed him....... | False | Mon Jan 09 11:36:02 +0000 2017 | 5760 | 818421066859167746 | ||
24004 | Twitter for Android | Meryl Streep, one of the most over-rated actresses in Hollywood, doesn't know me but attacked last night at the Golden Globes. She is a..... | False | Mon Jan 09 11:27:50 +0000 2017 | 9657 | 818419002548568064 | ||
10905 | Twitter for Android | Rupert Murdoch is a great guy who likes me much better as a very successful candidate than he ever did as a very successful developer! | False | Mon Jan 09 11:17:40 +0000 2017 | 2624 | 818416446527172608 | ||
12102 | Twitter for Android | Dishonest media says Mexico won't be paying for the wall if they pay a little later so the wall can be built more quickly. Media is fake! | False | Mon Jan 09 04:05:31 +0000 2017 | 3604 | 818307689323368448 | ||
18599 | Twitter for Android | Before I, or anyone, saw the classified and/or highly confidential hacking intelligence report, it was leaked out to @NBCNews. So serious! | False | Sun Jan 08 18:56:20 +0000 2017 | 5788 | 818169485169410048 | ||
0 | Twitter for iPhone | RT @MeetThePress: Watch our interview with @KellyannePolls: Russia "did not succeed" in attempts to sway election https://t.co/EZhgUIUbYx #… | True | Sun Jan 08 16:57:46 +0000 2017 | 2771 | 818139647687753733 | ||
25606 | Twitter for Android | Kellyanne Conway went to @MeetThePress this morning for an interview with @chucktodd. Dishonest media cut out 9 of her 10 minutes. Terrible! | False | Sun Jan 08 16:46:07 +0000 2017 | 8811 | 818136714396975104 | ||
16126 | Twitter for Android | "@FoxNews: "We certainly don’t want intelligence interfering with politics and we don’t want politics interfe… https://t.co/bwDjEg1d7S" | True | Sun Jan 08 16:39:14 +0000 2017 | 4185 | 818134981344165888 | ||
13740 | Twitter for Android | "@KellyannePolls: Welcome to President and Mrs. Bush. https://t.co/I1K4nj1gVu" Very nice! | True | Sun Jan 08 16:36:46 +0000 2017 | 3038 | 818134360712953858 | ||
66565 | Twitter for Android | I look very much forward to meeting Prime Minister Theresa May in Washington in the Spring. Britain, a longtime U.S. ally, is very special! | False | Sun Jan 08 02:07:09 +0000 2017 | 14484 | 817915516018892805 | ||
52351 | Twitter for Android | Congratulation to Jane Timken on her major upset victory in becoming the Ohio Republican Party Chair. Jane is a loyal Trump supporter & star | False | Sat Jan 07 23:54:05 +0000 2017 | 10233 | 817882028272128001 | ||
61701 | Twitter for Android | both countries will, perhaps, work together to solve some of the many great and pressing problems and issues of the WORLD! | False | Sat Jan 07 15:21:42 +0000 2017 | 15166 | 817753083707015168 | ||
68530 | Twitter for Android | have enough problems around the world without yet another one. When I am President, Russia will respect us far more than they do now and.... | False | Sat Jan 07 15:10:46 +0000 2017 | 17175 | 817750330196819968 | ||
87901 | Twitter for Android | Having a good relationship with Russia is a good thing, not a bad thing. Only "stupid" people, or fools, would think that it is bad! We..... | False | Sat Jan 07 15:02:20 +0000 2017 | 26945 | 817748207694467072 | ||
75707 | Twitter for Android | Only reason the hacking of the poorly defended DNC is discussed is that the loss by the Dems was so big that they are totally embarrassed! | False | Sat Jan 07 12:03:31 +0000 2017 | 18578 | 817703208567078913 | ||
62166 | Twitter for Android | Intelligence stated very strongly there was absolutely no evidence that hacking affected the election results. Voting machines not touched! | False | Sat Jan 07 11:56:29 +0000 2017 | 17365 | 817701436096126977 | ||
62564 | Twitter for Android | Gross negligence by the Democratic National Committee allowed hacking to take place.The Republican National Committee had strong defense! | False | Sat Jan 07 03:53:38 +0000 2017 | 15758 | 817579925771341825 | ||
44427 | Twitter for iPhone | Happy Birthday @EricTrump! https://t.co/bJaEY7qFSn | False | Sat Jan 07 00:07:09 +0000 2017 | 7375 | 817522928862502913 | ||
93606 | Twitter Web Client | Monitoring the terrible situation in Florida. Just spoke to Governor Scott. Thoughts and prayers for all. Stay safe! | False | Fri Jan 06 19:30:09 +0000 2017 | 22351 | 817453219613917185 | ||
13822 | Twitter for iPhone | I am asking the chairs of the House and Senate committees to investigate top secret intelligence shared with NBC prior to me seeing it. | False | Fri Jan 06 16:51:37 +0000 2017 | 4433 | 817413321058029568 | ||
16120 | Twitter for iPhone | Anna Wintour came to my office at Trump Tower to ask me to meet with the editors of Conde Nast & Steven Newhouse, a friend. Will go this AM. | False | Fri Jan 06 14:18:51 +0000 2017 | 3491 | 817374875962769408 | ||
7592 | Twitter for Android | being a movie star-and that was season 1 compared to season 14. Now compare him to my season 1. But who cares, he supported Kasich & Hillary | False | Fri Jan 06 12:42:53 +0000 2017 | 2006 | 817350726800306177 | ||
7524 | Twitter for Android | Wow, the ratings are in and Arnold Schwarzenegger got "swamped" (or destroyed) by comparison to the ratings machine, DJT. So much for.... | False | Fri Jan 06 12:34:37 +0000 2017 | 2151 | 817348644647108609 | ||
16142 | Twitter for Android | Hopefully, all supporters, and those who want to MAKE AMERICA GREAT AGAIN, will go to D.C. on January 20th. It will be a GREAT SHOW! | False | Fri Jan 06 12:05:01 +0000 2017 | 3841 | 817341196251070464 | ||
12759 | Twitter for Android | and knew they were in big trouble - which is why they cancelled their big fireworks at the last minute.THEY SAW A MOVEMENT LIKE NEVER BEFORE | False | Fri Jan 06 11:45:47 +0000 2017 | 2920 | 817336355193753600 | ||
14907 | Twitter for Android | Hillary and the Dems were never going to beat the PASSION of my voters. They saw what was happening in the last two weeks before the...... | False | Fri Jan 06 11:39:35 +0000 2017 | 3546 | 817334794958807042 | ||
17611 | Twitter for Android | The dishonest media does not report that any money spent on building the Great Wall (for sake of speed), will be paid back by Mexico later! | False | Fri Jan 06 11:19:49 +0000 2017 | 5954 | 817329823374831617 | ||
14583 | Twitter for Android | So how and why are they so sure about hacking if they never even requested an examination of the computer servers? What is going on? | False | Fri Jan 06 00:40:03 +0000 2017 | 4670 | 817168818539757568 | ||
14603 | Twitter for Android | The Democratic National Committee would not allow the FBI to study or see its computer info after it was supposedly hacked by Russia...... | False | Fri Jan 06 00:30:15 +0000 2017 | 5164 | 817166353266262016 | ||
17630 | Twitter for Android | How did NBC get "an exclusive look into the top secret report he (Obama) was presented?" Who gave them this report and why? Politics! | False | Fri Jan 06 00:24:34 +0000 2017 | 5919 | 817164923843280896 | ||
5054 | Twitter for Android | Toyota Motor said will build a new plant in Baja, Mexico, to build Corolla cars for U.S. NO WAY! Build plant in U.S. or pay big border tax. | False | Thu Jan 05 18:14:30 +0000 2017 | 1661 | 817071792711942145 | ||
26751 | Twitter for Android | to make up their own minds as to the truth. The media lies to make it look like I am against "Intelligence" when in fact I am a big fan! | False | Thu Jan 05 13:45:57 +0000 2017 | 6868 | 817004210529116160 | ||
27457 | Twitter for Android | The dishonest media likes saying that I am in Agreement with Julian Assange - wrong. I simply state what he states, it is for the people.... | False | Thu Jan 05 13:25:30 +0000 2017 | 7780 | 816999062562107392 | ||
38365 | Twitter for Android | ...time for Republicans & Democrats to get together and come up with a healthcare plan that really works - much less expensive & FAR BETTER! | False | Thu Jan 05 12:06:42 +0000 2017 | 9205 | 816979231217483776 | ||
26900 | Twitter for Android | ...do the typical political thing and BLAME. The fact is ObamaCare was a lie from the beginning."Keep you doctor, keep your plan!" It is.... | False | Thu Jan 05 12:01:33 +0000 2017 | 7202 | 816977937731878912 | ||
28115 | Twitter for Android | The Democrats, lead by head clown Chuck Schumer, know how bad ObamaCare is and what a mess they are in. Instead of working to fix it, they.. | False | Thu Jan 05 11:57:57 +0000 2017 | 7621 | 816977032433270784 | ||
13225 | Twitter Web Client | Jackie Evancho's album sales have skyrocketed after announcing her Inauguration performance.Some people just don't understand the "Movement" | False | Wed Jan 04 18:52:09 +0000 2017 | 3259 | 816718880731234304 | ||
19962 | Twitter for Android | massive increases of ObamaCare will take place this year and Dems are to blame for the mess. It will fall of its own weight - be careful! | False | Wed Jan 04 14:26:45 +0000 2017 | 5319 | 816652088662958082 | ||
19857 | Twitter for Android | like the 116% hike in Arizona. Also, deductibles are so high that it is practically useless. Don't let the Schumer clowns out of this web... | False | Wed Jan 04 14:01:53 +0000 2017 | 5396 | 816645831659061248 | ||
20151 | Twitter for Android | Republicans must be careful in that the Dems own the failed ObamaCare disaster, with its poor coverage and massive premium increases...... | False | Wed Jan 04 13:55:53 +0000 2017 | 5398 | 816644321768312832 | ||
23073 | Twitter for Android | things they did and said (like giving the questions to the debate to H). A total double standard! Media, as usual, gave them a pass. | False | Wed Jan 04 13:31:32 +0000 2017 | 5945 | 816638194468999169 | ||
21023 | Twitter for Android | Somebody hacked the DNC but why did they not have "hacking defense" like the RNC has and why have they not responded to the terrible...... | False | Wed Jan 04 13:27:03 +0000 2017 | 5742 | 816637064708030464 | ||
39855 | Twitter for Android | Thank you to Ford for scrapping a new plant in Mexico and creating 700 new jobs in the U.S. This is just the beginning - much more to follow | False | Wed Jan 04 13:19:09 +0000 2017 | 10116 | 816635078067490816 | ||
20288 | Twitter for Android | "@FoxNews: Julian Assange on U.S. media coverage: “It’s very dishonest.” #Hannity https://t.co/ADcPRQifH9" More dishonest than anyone knows | True | Wed Jan 04 13:10:05 +0000 2017 | 7296 | 816632793862176769 | ||
32684 | Twitter for Android | Julian Assange said "a 14 year old could have hacked Podesta" - why was DNC so careless? Also said Russians did not give him the info! | False | Wed Jan 04 12:22:38 +0000 2017 | 10962 | 816620855958601730 | ||
29889 | Twitter for Android | The "Intelligence" briefing on so-called "Russian hacking" was delayed until Friday, perhaps more time needed to build a case. Very strange! | False | Wed Jan 04 01:14:52 +0000 2017 | 9690 | 816452807024840704 | ||
1310 | Twitter for Android | I will be having a general news conference on JANUARY ELEVENTH in N.Y.C. Thank you. | False | Tue Jan 03 23:58:31 +0000 2017 | 401 | 816433590892429312 | ||
2573 | Twitter for iPhone | "Trump is already delivering the jobs he promised America" https://t.co/11spTMa6Tm | False | Tue Jan 03 18:44:47 +0000 2017 | 817 | 816354639859871745 | ||
2842 | Twitter for Android | There should be no further releases from Gitmo. These are extremely dangerous people and should not be allowed back onto the battlefield. | False | Tue Jan 03 17:20:43 +0000 2017 | 779 | 816333480409833472 | ||
8920 | Twitter for iPhone | Instead of driving jobs and wealth away, AMERICA will become the world's great magnet for INNOVATION & JOB CREATION. https://t.co/siXrptsOrt | False | Tue Jan 03 17:00:11 +0000 2017 | 2429 | 816328314759606272 | ||
5875 | Twitter for iPhone | "@DanScavino: Ford to scrap Mexico plant, invest in Michigan due to Trump policies" https://t.co/137nUo03Gl | True | Tue Jan 03 16:44:13 +0000 2017 | 2148 | 816324295781740544 | ||
15405 | Twitter for Android | ........may be, their number one act and priority. Focus on tax reform, healthcare and so many other things of far greater importance! #DTS | False | Tue Jan 03 15:07:41 +0000 2017 | 4252 | 816300003442495488 | ||
14663 | Twitter for Android | With all that Congress has to work on, do they really have to make the weakening of the Independent Ethics Watchdog, as unfair as it | False | Tue Jan 03 15:03:29 +0000 2017 | 4641 | 816298944456232960 | ||
1918 | Twitter for Android | The Democrat Governor.of Minnesota said "The Affordable Care Act (ObamaCare) is no longer affordable!" - And, it is lousy healthcare. | False | Tue Jan 03 12:51:15 +0000 2017 | 572 | 816265668958031872 | ||
1565 | Twitter for Android | People must remember that ObamaCare just doesn't work, and it is not affordable - 116% increases (Arizona). Bill Clinton called it "CRAZY" | False | Tue Jan 03 12:46:33 +0000 2017 | 514 | 816264484629184513 | ||
975 | Twitter for Android | General Motors is sending Mexican made model of Chevy Cruze to U.S. car dealers-tax free across border. Make in U.S.A.or pay big border tax! | False | Tue Jan 03 12:30:05 +0000 2017 | 317 | 816260343391514624 | ||
4005 | Twitter for Android | China has been taking out massive amounts of money & wealth from the U.S. in totally one-sided trade, but won't help with North Korea. Nice! | False | Mon Jan 02 23:47:12 +0000 2017 | 1303 | 816068355555815424 | ||
7664 | Twitter for Android | North Korea just stated that it is in the final stages of developing a nuclear weapon capable of reaching parts of the U.S. It won't happen! | False | Mon Jan 02 23:05:44 +0000 2017 | 2651 | 816057920223846400 | ||
20993 | Twitter for Android | I thought and felt I would win big, easily over the fabled 270 (306). When they cancelled fireworks, they knew, and so did I. | False | Mon Jan 02 18:44:04 +0000 2017 | 4891 | 815992069412057088 | ||
16763 | Twitter for Android | Various media outlets and pundits say that I thought I was going to lose the election. Wrong, it all came together in the last week and..... | False | Mon Jan 02 18:37:10 +0000 2017 | 3627 | 815990335318982656 | ||
3523 | Twitter for Android | @CNN just released a book called "Unprecedented" which explores the 2016 race & victory. Hope it does well but used worst cover photo of me! | CNN | False | Mon Jan 02 18:32:29 +0000 2017 | 1175 | 815989154555297792 | |
28701 | Twitter for Android | Chicago murder rate is record setting - 4,331 shooting victims with 762 murders in 2016. If Mayor can't do it he must ask for Federal help! | False | Mon Jan 02 17:31:17 +0000 2017 | 8575 | 815973752785793024 | ||
80789 | Twitter for Android | Well, the New Year begins. We will, together, MAKE AMERICA GREAT AGAIN! | False | Mon Jan 02 14:40:10 +0000 2017 | 19320 | 815930688889352192 | ||
0 | Twitter for iPhone | RT @IvankaTrump: 2016 has been one of the most eventful and exciting years of my life. I wish you peace, joy, love and laughter. Happy New… | True | Sun Jan 01 06:49:49 +0000 2017 | 8350 | 815449933453127681 | ||
0 | Twitter for iPhone | RT @DonaldJTrumpJr: Happy new year everyone. #newyear #family #vacation #familytime https://t.co/u9fJIKNoZq | True | Sun Jan 01 06:49:33 +0000 2017 | 4902 | 815449868739211265 | ||
0 | Twitter for iPhone | RT @EricTrump: 2016 was such an incredible year for our entire family! My beautiful wife @LaraLeaTrump made it even better! 🇺🇸🇺🇸 https://t.… | True | Sun Jan 01 05:44:17 +0000 2017 | 4847 | 815433444591304704 | ||
0 | Twitter for iPhone | RT @Reince: Happy New Year + God's blessings to you all. Looking forward to incredible things in 2017! @realDonaldTrump will Make America… | True | Sun Jan 01 05:43:23 +0000 2017 | 5445 | 815433217595547648 | ||
0 | Twitter for iPhone | RT @DanScavino: On behalf of our next #POTUS & @TeamTrump- #HappyNewYear AMERICA🇺🇸 https://t.co/Y6XDdijXea https://t.co/D8plL7xHql https:… | True | Sun Jan 01 05:39:13 +0000 2017 | 4098 | 815432169464197121 | ||
100131 | Twitter for iPhone | TO ALL AMERICANS- #HappyNewYear & many blessings to you all! Looking forward to a wonderful & prosperous 2017 as we… https://t.co/1asdMAL4iy | False | Sun Jan 01 05:00:10 +0000 2017 | 28138 | 815422340540547073 | ||
537 | Twitter for iPhone | .@VP Mike Pence will be speaking at today's #MarchForLife -- You have our full support! https://t.co/1jb53SEGV4 | False | Fri Jan 27 16:30:29 +0000 2017 | 154 | 825018149397463040 | ||
626 | Twitter for iPhone | Statement on International Holocaust Remembrance Day: https://t.co/KjU0MOxCHk | False | Fri Jan 27 20:20:15 +0000 2017 | 174 | 825075972659613696 | ||
11 | Twitter for iPhone | Congratulations Secretary Mattis! https://t.co/mkuhbegzqS | False | Fri Jan 27 22:00:47 +0000 2017 | 4 | 825101272982355968 | ||
338 | Twitter for iPhone | I promise that our administration will ALWAYS have your back. We will ALWAYS be with you! https://t.co/D0aOWhOH4X | False | Fri Jan 27 23:46:22 +0000 2017 | 117 | 825127844066054144 | ||
1 | Twitter for Android | The failing @nytimes has been wrong about me from the very beginning. Said I would lose the primaries, then the general election. FAKE NEWS! | False | Sat Jan 28 13:04:58 +0000 2017 | 2 | 825328817833123840 | ||
22 | Twitter for Android | Thr coverage about me in the @nytimes and the @washingtonpost gas been so false and angry that the times actually apologized to its..... | False | Sat Jan 28 13:08:42 +0000 2017 | 19 | 825329757646618624 | ||
918 | Twitter for Android | ...dwindling subscribers and readers.They got me wrong right from the beginning and still have not changed course, and never will. DISHONEST | False | Sat Jan 28 13:16:17 +0000 2017 | 209 | 825331665509691393 | ||
1 | Twitter for iPhone | Today, we remember the crew of the Space Shuttle Challenger, 31 years later. #NeverForget https://t.co/OhshQsFRfl | False | Sat Jan 28 15:42:58 +0000 2017 | 1 | 825368580325773312 | ||
1300 | Twitter for iPhone | I will be interviewed by @TheBrodyFile on @CBNNews tonight at 11pm. Enjoy! | False | Sat Jan 28 22:50:06 +0000 2017 | 305 | 825476070946328584 | ||
56 | Twitter for Android | Somebody with aptitude and conviction should buy the FAKE NEWS and failing @nytimes and either run it correctly or let it fold with dignity! | False | Sun Jan 29 13:00:32 +0000 2017 | 41 | 825690087857995776 | ||
914 | Twitter for Android | Our country needs strong borders and extreme vetting, NOW. Look what is happening all over Europe and, indeed, the world - a horrible mess! | False | Sun Jan 29 13:08:18 +0000 2017 | 301 | 825692045532618753 | ||
2 | Twitter for Android | Christians in the Middle-East have been executed in large numbers. We cannot allow this horror to continue! | False | Sun Jan 29 15:03:58 +0000 2017 | 1 | 825721153142521858 | ||
1 | Twitter for Android | The joint statement of former presidential candidates John McCain & Lindsey Graham is wrong - they are sadly weak on immigration. The two... | False | Sun Jan 29 21:45:58 +0000 2017 | 1 | 825822320128303110 | ||
357 | Twitter for Android | ...Senators should focus their energies on ISIS, illegal immigration and border security instead of always looking to start World War III. | False | Sun Jan 29 21:49:32 +0000 2017 | 143 | 825823217025691648 | ||
11 | Twitter for iPhone | Statement Regarding Recent Executive Order Concerning Extreme Vetting: https://t.co/f6JO60I0Ul | False | Sun Jan 29 23:28:50 +0000 2017 | 7 | 825848204633731074 | ||
3 | Twitter for iPhone | I will be interviewed by @TheBrodyFile on @CBNNews tonight at 11pm. Enjoy! | False | Sun Jan 29 23:39:53 +0000 2017 | 3 | 825850987348914184 | ||
86 | Twitter for Android | Only 109 people out of 325,000 were detained and held for questioning. Big problems at airports were caused by Delta computer outage,..... | False | Mon Jan 30 12:16:30 +0000 2017 | 62 | 826041397232943104 | ||
12 | Twitter for Android | protesters and the tears of Senator Schumer. Secretary Kelly said that all is going well with very few problems. MAKE AMERICA SAFE AGAIN! | False | Mon Jan 30 12:20:49 +0000 2017 | 6 | 826042483155013632 | ||
2125 | Twitter for Android | There is nothing nice about searching for terrorists before they can enter our country. This was a big part of my campaign. Study the world! | False | Mon Jan 30 12:27:05 +0000 2017 | 545 | 826044059647107073 | ||
1 | Twitter for Android | If the ban were announced with a one week notice, the "bad" would rush into our country during that week. A lot of bad "dudes" out there! | False | Mon Jan 30 13:31:00 +0000 2017 | 2 | 826060143825666051 | ||
591 | Twitter for Android | I have made my decision on who I will nominate for The United States Supreme Court. It will be announced live on Tuesday at 8:00 P.M. (W.H.) | False | Mon Jan 30 13:43:25 +0000 2017 | 227 | 826063267760046080 | ||
6 | Twitter for iPhone | Where was all the outrage from Democrats and the opposition party (the media) when our jobs were fleeing our country? | False | Mon Jan 30 14:23:49 +0000 2017 | 4 | 826073437735100418 | ||
4 | Twitter for iPhone | The American dream is back. We’re going to create an environment for small business like we haven’t had in many, ma… https://t.co/Bh7SrNEgz1 | False | Mon Jan 30 21:07:52 +0000 2017 | 4 | 826175120238604288 | ||
10 | Twitter for Android | The Democrats are delaying my cabinet picks for purely political reasons. They have nothing going but to obstruct. Now have an Obama A.G. | False | Tue Jan 31 00:45:50 +0000 2017 | 7 | 826229971584708608 | ||
5 | Twitter for Android | Nancy Pelosi and Fake Tears Chuck Schumer held a rally at the steps of The Supreme Court and mic did not work (a mess)-just like Dem party! | False | Tue Jan 31 11:21:52 +0000 2017 | 2 | 826390034693623809 | ||
1868 | Twitter for Android | When will the Democrats give us our Attorney General and rest of Cabinet! They should be ashamed of themselves! No wonder D.C. doesn't work! | False | Tue Jan 31 11:27:02 +0000 2017 | 461 | 826391334248407040 | ||
3075 | Twitter for Android | Getting ready to deliver a VERY IMPORTANT DECISION! 8:00 P.M. | False | Wed Feb 01 00:31:08 +0000 2017 | 823 | 826588658304217088 | ||
2575 | Twitter for iPhone | Join me live from the @WhiteHouse. https://t.co/LHOs4nAaGl | False | Wed Feb 01 01:01:03 +0000 2017 | 593 | 826596187453153281 | ||
1102 | Twitter for Android | Hope you like my nomination of Judge Neil Gorsuch for the United States Supreme Court. He is a good and brilliant man, respected by all. | False | Wed Feb 01 03:45:26 +0000 2017 | 297 | 826637556787838976 | ||
765 | Twitter for Android | Everybody is arguing whether or not it is a BAN. Call it what you want, it is about keeping bad people (with bad intentions) out of country! | False | Wed Feb 01 12:50:16 +0000 2017 | 303 | 826774668245946368 | ||
1119 | Twitter for Android | Iran is rapidly taking over more and more of Iraq even after the U.S. has squandered three trillion dollars there. Obvious long ago! | False | Thu Feb 02 03:06:14 +0000 2017 | 315 | 826990079738540033 | ||
6 | Twitter for Android | Do you believe it? The Obama Administration agreed to take thousands of illegal immigrants from Australia. Why? I will study this dumb deal! | False | Thu Feb 02 03:55:49 +0000 2017 | 5 | 827002559122567168 | ||
538 | Twitter for Android | If U.C. Berkeley does not allow free speech and practices violence on innocent people with a different point of view - NO FEDERAL FUNDS? | False | Thu Feb 02 11:13:13 +0000 2017 | 210 | 827112633224544256 | ||
908 | Twitter for Android | Congratulations to Rex Tillerson on being sworn in as our new Secretary of State. He will be a star! | False | Thu Feb 02 11:18:21 +0000 2017 | 177 | 827113926517194757 | ||
34 | Twitter for Android | Attending Chief Ryan Owens' Dignified Transfer yesterday with my daughter Ivanka was my great honor. To a great and brave man - thank you! | False | Thu Feb 02 11:25:40 +0000 2017 | 13 | 827115768202534913 | ||
75 | Twitter for Android | Iran has been formally PUT ON NOTICE for firing a ballistic missile.Should have been thankful for the terrible deal the U.S. made with them! | False | Thu Feb 02 11:34:36 +0000 2017 | 29 | 827118012784373760 | ||
7 | Twitter for Android | Iran was on its last legs and ready to collapse until the U.S. came along and gave it a life-line in the form of the Iran Deal: $150 billion | False | Thu Feb 02 11:39:49 +0000 2017 | 3 | 827119326880813056 | ||
1149 | Twitter for iPhone | Thank you, @Samsung! We would love to have you! https://t.co/r5nxC9oOA4 | False | Thu Feb 02 17:29:16 +0000 2017 | 333 | 827207267632164868 | ||
3 | Twitter for Android | Yes, Arnold Schwarzenegger did a really bad job as Governor of California and even worse on the Apprentice...but at least he tried hard! | False | Fri Feb 03 11:24:51 +0000 2017 | 2 | 827477947154063361 | ||
1775 | Twitter for Android | Iran is playing with fire - they don't appreciate how "kind" President Obama was to them. Not me! | False | Fri Feb 03 11:28:02 +0000 2017 | 565 | 827478751931924480 | ||
194 | Twitter for Android | Thank you to Prime Minister of Australia for telling the truth about our very civil conversation that FAKE NEWS media lied about. Very nice! | False | Fri Feb 03 11:34:32 +0000 2017 | 93 | 827480386120929280 | ||
1646 | Twitter for Android | Meeting with biggest business leaders this morning. Good jobs are coming back to U.S., health care and tax bills are being crafted NOW! | False | Fri Feb 03 11:41:11 +0000 2017 | 341 | 827482059438432260 | ||
1437 | Twitter for Android | Professional anarchists, thugs and paid protesters are proving the point of the millions of people who voted to MAKE AMERICA GREAT AGAIN! | False | Fri Feb 03 11:48:16 +0000 2017 | 435 | 827483841589891073 | ||
3 | Twitter for Android | A new radical Islamic terrorist has just attacked in Louvre Museum in Paris. Tourists were locked down. France on edge again. GET SMART U.S. | False | Fri Feb 03 12:51:58 +0000 2017 | 1 | 827499871011819520 | ||
122 | Twitter for Android | We must keep "evil" out of our country! | False | Fri Feb 03 23:08:38 +0000 2017 | 73 | 827655062835052544 | ||
11 | Twitter for Android | Countries charge U.S. companies taxes or tariffs while the U.S. charges them nothing or little.We should charge them SAME as they charge us! | False | Sat Feb 04 03:07:47 +0000 2017 | 9 | 827715246135574530 | ||
90 | Twitter for Android | When a country is no longer able to say who can, and who cannot , come in & out, especially for reasons of safety &.security - big trouble! | False | Sat Feb 04 12:59:35 +0000 2017 | 46 | 827864176043376640 | ||
42 | Twitter for Android | Interesting that certain Middle-Eastern countries agree with the ban. They know if certain people are allowed in it's death & destruction! | False | Sat Feb 04 13:06:39 +0000 2017 | 39 | 827865957750161408 | ||
2656 | Twitter for Android | The opinion of this so-called judge, which essentially takes law-enforcement away from our country, is ridiculous and will be overturned! | False | Sat Feb 04 13:12:02 +0000 2017 | 612 | 827867311054974976 | ||
323 | Twitter for Android | After being forced to apologize for its bad and inaccurate coverage of me after winning the election, the FAKE NEWS @nytimes is still lost! | False | Sat Feb 04 13:39:27 +0000 2017 | 122 | 827874208021639168 | ||
4082 | Twitter for Android | MAKE AMERICA GREAT AGAIN! | False | Sat Feb 04 14:26:10 +0000 2017 | 1457 | 827885966509604865 | ||
2171 | Twitter for Android | What is our country coming to when a judge can halt a Homeland Security travel ban and anyone, even with bad intentions, can come into U.S.? | False | Sat Feb 04 20:44:07 +0000 2017 | 597 | 827981079042805761 | ||
11 | Twitter for Android | Because the ban was lifted by a judge, many very bad and dangerous people may be pouring into our country. A terrible decision | False | Sat Feb 04 21:44:49 +0000 2017 | 8 | 827996357252243456 | ||
1 | Twitter for Android | Why aren't the lawyers looking at and using the Federal Court decision in Boston, which is at conflict with ridiculous lift ban decision? | False | Sat Feb 04 23:37:59 +0000 2017 | 1 | 828024835670413312 | ||
10 | Twitter for Android | Interview with @oreillyfactor on Fox Network - 4:00 P.M. (prior to Super Bowl). Enjoy! | False | Sun Feb 05 00:34:50 +0000 2017 | 8 | 828039143318024194 | ||
2191 | Twitter for Android | The judge opens up our country to potential terrorists and others that do not have our best interests at heart. Bad people are very happy! | False | Sun Feb 05 00:48:12 +0000 2017 | 554 | 828042506851934209 | ||
2231 | Twitter for Android | Just cannot believe a judge would put our country in such peril. If something happens blame him and court system. People pouring in. Bad! | False | Sun Feb 05 20:39:05 +0000 2017 | 603 | 828342202174668800 | ||
191 | Twitter for Android | I have instructed Homeland Security to check people coming into our country VERY CAREFULLY. The courts are making the job very difficult! | False | Sun Feb 05 20:42:33 +0000 2017 | 58 | 828343072840900610 | ||
541 | Twitter for Android | I will be interviewed by @oreillyfactor at 4:00 P.M. (prior to the #SuperBowl Pre-game Show) on Fox Network. Enjoy! | False | Sun Feb 05 20:47:25 +0000 2017 | 147 | 828344301381939200 | ||
80 | Twitter for Android | Enjoy the #SuperBowl and then we continue: MAKE AMERICA GREAT AGAIN! | False | Sun Feb 05 22:49:42 +0000 2017 | 40 | 828375073006444544 | ||
23 | Twitter for Android | What an amazing comeback and win by the Patriots. Tom Brady, Bob Kraft and Coach B are total winners. Wow! | False | Mon Feb 06 03:36:54 +0000 2017 | 10 | 828447350200926212 | ||
3 | Twitter for Android | Any negative polls are fake news, just like the CNN, ABC, NBC polls in the election. Sorry, people want border security and extreme vetting. | False | Mon Feb 06 12:01:53 +0000 2017 | 5 | 828574430800539648 | ||
2 | Twitter for Android | I call my own shots, largely based on an accumulation of data, and everyone knows it. Some FAKE NEWS media, in order to marginalize, lies! | False | Mon Feb 06 12:07:55 +0000 2017 | 2 | 828575949268606977 | ||
18 | Twitter for Android | Will be interviewed on @oreillyfactor tonight at 8:00 P.M. | False | Mon Feb 06 16:27:45 +0000 2017 | 6 | 828641340313460736 | ||
462 | Twitter for Android | The failing @nytimes writes total fiction concerning me. They have gotten it wrong for two years, and now are making up stories & sources! | False | Mon Feb 06 16:32:24 +0000 2017 | 169 | 828642511698669569 | ||
1 | Twitter for iPhone | An extended interview from the Super Bowl with @oreillyfactor airs tonight at 8:00 P.M. Enjoy! https://t.co/kZdHqaNTVR | False | Mon Feb 06 23:33:52 +0000 2017 | 4 | 828748574255091714 | ||
0 | Twitter for Android | The failing @nytimes was forced to apologize to its subscribers for the poor reporting it did on my election win. Now they are worse! | False | Tue Feb 07 02:33:55 +0000 2017 | 2 | 828793887275761665 | ||
266 | Twitter for Android | The threat from radical Islamic terrorism is very real, just look at what is happening in Europe and the Middle-East. Courts must act fast! | False | Tue Feb 07 02:49:28 +0000 2017 | 102 | 828797801630937089 | ||
2 | Twitter for Android | I don't know Putin, have no deals in Russia, and the haters are going crazy - yet Obama can make a deal with Iran, #1in terror, no problem! | False | Tue Feb 07 12:04:01 +0000 2017 | 2 | 828937357147635713 | ||
232 | Twitter for iPhone | I don't know Putin, have no deals in Russia, and the haters are going crazy - yet Obama can make a deal with Iran, #1 in terror, no problem! | False | Tue Feb 07 12:11:29 +0000 2017 | 87 | 828939235499638784 | ||
986 | Twitter for iPhone | An honor having the National Sheriffs' Assoc. join me at the @WhiteHouse. Incredible men & women who protect & serv… https://t.co/1LkhbCNh8L | False | Tue Feb 07 16:25:13 +0000 2017 | 216 | 829003091735359488 | ||
0 | Twitter for Android | It is a disgrace that my full Cabinet is still not in place, the longest such delay in the history of our country. Obstruction by Democrats! | False | Wed Feb 08 01:04:00 +0000 2017 | 2 | 829133645055135750 | ||
147 | Twitter for Android | If the U.S. does not win this case as it so obviously should, we can never have the security and safety to which we are entitled. Politics! | False | Wed Feb 08 12:03:18 +0000 2017 | 51 | 829299566344359936 | ||
11 | Twitter for Android | I will be speaking at 9:00 A.M. today to Police Chiefs and Sheriffs and will be discussing the horrible, dangerous and wrong decision....... | False | Wed Feb 08 13:04:47 +0000 2017 | 8 | 829315036329963521 | ||
117 | Twitter for iPhone | Thank you to our great Police Chiefs & Sheriffs for your leadership & service. You have a true friend in the… https://t.co/Lysnv8ZR1h | False | Wed Feb 08 15:23:29 +0000 2017 | 26 | 829349943613734912 | ||
0 | Twitter for iPhone | My daughter Ivanka has been treated so unfairly by @Nordstrom. She is a great person -- always pushing me to do the right thing! Terrible! | False | Wed Feb 08 15:51:01 +0000 2017 | 0 | 829356871848951809 | ||
1 | Twitter for iPhone | '16 Fake News Stories Reporters Have Run Since Trump Won' https://t.co/0dHld5kiVc | False | Wed Feb 08 15:54:01 +0000 2017 | 2 | 829357626798530561 | ||
1229 | Twitter for Android | Big increase in traffic into our country from certain areas, while our people are far more vulnerable, as we wait for what should be EASY D! | False | Wed Feb 08 17:41:09 +0000 2017 | 306 | 829384587482656768 | ||
78 | Twitter for iPhone | Thank you Brian Krzanich, CEO of @Intel. A great investment ($7 BILLION) in American INNOVATION and JOBS!… https://t.co/oicfDsPKHQ | False | Wed Feb 08 19:22:33 +0000 2017 | 36 | 829410107406614534 | ||
5 | Twitter for iPhone | 'Immigration Ban Is One Of Trump's Most Popular Orders So Far' https://t.co/wAelwuQ4BE | False | Wed Feb 08 19:39:51 +0000 2017 | 5 | 829414457126313986 | ||
984 | Twitter for iPhone | 'Majority in Leading EU Nations Support Trump-Style Travel Ban' Poll of more than 10,000 people in 10 countries...https://t.co/KWsIWhtC9o | False | Wed Feb 08 21:46:14 +0000 2017 | 264 | 829446266111287305 | ||
1152 | Twitter for iPhone | 'Trump administration seen as more truthful than news media' https://t.co/6LmsR5JOSW | False | Wed Feb 08 22:07:18 +0000 2017 | 278 | 829451566000242688 | ||
7 | Twitter for iPhone | Congratulations to our new Attorney General, @SenatorSessions! https://t.co/e0buP1K83z | False | Thu Feb 09 01:05:53 +0000 2017 | 6 | 829496507841789952 | ||
1 | Twitter for Android | Sen.Richard Blumenthal, who never fought in Vietnam when he said for years he had (major lie),now misrepresents what Judge Gorsuch told him? | False | Thu Feb 09 11:57:59 +0000 2017 | 2 | 829660612452036608 | ||
949 | Twitter for Android | Chris Cuomo, in his interview with Sen. Blumenthal, never asked him about his long-term lie about his brave "service" in Vietnam. FAKE NEWS! | False | Thu Feb 09 13:19:08 +0000 2017 | 246 | 829681034564341760 | ||
1231 | Twitter for Android | Sen. McCain should not be talking about the success or failure of a mission to the media. Only emboldens the enemy! He's been losing so.... | False | Thu Feb 09 13:26:07 +0000 2017 | 302 | 829682794951475200 | ||
1 | Twitter for Android | ...long he doesn't know how to win anymore, just look at the mess our country is in - bogged down in conflict all over the place. Our hero.. | False | Thu Feb 09 13:31:59 +0000 2017 | 2 | 829684271812067328 | ||
118 | Twitter for Android | ..Ryan died on a winning mission ( according to General Mattis), not a "failure." Time for the U.S. to get smart and start winning again! | False | Thu Feb 09 13:52:31 +0000 2017 | 43 | 829689436279603206 | ||
1 | Twitter for iPhone | Join us live in the Oval Office for the swearing in of our new Attorney General, @SenatorSessions! LIVE:… https://t.co/QeW6vjog4A | False | Thu Feb 09 15:58:01 +0000 2017 | 2 | 829721019720015872 | ||
21 | Twitter for Android | SEE YOU IN COURT, THE SECURITY OF OUR NATION IS AT STAKE! | False | Thu Feb 09 23:35:49 +0000 2017 | 28 | 829836231802515457 | ||
107 | Twitter for Android | LAWFARE: "Remarkably, in the entire opinion, the panel did not bother even to cite this (the) statute." A disgraceful decision! | False | Fri Feb 10 13:15:27 +0000 2017 | 47 | 830042498806460417 | ||
7 | Twitter for Android | The failing @nytimes does major FAKE NEWS China story saying "Mr.Xi has not spoken to Mr. Trump since Nov.14." We spoke at length yesterday! | False | Fri Feb 10 13:35:50 +0000 2017 | 8 | 830047626414477312 | ||
8 | Twitter for iPhone | Heading to Joint Base Andrews on #MarineOne with Prime Minister Shinzō earlier today. https://t.co/4JFhyYdeHO | False | Fri Feb 10 23:24:51 +0000 2017 | 9 | 830195857530183684 | ||
5 | Twitter for Android | Our legal system is broken! "77% of refugees allowed into U.S. since travel reprieve hail from seven suspect countries." (WT) SO DANGEROUS! | False | Sat Feb 11 12:12:51 +0000 2017 | 3 | 830389130311921667 | ||
16 | Twitter for Android | I am reading that the great border WALL will cost more than the government originally thought, but I have not gotten involved in the..... | False | Sat Feb 11 13:18:43 +0000 2017 | 16 | 830405706255912960 | ||
124 | Twitter for Android | ...design or negotiations yet. When I do, just like with the F-35 FighterJet or the Air Force One Program, price will come WAY DOWN! | False | Sat Feb 11 13:24:32 +0000 2017 | 48 | 830407172747988992 | ||
6 | Twitter for Android | Melania and I are hosting Japanese Prime Minister Shinzo Abe and Mrs. Abe at Mar-a-Lago in Palm Beach, Fla. They are a wonderful couple! | False | Sat Feb 11 13:33:53 +0000 2017 | 6 | 830409522397184000 | ||
77 | Twitter for iPhone | Having a great time hosting Prime Minister Shinzo Abe in the United States! https://t.co/Fvjsac89qS… https://t.co/hKqbMB2aQ9 | False | Sat Feb 11 18:28:31 +0000 2017 | 33 | 830483672096768001 | ||
480 | Twitter for Android | I am so proud of my daughter Ivanka. To be abused and treated so badly by the media, and to still hold her head so high, is truly wonderful! | False | Sat Feb 11 23:00:21 +0000 2017 | 144 | 830552079240409089 | ||
1 | Twitter for Android | Playef golf today with Prime Minister Abe of Japan and @TheBig_Easy, Ernie Els, and had a great time. Japan is very well represented! | False | Sat Feb 11 23:07:52 +0000 2017 | 8 | 830553970225590277 | ||
93 | Twitter for iPhone | Played golf today with Prime Minister Abe of Japan and @TheBig_Easy, Ernie Els, and had a great time. Japan is very well represented! | False | Sat Feb 11 23:15:34 +0000 2017 | 35 | 830555911559249926 | ||
2167 | Twitter for Android | A working dinner tonight with Prime Minister Abe of Japan, and his representatives, at the Winter White House (Mar-a-Lago). Very good talks! | False | Sat Feb 11 23:24:08 +0000 2017 | 383 | 830558065715998726 | ||
0 | Twitter for iPhone | RT @Scavino45: LIVE Joint Statement by President Trump and Prime Minister Shinzo Abe: https://t.co/c3Fe5cUaaS | True | Sun Feb 12 03:23:13 +0000 2017 | 55 | 830618234726543360 | ||
0 | Twitter for iPhone | #ICYMI: Joint Statement with Prime Minister Shinzo Abe on North Korea. https://t.co/qEC87FKB1D | False | Sun Feb 12 05:02:01 +0000 2017 | 0 | 830643095150657536 | ||
10 | Twitter for Android | The crackdown on illegal criminals is merely the keeping of my campaign promise. Gang members, drug dealers & others are being removed! | False | Sun Feb 12 11:34:45 +0000 2017 | 10 | 830741932099960834 | ||
626 | Twitter for Android | 72% of refugees admitted into U.S. (2/3 -2/11) during COURT BREAKDOWN are from 7 countries: SYRIA, IRAQ, SOMALIA, IRAN, SUDAN, LIBYA & YEMEN | False | Sun Feb 12 11:55:10 +0000 2017 | 214 | 830747067379232769 | ||
767 | Twitter for Android | While on FAKE NEWS @CNN, Bernie Sanders was cut off for using the term fake news to describe the network. They said technical difficulties! | False | Sun Feb 12 12:14:16 +0000 2017 | 256 | 830751875578355713 | ||
14 | Twitter for Android | After two days of very productive talks, Prime Minister Abe is heading back to Japan. L | False | Sun Feb 12 13:04:49 +0000 2017 | 11 | 830764596235485188 | ||
384 | Twitter for Android | I know Mark Cuban well. He backed me big-time but I wasn't interested in taking all of his calls.He's not smart enough to run for president! | False | Sun Feb 12 13:23:18 +0000 2017 | 133 | 830769247185952772 | ||
4 | Twitter for iPhone | Congratulations Stephen Miller- on representing me this morning on the various Sunday morning shows. Great job! | False | Sun Feb 12 15:41:55 +0000 2017 | 2 | 830804130692268032 | ||
2219 | Twitter for Android | Just leaving Florida. Big crowds of enthusiastic supporters lining the road that the FAKE NEWS media refuses to mention. Very dishonest! | False | Sun Feb 12 22:19:05 +0000 2017 | 511 | 830904083519242241 | ||
1143 | Twitter for iPhone | Today I will meet with Canadian PM Trudeau and a group of leading business women to discuss women in the workforce. https://t.co/bFAHPRXHdP | False | Mon Feb 13 15:53:08 +0000 2017 | 291 | 831169341358014475 | ||
1181 | Twitter for iPhone | Welcome to the @WhiteHouse Prime Minister @JustinTrudeau! https://t.co/WKgF8Zo9ri | False | Mon Feb 13 16:59:06 +0000 2017 | 284 | 831185943482793986 | ||
1 | Twitter for iPhone | Wonderful meeting with Canadian PM @JustinTrudeau and a group of leading CEO's & business women from Canada🇨🇦and th… https://t.co/wAoCOaYeZ6 | False | Mon Feb 13 18:50:57 +0000 2017 | 2 | 831214091993751552 | ||
1854 | Twitter for iPhone | Congratulations Treasury Secretary Steven Mnuchin! #ICYMI- watch here: https://t.co/RPsmw4yD7y https://t.co/K8tWLlXiYK | False | Tue Feb 14 02:57:05 +0000 2017 | 374 | 831336432073658368 | ||
13 | Twitter for iPhone | Congratulations to our new #VASecretary Dr. David Shulkin. Time to take care of Veterans who have fought to protect… https://t.co/FNewjbHuw4 | False | Tue Feb 14 03:30:45 +0000 2017 | 12 | 831344902990655489 | ||
5 | Twitter for Android | The real story here is why are there so many illegal leaks coming out of Washington? Will these leaks be happening as I deal on N.Korea etc? | False | Tue Feb 14 14:28:54 +0000 2017 | 5 | 831510532318429184 | ||
1 | Twitter for iPhone | Great parent-teacher listening session this morning with @VP Pence & @usedgov Secretary @BetsyDeVos. Watch:… https://t.co/nuLTs513Ot | False | Tue Feb 14 20:21:59 +0000 2017 | 2 | 831599387906301952 | ||
488 | Twitter for iPhone | 'Remarks by President Trump at Signing of H.J. Resolution 41' https://t.co/Q3MoCGAc54 https://t.co/yGDDTKm9Br | False | Tue Feb 14 21:48:10 +0000 2017 | 130 | 831621079747723264 | ||
74 | Twitter for iPhone | Obamacare continues to fail. Humana to pull out in 2018. Will repeal, replace & save healthcare for ALL Americans. https://t.co/glWEQ0lNR4 | False | Tue Feb 14 22:50:33 +0000 2017 | 30 | 831636777110757377 | ||
75 | Twitter for Android | The fake news media is going crazy with their conspiracy theories and blind hatred. @MSNBC & @CNN are unwatchable. @foxandfriends is great! | False | Wed Feb 15 11:40:32 +0000 2017 | 40 | 831830548565852160 | ||
1179 | Twitter for Android | This Russian connection non-sense is merely an attempt to cover-up the many mistakes made in Hillary Clinton's losing campaign. | False | Wed Feb 15 12:08:12 +0000 2017 | 340 | 831837514226921472 | ||
738 | Twitter for Android | Information is being illegally given to the failing @nytimes & @washingtonpost by the intelligence community (NSA and FBI?).Just like Russia | False | Wed Feb 15 12:19:18 +0000 2017 | 246 | 831840306161123328 | ||
43 | Twitter for Android | Thank you to Eli Lake of The Bloomberg View - "The NSA & FBI...should not interfere in our politics...and is" Very serious situation for USA | False | Wed Feb 15 12:28:37 +0000 2017 | 20 | 831842652085686273 | ||
835 | Twitter for Android | Crimea was TAKEN by Russia during the Obama Administration. Was Obama too soft on Russia? | False | Wed Feb 15 12:42:20 +0000 2017 | 285 | 831846101179314177 | ||
1714 | Twitter for Android | The real scandal here is that classified information is illegally given out by "intelligence" like candy. Very un-American! | False | Wed Feb 15 13:13:10 +0000 2017 | 423 | 831853862281699331 | ||
171 | Twitter for iPhone | Great listening session with CEO's of the Retail Industry Leaders Association this morning! https://t.co/sy6xJcWfcF | False | Wed Feb 15 16:34:27 +0000 2017 | 52 | 831904516316479489 | ||
1 | Twitter for iPhone | Welcome to the United States, @IsraeliPM Benjamin & Sara! #ICYMI🇺🇸🇮🇱Joint Press Conference: https://t.co/GN6ALWUusN https://t.co/bH60nBL5FP | False | Wed Feb 15 19:17:59 +0000 2017 | 2 | 831945670324060164 | ||
735 | Twitter for iPhone | Join me in Florida this Saturday at 5pm for a rally at the Orlando-Melbourne International Airport! Tickets:… https://t.co/OigfXFECPp | False | Wed Feb 15 19:45:16 +0000 2017 | 171 | 831952535544070145 | ||
1192 | Twitter for iPhone | Aetna CEO: Obamacare in 'Death Spiral' #RepealAndReplace https://t.co/dmHL7xIEQv | False | Wed Feb 15 21:34:05 +0000 2017 | 312 | 831979921555742732 | ||
100 | Twitter for iPhone | Venezuela should allow Leopoldo Lopez, a political prisoner & husband of @liliantintori (just met w/ @marcorubio) o… https://t.co/HhgE51dtSN | False | Wed Feb 15 23:59:26 +0000 2017 | 59 | 832016501657968640 | ||
10 | Twitter for Android | Stock market hits new high with longest winning streak in decades. Great level of confidence and optimism - even before tax plan rollout! | False | Thu Feb 16 11:34:46 +0000 2017 | 6 | 832191485701451777 | ||
18 | Twitter for Android | Leaking, and even illegal classified leaking, has been a big problem in Washington for years. Failing @nytimes (and others) must apologize! | False | Thu Feb 16 11:58:43 +0000 2017 | 11 | 832197515248275456 | ||
1 | Twitter for Android | The spotlight has finally been put on the low-life leakers! They will be caught! | False | Thu Feb 16 12:02:59 +0000 2017 | 2 | 832198588201594880 | ||
10 | Twitter for Android | FAKE NEWS media, which makes up stories and "sources," is far more effective than the discredited Democrats - but they are fading fast! | False | Thu Feb 16 14:10:49 +0000 2017 | 5 | 832230758299340800 | ||
6 | Twitter for Android | The Democrats had to come up with a story as to why they lost the election, and so badly (306), so they made up a story - RUSSIA. Fake news! | False | Thu Feb 16 14:39:52 +0000 2017 | 5 | 832238070460186625 | ||
2 | Twitter for iPhone | 'Trump signs bill undoing Obama coal mining rule' https://t.co/yMfT5r5RGh | False | Thu Feb 16 23:44:54 +0000 2017 | 7 | 832375230274400256 | ||
38 | Twitter for Android | Despite the long delays by the Democrats in finally approving Dr. Tom Price, the repeal and replacement of ObamaCare is moving fast! | False | Fri Feb 17 10:13:32 +0000 2017 | 20 | 832533430168608768 | ||
431 | Twitter for Android | Going to Charleston, South Carolina, in order to spend time with Boeing and talk jobs! Look forward to it. | False | Fri Feb 17 11:38:20 +0000 2017 | 115 | 832554772318322688 | ||
1371 | Twitter for Android | Thank you for all of the nice statements on the Press Conference yesterday. Rush Limbaugh said one of greatest ever. Fake media not happy! | False | Fri Feb 17 11:43:10 +0000 2017 | 304 | 832555987299082242 | ||
181 | Twitter for iPhone | General Keith Kellogg, who I have known for a long time, is very much in play for NSA - as are three others. | False | Fri Feb 17 13:16:22 +0000 2017 | 65 | 832579442790772736 | ||
831 | Twitter for iPhone | Join me at 11:00am: Watch here: https://t.co/veqKmsGAwf https://t.co/UzndIjIqjM | False | Fri Feb 17 15:34:14 +0000 2017 | 225 | 832614137586933760 | ||
247 | Twitter for Android | The FAKE NEWS media (failing @nytimes, @CNN, @NBCNews and many more) is not my enemy, it is the enemy of the American people. SICK! | False | Fri Feb 17 21:32:29 +0000 2017 | 112 | 832704292993847296 | ||
187 | Twitter for Android | The FAKE NEWS media (failing @nytimes, @NBCNews, @ABC, @CBS, @CNN) is not my enemy, it is the enemy of the American People! | False | Fri Feb 17 21:48:22 +0000 2017 | 106 | 832708293516632065 | ||
2 | Twitter for Android | "One of the most effective press conferences I've ever seen!" says Rush Limbaugh. Many agree.Yet FAKE MEDIA calls it differently! Dishonest | False | Fri Feb 17 23:15:56 +0000 2017 | 4 | 832730328108134402 | ||
1 | Twitter for Android | Looking forward to the Florida rally tomorrow. Big crowd expected! | False | Sat Feb 18 00:02:58 +0000 2017 | 2 | 832742165436579840 | ||
5 | Twitter for Android | Don't believe the main stream (fake news) media.The White House is running VERY WELL. I inherited a MESS and am in the process of fixing it. | False | Sat Feb 18 13:31:53 +0000 2017 | 5 | 832945737625387008 | ||
572 | Twitter for Android | Will be having many meetings this weekend at The Southern White House. Big 5:00 P.M. speech in Melbourne, Florida. A lot to talk about! | False | Sat Feb 18 13:51:20 +0000 2017 | 145 | 832950628750127106 | ||
162 | Twitter for Android | Getting ready to leave for Melbourne, Florida. See you all soon! | False | Sat Feb 18 20:26:31 +0000 2017 | 37 | 833050081641234435 | ||
0 | Twitter for Android | My statement as to what's happening in Sweden was in reference to a story that was broadcast on @FoxNews concerning immigrants & Sweden. | False | Sun Feb 19 21:57:01 +0000 2017 | 2 | 833435244451753984 | ||
16 | Twitter for Android | Give the public a break - The FAKE NEWS media is trying to say that large scale immigration in Sweden is working out just beautifully. NOT! | False | Mon Feb 20 14:15:42 +0000 2017 | 18 | 833681539997253636 | ||
265 | Twitter for Android | HAPPY PRESIDENTS DAY - MAKE AMERICA GREAT AGAIN! | False | Mon Feb 20 14:33:33 +0000 2017 | 116 | 833686030679207936 | ||
97 | Twitter for Android | Meeting with Generals at Mar-a-Lago in Florida. Very interesting! | False | Mon Feb 20 19:33:35 +0000 2017 | 33 | 833761537525444608 | ||
84 | Twitter for Android | Just named General H.R. McMaster National Security Advisor. | False | Mon Feb 20 21:00:37 +0000 2017 | 20 | 833783438922629125 | ||
44 | Twitter for iPhone | Congratulations to our new National Security Advisor, General H.R. McMaster. Video: https://t.co/BKn9r225Kk https://t.co/VBXcJ1b6Pv | False | Tue Feb 21 00:38:40 +0000 2017 | 18 | 833838311315763200 | ||
0 | Twitter for iPhone | RT @realDonaldTrump: Happy Birthday @DonaldJTrumpJr! https://t.co/uRxyCD3hBz | True | Sat Dec 31 18:59:04 +0000 2016 | 828 | 815271067749060609 | ||
3317 | Twitter for iPhone | Happy Birthday @DonaldJTrumpJr! https://t.co/uRxyCD3hBz | False | Sat Dec 31 18:58:12 +0000 2016 | 828 | 815270850916208644 | ||
116167 | Twitter for Android | Happy New Year to all, including to my many enemies and those who have fought me and lost so badly they just don't know what to do. Love! | False | Sat Dec 31 13:17:21 +0000 2016 | 50314 | 815185071317676033 | ||
17217 | Twitter for Android | Russians are playing @CNN and @NBCNews for such fools - funny to watch, they don't have a clue! @FoxNews totally gets it! | False | Fri Dec 30 22:18:18 +0000 2016 | 5634 | 814958820980039681 | ||
414 | Twitter for iPhone | Join @AmerIcan32, founded by Hall of Fame legend @JimBrownNFL32 on 1/19/2017 in Washington, D.C.… https://t.co/9WJZ8iTCQV | False | Fri Dec 30 19:46:55 +0000 2016 | 128 | 814920722208296960 | ||
1644 | Twitter for Android | Great move on delay (by V. Putin) - I always knew he was very smart! | False | Fri Dec 30 19:41:33 +0000 2016 | 614 | 814919370711461890 | ||
16472 | Twitter for iPhone | My Administration will follow two simple rules: https://t.co/ZWk0j4H8Qy | False | Thu Dec 29 14:54:21 +0000 2016 | 4543 | 814484710025994241 | ||
3691 | Twitter for iPhone | 'Economists say Trump delivered hope' https://t.co/SjGBgglIuQ | False | Wed Dec 28 22:06:28 +0000 2016 | 1113 | 814231064847728640 | ||
749 | Twitter for Android | not anymore. The beginning of the end was the horrible Iran deal, and now this (U.N.)! Stay strong Israel, January 20th is fast approaching! | False | Wed Dec 28 14:25:11 +0000 2016 | 243 | 814114980983427073 | ||
3844 | Twitter for Android | We cannot continue to let Israel be treated with such total disdain and disrespect. They used to have a great friend in the U.S., but....... | False | Wed Dec 28 14:19:46 +0000 2016 | 1241 | 814113616110751744 | ||
6186 | Twitter for Android | Doing my best to disregard the many inflammatory President O statements and roadblocks.Thought it was going to be a smooth transition - NOT! | False | Wed Dec 28 14:07:13 +0000 2016 | 2115 | 814110460761018368 | ||
7004 | Twitter for Android | The U.S. Consumer Confidence Index for December surged nearly four points to 113.7, THE HIGHEST LEVEL IN MORE THAN 15 YEARS! Thanks Donald! | False | Wed Dec 28 03:10:07 +0000 2016 | 1992 | 813945096269860866 | ||
30052 | Twitter for Android | President Obama campaigned hard (and personally) in the very important swing states, and lost.The voters wanted to MAKE AMERICA GREAT AGAIN! | False | Tue Dec 27 21:52:29 +0000 2016 | 7663 | 813865160163098628 | ||
6495 | Twitter for Android | The DJT Foundation, unlike most foundations, never paid fees, rent, salaries or any expenses. 100% of money goes to wonderful charities! | False | Tue Dec 27 03:06:59 +0000 2016 | 1755 | 813581917215977473 | ||
5395 | Twitter for Android | I gave millions of dollars to DJT Foundation, raised or recieved millions more, ALL of which is given to charity, and media won't report! | False | Tue Dec 27 02:53:20 +0000 2016 | 1581 | 813578484572450816 | ||
23291 | Twitter for iPhone | The world was gloomy before I won - there was no hope. Now the market is up nearly 10% and Christmas spending is over a trillion dollars! | False | Mon Dec 26 23:32:28 +0000 2016 | 6134 | 813527932165558273 | ||
29566 | Twitter for Android | The United Nations has such great potential but right now it is just a club for people to get together, talk and have a good time. So sad! | False | Mon Dec 26 21:41:58 +0000 2016 | 8588 | 813500123053490176 | ||
36792 | Twitter for Android | President Obama said that he thinks he would have won against me. He should say that but I say NO WAY! - jobs leaving, ISIS, OCare, etc. | False | Mon Dec 26 21:36:28 +0000 2016 | 9956 | 813498739923054593 | ||
81562 | Twitter for Android | Merry Christmas and a very, very, very , very Happy New Year to everyone! | False | Sun Dec 25 17:48:48 +0000 2016 | 23919 | 813079058896535552 | ||
99850 | Twitter for iPhone | #MerryChristmas https://t.co/5GgDmJrGMS | False | Sun Dec 25 12:46:41 +0000 2016 | 33046 | 813003030186622976 | ||
5871 | Twitter for Android | .@FoxNews - "Objectified" tonight at 10:00 P.M. Enjoy! | False | Sun Dec 25 00:21:08 +0000 2016 | 1482 | 812815404175421445 | ||
19368 | Twitter for iPhone | Happy #Hanukkah https://t.co/UvZwtykV1E | False | Sat Dec 24 21:44:32 +0000 2016 | 6167 | 812775995837218816 | ||
18034 | Twitter for Android | The big loss yesterday for Israel in the United Nations will make it much harder to negotiate peace.Too bad, but we will get it done anyway! | False | Sat Dec 24 21:33:27 +0000 2016 | 5108 | 812773204561379330 | ||
1340 | Twitter for Android | .@NBCNews purposely left out this part of my nuclear qoute: "until such time as the world comes to its senses regarding nukes." Dishonest! | False | Sat Dec 24 20:59:30 +0000 2016 | 473 | 812764662500622336 | ||
26958 | Twitter for Android | Vladimir Putin said today about Hillary and Dems: "In my opinion, it is humiliating. One must be able to lose with dignity." So true! | False | Sat Dec 24 00:13:02 +0000 2016 | 8482 | 812450976670121985 | ||
8932 | Twitter for Android | slaughter you. This is a purely religious threat, which turned into reality. Such hatred! When will the U.S., and all countries, fight back? | False | Fri Dec 23 21:23:00 +0000 2016 | 3041 | 812408189492797442 | ||
8345 | Twitter for Android | The terrorist who killed so many people in Germany said just before crime,"by God's will we will slaughter you pigs, I swear, we will...... | False | Fri Dec 23 21:17:42 +0000 2016 | 3648 | 812406855469252608 | ||
15879 | Twitter for iPhone | As to the U.N., things will be different after Jan. 20th. | False | Fri Dec 23 20:14:34 +0000 2016 | 7006 | 812390964740427776 | ||
40128 | Twitter for Android | my presidency. Isn't this a ridiculous shame? He loves these kids, has raised millions of dollars for them, and now must stop. Wrong answer! | False | Fri Dec 23 11:58:36 +0000 2016 | 9763 | 812266152684650496 | ||
34448 | Twitter for Android | My wonderful son, Eric, will no longer be allowed to raise money for children with cancer because of a possible conflict of interest with... | False | Fri Dec 23 11:53:05 +0000 2016 | 10657 | 812264762981675008 | ||
26481 | Twitter for Android | The so-called "A" list celebrities are all wanting tixs to the inauguration, but look what they did for Hillary, NOTHING. I want the PEOPLE! | False | Fri Dec 23 01:59:58 +0000 2016 | 7503 | 812115501791006720 | ||
31217 | Twitter for Android | Based on the tremendous cost and cost overruns of the Lockheed Martin F-35, I have asked Boeing to price-out a comparable F-18 Super Hornet! | False | Thu Dec 22 22:26:05 +0000 2016 | 8507 | 812061677160202240 | ||
45311 | Twitter for Android | The United States must greatly strengthen and expand its nuclear capability until such time as the world comes to its senses regarding nukes | False | Thu Dec 22 16:50:30 +0000 2016 | 14438 | 811977223326625792 | ||
49311 | Twitter for Android | Someone incorrectly stated that the phrase "DRAIN THE SWAMP" was no longer being used by me. Actually, we will always be trying to DTS. | False | Thu Dec 22 16:41:52 +0000 2016 | 14277 | 811975049431416832 | ||
23914 | Twitter for iPhone | The resolution being considered at the United Nations Security Council regarding Israel should be vetoed....cont: https://t.co/s8rXKKZNF1 | False | Thu Dec 22 13:37:04 +0000 2016 | 7736 | 811928543366148096 | ||
54704 | Twitter for Android | I met some really great Air Force GENERALS and Navy ADMIRALS today, talking about airplane capability and pricing. Very impressive people! | False | Thu Dec 22 03:39:33 +0000 2016 | 11475 | 811778176120668160 | ||
72064 | Twitter for Android | I have not heard any of the pundits or commentators discussing the fact that I spent FAR LESS MONEY on the win than Hillary on the loss! | False | Wed Dec 21 13:29:38 +0000 2016 | 18510 | 811564284706689024 | ||
47242 | Twitter for Android | I would have done even better in the election, if that is possible, if the winner was based on popular vote - but would campaign differently | False | Wed Dec 21 13:24:29 +0000 2016 | 10600 | 811562990285848576 | ||
61381 | Twitter for Android | Campaigning to win the Electoral College is much more difficult & sophisticated than the popular vote. Hillary focused on the wrong states! | False | Wed Dec 21 13:15:14 +0000 2016 | 14669 | 811560662853939200 | ||
19372 | Twitter for Android | Yes, it is true - Carlos Slim, the great businessman from Mexico, called me about getting together for a meeting. We met, HE IS A GREAT GUY! | False | Tue Dec 20 20:27:57 +0000 2016 | 4989 | 811307169043849216 | ||
28175 | Twitter for Android | especially how to get people, even with an unlimited budget, out to vote in the vital swing states ( and more). They focused on wrong states | False | Tue Dec 20 13:09:18 +0000 2016 | 6312 | 811196778779463684 | ||
50983 | Twitter for Android | Bill Clinton stated that I called him after the election. Wrong, he called me (with a very nice congratulations). He "doesn't know much" ... | False | Tue Dec 20 13:03:59 +0000 2016 | 13136 | 811195441710764032 | ||
60003 | Twitter for iPhone | "@mike_pence: Congratulations to @RealDonaldTrump; officially elected President of the United States today by the Electoral College!" | True | Tue Dec 20 02:50:25 +0000 2016 | 13294 | 811041034323054592 | ||
40661 | Twitter for iPhone | "@Franklin_Graham: Congratulations to President-elect @realDonaldTrump--the electoral votes are in and it's official." Thank you Franklin! | True | Tue Dec 20 02:46:01 +0000 2016 | 8967 | 811039925571354624 | ||
0 | Twitter for iPhone | RT @DanScavino: #TrumpTrain🚂💨🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/qAQdBGEwSv | True | Tue Dec 20 01:31:21 +0000 2016 | 7722 | 811021135483699201 | ||
198547 | Twitter for Android | We did it! Thank you to all of my great supporters, we just officially won the election (despite all of the distorted and inaccurate media). | False | Mon Dec 19 23:51:41 +0000 2016 | 55806 | 810996052241293312 | ||
101614 | Twitter for Android | Today there were terror attacks in Turkey, Switzerland and Germany - and it is only getting worse. The civilized world must change thinking! | False | Mon Dec 19 23:21:11 +0000 2016 | 36763 | 810988379051610112 | ||
128074 | Twitter for Android | If my many supporters acted and threatened people like those who lost the election are doing, they would be scorned & called terrible names! | False | Sun Dec 18 21:54:40 +0000 2016 | 35321 | 810604216771284992 | ||
8335 | Twitter for Android | We should tell China that we don't want the drone they stole back.- let them keep it! | False | Sun Dec 18 00:59:25 +0000 2016 | 2709 | 810288321880555520 | ||
11623 | Twitter for iPhone | Thank you Alabama! From now on, it’s going to be #AmericaFirst. Our goal is to bring back that wonderful phrase:… https://t.co/4UAazd7TmF | False | Sun Dec 18 00:12:05 +0000 2016 | 3170 | 810276411177107456 | ||
0 | Twitter for iPhone | RT @DanScavino: Join President-elect Trump LIVE from Mobile, Alabama via his #Facebook page! #ThankYouTour2016 Watch: https://t.co/btzN080… | True | Sat Dec 17 21:17:39 +0000 2016 | 1159 | 810232514749075456 | ||
36790 | Twitter for iPhone | China steals United States Navy research drone in international waters - rips it out of water and takes it to China in unprecedented act. | False | Sat Dec 17 13:57:20 +0000 2016 | 12759 | 810121703288410112 | ||
26439 | Twitter for Android | Mobile, Alabama today at 3:00 P.M. Last rally of the year - "THANK YOU ALABAMA AND THE SOUTH" Biggest of all crowds expected, see you there! | False | Sat Dec 17 13:20:23 +0000 2016 | 6397 | 810112407309844480 | ||
22472 | Twitter for Android | "@EazyMF_E: @realDonaldTrump Many people are now saying you will be an extremely successful president! #MakeAmericaGreatAgain" Thank you! | True | Sat Dec 17 13:07:22 +0000 2016 | 4880 | 810109131537481728 | ||
24565 | Twitter for Android | Last night in Orlando, Florida, was incredible - massive crowd - THANK YOU FLORIDA! Today at 3:00 P.M. I will be in Alabama for last rally! | False | Sat Dec 17 13:05:02 +0000 2016 | 4985 | 810108542921408512 | ||
31929 | Twitter for iPhone | Thank you Florida. My Administration will follow two simple rules: BUY AMERICAN and HIRE AMERICAN! #ICYMI- Watch:… https://t.co/3vgtzSJsFu | False | Sat Dec 17 03:52:01 +0000 2016 | 8632 | 809969373754654721 | ||
22926 | Twitter for iPhone | #ThankYouTour2016 Tonight- Orlando, Florida Tickets: https://t.co/JwQeccp79N Tomorrow- Mobile, Alabama Tickets:… https://t.co/Cq5AwcuzT9 | False | Fri Dec 16 16:54:28 +0000 2016 | 6309 | 809803893920165892 | ||
60937 | Twitter Web Client | Well, we all did it, together! I hope the "MOVEMENT" fans will go to D.C. on Jan 20th for the swearing in. Let's set the all time record! | False | Fri Dec 16 16:03:09 +0000 2016 | 16273 | 809790978332786689 | ||
98604 | Twitter for Android | Are we talking about the same cyberattack where it was revealed that head of the DNC illegally gave Hillary the questions to the debate? | False | Fri Dec 16 11:09:19 +0000 2016 | 31372 | 809717035353722880 | ||
34109 | Twitter for iPhone | Thank you Pennsylvania! Together, we are going to MAKE AMERICA GREAT AGAIN! Watch here: https://t.co/7R382qWfWS… https://t.co/yB6u5FEfHq | False | Fri Dec 16 01:32:56 +0000 2016 | 8336 | 809571983428120577 | ||
7287 | Twitter for iPhone | Join me in Mobile, Alabama on Sat. at 3pm! #ThankYouTour2016 Tickets: https://t.co/GGgbjl8Zo6 https://t.co/opKrWO4k0C | False | Thu Dec 15 22:27:16 +0000 2016 | 2046 | 809525257371578369 | ||
67750 | Twitter for iPhone | If Russia, or some other entity, was hacking, why did the White House wait so long to act? Why did they only complain after Hillary lost? | False | Thu Dec 15 14:24:29 +0000 2016 | 23379 | 809403760099422208 | ||
36689 | Twitter for Android | The media tries so hard to make my move to the White House, as it pertains to my business, so complex - when actually it isn't! | False | Thu Dec 15 13:28:54 +0000 2016 | 8878 | 809389774066814976 | ||
36437 | Twitter for Android | Thank you to Time Magazine and Financial Times for naming me "Person of the Year" - a great honor! | False | Thu Dec 15 13:09:14 +0000 2016 | 7282 | 809384826193276928 | ||
23627 | Twitter for Android | Has anyone looked at the really poor numbers of @VanityFair Magazine. Way down, big trouble, dead! Graydon Carter, no talent, will be out! | False | Thu Dec 15 13:05:55 +0000 2016 | 6040 | 809383989018497024 | ||
6320 | Twitter Web Client | .@BillGates and @JimBrownNFL32 in my Trump Tower office yesterday- two great guys! https://t.co/4PjSOEU5y9 | False | Wed Dec 14 18:07:55 +0000 2016 | 1783 | 809097603010981888 | ||
27415 | Twitter for iPhone | Thank you Wisconsin! My Administration will be focused on three very important words: jobs, jobs, jobs! Watch:… https://t.co/iEGWZLuiFE | False | Wed Dec 14 03:48:55 +0000 2016 | 6634 | 808881429715316737 | ||
0 | Twitter for iPhone | RT @DanScavino: Join #PEOTUS Trump & #VPEOTUS Pence live in West Allis, Wisconsin! #ThankYouTour2016 #MAGA https://t.co/vU5EPIYKUc https:/… | True | Wed Dec 14 00:52:40 +0000 2016 | 1066 | 808837073423794176 | ||
10804 | Twitter for iPhone | Join me this Saturday at Ladd–Peebles Stadium in Mobile, Alabama! #ThankYouTour2016 Tickets:… https://t.co/1RFmKCMgyw | False | Tue Dec 13 21:33:53 +0000 2016 | 3165 | 808787048144453632 | ||
42433 | Twitter for Android | The thing I like best about Rex Tillerson is that he has vast experience at dealing successfully with all types of foreign governments. | False | Tue Dec 13 12:44:06 +0000 2016 | 11352 | 808653723639697408 | ||
58672 | Twitter for Android | Wisconsin and Pennsylvania have just certified my wins in those states. I actually picked up additional votes! | False | Tue Dec 13 11:57:35 +0000 2016 | 14758 | 808642018612310016 | ||
60673 | Twitter for Android | I have chosen one of the truly great business leaders of the world, Rex Tillerson, Chairman and CEO of ExxonMobil, to be Secretary of State. | False | Tue Dec 13 11:43:38 +0000 2016 | 20318 | 808638507161882624 | ||
39123 | Twitter for Android | I will hold a press conference in the near future to discuss the business, Cabinet picks and all other topics of interest. Busy times! | False | Tue Dec 13 04:41:33 +0000 2016 | 9331 | 808532286664822784 | ||
35238 | Twitter for Android | Presidency. Two of my children, Don and Eric, plus executives, will manage them. No new deals will be done during my term(s) in office. | False | Tue Dec 13 04:32:01 +0000 2016 | 8510 | 808529888630239232 | ||
45239 | Twitter for Android | Even though I am not mandated by law to do so, I will be leaving my busineses before January 20th so that I can focus full time on the...... | False | Tue Dec 13 04:26:13 +0000 2016 | 10616 | 808528428123254785 | ||
59448 | Twitter for Android | I will be making my announcement on the next Secretary of State tomorrow morning. | False | Tue Dec 13 00:33:05 +0000 2016 | 16480 | 808469755749339136 | ||
95889 | Twitter for Android | The final Wisconsin vote is in and guess what - we just picked up an additional 131 votes. The Dems and Green Party can now rest. Scam! | False | Mon Dec 12 23:40:48 +0000 2016 | 28477 | 808456602076545025 | ||
5122 | Twitter for iPhone | #ThankYouTour2016 Tue: West Allis, WI. Thur: Hershey, PA. Fri: Orlando, FL. Sat: Mobile, AL. Tickets:… https://t.co/OJ8S7iVzFx | False | Mon Dec 12 22:25:52 +0000 2016 | 1566 | 808437742904418304 | ||
41205 | Twitter for Android | The F-35 program and cost is out of control. Billions of dollars can and will be saved on military (and other) purchases after January 20th. | False | Mon Dec 12 13:26:13 +0000 2016 | 12145 | 808301935728230404 | ||
40070 | Twitter for Android | Unless you catch "hackers" in the act, it is very hard to determine who was doing the hacking. Why wasn't this brought up before election? | False | Mon Dec 12 13:21:20 +0000 2016 | 11586 | 808300706914594816 | ||
74132 | Twitter for Android | Can you imagine if the election results were the opposite and WE tried to play the Russia/CIA card. It would be called conspiracy theory! | False | Mon Dec 12 13:17:54 +0000 2016 | 24974 | 808299841147248640 | ||
61285 | Twitter for Android | Just watched @NBCNightlyNews - So biased, inaccurate and bad, point after point. Just can't get much worse, although @CNN is right up there! | False | Mon Dec 12 01:02:14 +0000 2016 | 17661 | 808114703922843649 | ||
23449 | Twitter for Android | Will be interviewed on @FoxNews at 10:00 P.M. Enjoy! | False | Mon Dec 12 00:32:28 +0000 2016 | 4908 | 808107215492091904 | ||
47706 | Twitter for Android | Whether I choose him or not for "State"- Rex Tillerson, the Chairman & CEO of ExxonMobil, is a world class player and dealmaker. Stay tuned! | False | Sun Dec 11 15:29:10 +0000 2016 | 11630 | 807970490635743237 | ||
46929 | Twitter for Android | I spent Friday campaigning with John Kennedy, of the Great State of Louisiana, for the U.S.Senate. The election is over - JOHN WON! | False | Sun Dec 11 13:51:47 +0000 2016 | 9340 | 807945982633709570 | ||
73903 | Twitter for Android | Being at the Army - Navy Game was fantastic. There is nothing like the spirit in that stadium. A wonderful experience, and congrats to Army! | False | Sun Dec 11 13:12:06 +0000 2016 | 12499 | 807935995316408322 | ||
27342 | Twitter for Android | I will be interviewed today on Fox News Sunday with Chris Wallace at 10:00 (Eastern) Network. ENJOY! | False | Sun Dec 11 12:56:18 +0000 2016 | 5377 | 807932020236124160 | ||
0 | Twitter for iPhone | RT @FoxNewsSunday: Sunday-- our exclusive interview with President-elect @realDonaldTrump Watch on @FoxNews at 2p/10p ET Check your local… | True | Sat Dec 10 19:09:28 +0000 2016 | 5648 | 807663539116802048 | ||
25079 | Twitter for iPhone | October 2015 - thanks Chris Wallace @FoxNewsSunday! https://t.co/VEsgPcWq7z | False | Sat Dec 10 19:09:13 +0000 2016 | 6760 | 807663477322027008 | ||
0 | Twitter for iPhone | RT @TrumpInaugural: Counting down the days until the swearing in of @realDonaldTrump & @mike_pence. Check in here for the latest updates. #… | True | Sat Dec 10 18:41:12 +0000 2016 | 3278 | 807656426374103041 | ||
16825 | Twitter for iPhone | A very interesting read. Unfortunately, so much is true. https://t.co/ER2BoM765M | False | Sat Dec 10 14:14:23 +0000 2016 | 6611 | 807589280071684096 | ||
36682 | Twitter for iPhone | Reports by @CNN that I will be working on The Apprentice during my Presidency, even part time, are ridiculous & untrue - FAKE NEWS! | False | Sat Dec 10 14:11:49 +0000 2016 | 12859 | 807588632877998081 | ||
65924 | Twitter for Android | As a show of support for our Armed Forces, I will be going to The Army-Navy Game today. Looking forward to it, should be fun! | False | Sat Dec 10 12:38:24 +0000 2016 | 13282 | 807565127021109252 | ||
31542 | Twitter for Android | I have NOTHING to do with The Apprentice except for fact that I conceived it with Mark B & have a big stake in it. Will devote ZERO TIME! | False | Sat Dec 10 11:27:22 +0000 2016 | 7838 | 807547249681166336 | ||
19486 | Twitter for Android | .@RudyGiuliani, one of the finest people I know and a former GREAT Mayor of N.Y.C., just took himself out of consideration for "State". | False | Sat Dec 10 11:19:24 +0000 2016 | 5193 | 807545243608420352 | ||
28685 | Twitter for iPhone | Thank you Michigan. We are going to bring back your jobs & together, we will MAKE AMERICA GREAT AGAIN! Watch:… https://t.co/EyLOo26FqW | False | Sat Dec 10 03:30:50 +0000 2016 | 7276 | 807427326522884096 | ||
29665 | Twitter for iPhone | Thank you Louisiana! Get out & vote for John Kennedy tomorrow. Electing Kennedy will help enact our agenda on behal… https://t.co/sHXeyreEZI | False | Fri Dec 09 22:13:21 +0000 2016 | 7959 | 807347429062443009 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment