tweets
10 rows where "created_at" is on date 2021-09-15, favorite_count = 1 and is_quote_status = 0
This data as json, CSV (advanced)
Suggested facets: source, in_reply_to_user_id, in_reply_to_screen_name, created_at (date)
id ▼ | user | created_at | full_text | retweeted_status | quoted_status | place | source | truncated | display_text_range | in_reply_to_status_id | in_reply_to_user_id | in_reply_to_screen_name | geo | coordinates | contributors | is_quote_status | retweet_count | favorite_count | favorited | retweeted | possibly_sensitive | lang | scopes |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1437950128023908356 | swyx 33521530 | 2021-09-15T01:23:20+00:00 | @SergiiKirianov free returns | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [16, 28] | 1437945669080125444 | 893461174355996673 | SergiiKirianov | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1437956977515278338 | swyx 33521530 | 2021-09-15T01:50:34+00:00 | @mikecodemonkey @seldo @thepine64 on my radar! | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [34, 46] | 1437955986027737091 | 3237240498 | mikecodemonkey | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1437961996473884676 | swyx 33521530 | 2021-09-15T02:10:30+00:00 | @alexandereardon Casio is Lindy | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [17, 31] | 1437959936860848128 | 37125581 | alexandereardon | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1437962974669459464 | swyx 33521530 | 2021-09-15T02:14:23+00:00 | @___mkultra i asked a friend what the three rings meant and he said “no idea but i wanna complete them every day” i also tried the “Modular” complication and the “now playing” face was buggy as hell, never actually showed what i was playing in @OvercastFM | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [12, 256] | 1437961161660534786 | 54618682 | ___mkultra | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1438097489727479809 | swyx 33521530 | 2021-09-15T11:08:54+00:00 | @qiannyqian agreed but also you can put that reminder on your computer https://hovancik.net/stretchly/ | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [12, 95] | 1437950096407023619 | 879970846692986880 | qiannyqian | 0 | 0 | 1 | 0 | 0 | 0 | en | |||||||
1438098528824434692 | swyx 33521530 | 2021-09-15T11:13:02+00:00 | @arvidkahl wow your wise man beard is coming along nicely! | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [11, 58] | 1437784289530335239 | 343990983 | arvidkahl | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1438107653864140803 | swyx 33521530 | 2021-09-15T11:49:18+00:00 | @PhillParkinson amazing!! congrats!! | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [16, 36] | 1438106324588539916 | 531390154 | PhillParkinson | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1438214343506550784 | swyx 33521530 | 2021-09-15T18:53:14+00:00 | @derrickreimer amazing! ty | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [15, 26] | 1436405541488807938 | 28679508 | derrickreimer | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1438247379015192577 | swyx 33521530 | 2021-09-15T21:04:31+00:00 | @KennethCassel how much you reckon a domain like cal dot com costs? | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [15, 67] | 1438244327516356615 | 1319269656264409088 | KennethCassel | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1438249806082686976 | swyx 33521530 | 2021-09-15T21:14:09+00:00 | @KennethCassel @brianleroux got a guesstimate for an on-brand 3 letter dot com domain? | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [15, 86] | 1438248517957419009 | 1319269656264409088 | KennethCassel | 0 | 0 | 1 | 0 | 0 | en |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [tweets] ( [id] INTEGER PRIMARY KEY, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [full_text] TEXT, [retweeted_status] INTEGER, [quoted_status] INTEGER, [place] TEXT REFERENCES [places]([id]), [source] TEXT REFERENCES [sources]([id]), [truncated] INTEGER, [display_text_range] TEXT, [in_reply_to_status_id] INTEGER, [in_reply_to_user_id] INTEGER, [in_reply_to_screen_name] TEXT, [geo] TEXT, [coordinates] TEXT, [contributors] TEXT, [is_quote_status] INTEGER, [retweet_count] INTEGER, [favorite_count] INTEGER, [favorited] INTEGER, [retweeted] INTEGER, [possibly_sensitive] INTEGER, [lang] TEXT, [scopes] TEXT, FOREIGN KEY([retweeted_status]) REFERENCES [tweets]([id]), FOREIGN KEY([quoted_status]) REFERENCES [tweets]([id]) ); CREATE INDEX [idx_tweets_source] ON [tweets] ([source]);