tweets
6 rows where "created_at" is on date 2021-08-11 and favorite_count = 2
This data as json, CSV (advanced)
Suggested facets: source, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1425297614539423747 | swyx 33521530 | 2021-08-11T03:26:46+00:00 | @jsjoeio @Rich_Harris Svelte is the trickle down framework | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [22, 58] | 1425183828063047682 | 1567529924 | jsjoeio | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1425301392323801088 | swyx 33521530 | 2021-08-11T03:41:47+00:00 | @QuinnyPig @dumpkopf @LAURIESMOOZ she asked for “highly-respected” | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [34, 66] | 1425225538092765185 | 97114171 | QuinnyPig | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1425330017928572936 | swyx 33521530 | 2021-08-11T05:35:32+00:00 | @slightlylate greatly appreciate your thoughts, as always. i was too narrowly focused on the technical aspects of RSCs. | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [14, 119] | 1425329048406970375 | 229237555 | slightlylate | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1425512625576693760 | swyx 33521530 | 2021-08-11T17:41:09+00:00 | @Hicksyfern @tryContentBot @WriteWithChorus whoa thanks! lol @WriteWithChorus is pretty genius | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [44, 94] | 1425512068950761478 | 154248263 | Hicksyfern | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1425563254231760897 | swyx 33521530 | 2021-08-11T21:02:20+00:00 | @danielacron haha well played | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [13, 29] | 1425214390400389120 | 3397940961 | danielacron | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1425564100256428032 | swyx 33521530 | 2021-08-11T21:05:41+00:00 | @laueist thank you for the tip! i wouldnt have thought of it. is this the canonical resource https://laravel.com/docs/8.x/scheduling any others you'd recommend? | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [9, 144] | 1425345686745272324 | 1145669760354607104 | laueist | 0 | 0 | 2 | 0 | 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]);