tweets
3 rows where "created_at" is on date 2021-12-10 and is_quote_status = 1 sorted by lang
This data as json, CSV (advanced)
Suggested facets: user, quoted_status, retweet_count, favorited, retweeted
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1469127306048245761 | swyx 33521530 | 2021-12-10T02:10:19+00:00 | @JoeEmison this happened to me *today*. still trying to convince them its not a good idea instead of an example to follow. https://twitter.com/swyx/status/1469092201376354305?s=21 | 1469092201376354305 1469092201376354305 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [11, 146] | 1395784944287461383 | 272692606 | JoeEmison | 1 | 0 | 0 | 0 | 0 | 0 | en | ||||||
1469138096788623360 | swyx 33521530 | 2021-12-10T02:53:12+00:00 | @dalmaer how do you feel about the security model and how easy it is to compromise though? https://twitter.com/timdorr/status/1435602941621243907?s=21 | 1435602941621243907 1435602941621243907 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [9, 114] | 1469017087444074499 | 4216361 | dalmaer | 1 | 0 | 2 | 0 | 0 | 0 | en | ||||||
1469313115598860293 | Josh W. Comeau 2308474213 | 2021-12-10T14:28:39+00:00 | I had a bill recently go from $20/month to $660/month because I exceeded a magic threshold. My actual usage increased maybe 20% 😬 https://twitter.com/swyx/status/1469092201376354305 | 1469092201376354305 1469092201376354305 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 129] | 1 | 4 | 71 | 1 | 1 | 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]);