tweets
5 rows where "created_at" is on date 2021-11-29 and favorite_count = 1
This data as json, CSV (advanced)
Suggested facets: source
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1465145416035434500 | swyx 33521530 | 2021-11-29T02:27:42+00:00 | @lorendsr will happen someday but that margin accounting can be mangled 8 ways to sunday | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [10, 88] | 1465078282706108421 | 215488966 | lorendsr | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1465222600557170691 | swyx 33521530 | 2021-11-29T07:34:25+00:00 | @jamonholmgren happy birthday Jamon! you are very blessed and have inspired many of us as you share your journey. may the next 10 be as amazing! | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [15, 144] | 1465106815943790593 | 30273948 | jamonholmgren | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1465357529395855362 | swyx 33521530 | 2021-11-29T16:30:34+00:00 | @philippbosch @adamwathan @simonswiss @tailwindcss ah yeah i did 🤦♂️ thought it was one of those things you basically only set once per site. | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [51, 142] | 1465336771064045578 | 12158612 | philippbosch | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1465371380233347074 | swyx 33521530 | 2021-11-29T17:25:36+00:00 | @RozenMD thats hot... did you use @CommandBar or were you already rolling your own? | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [9, 83] | 1465266059091615749 | 276480142 | RozenMD | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1465400623654793217 | swyx 33521530 | 2021-11-29T19:21:49+00:00 | @nellarro @Netlify yayy congrats!!! what team! | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [19, 46] | 1465329827972624385 | 756943066473398276 | nellarro | 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]);