tweets
6 rows where "created_at" is on date 2021-12-21 and favorite_count = 1
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1473188422873325568 | swyx 33521530 | 2021-12-21T07:07:45+00:00 | @NirantK @AirbyteHQ @HevoData bring it up, its a good question | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [30, 62] | 1473186344826331136 | 1028185370 | NirantK | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1473336454801952768 | swyx 33521530 | 2021-12-21T16:55:58+00:00 | @CSSWeekly thanks!! | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [11, 19] | 1473318855380541441 | 522552762 | CSSWeekly | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1473343859279396864 | swyx 33521530 | 2021-12-21T17:25:24+00:00 | @supabase @zernonia fyi getting this error right now https://twitter.com/swyx/status/1473343859279396864/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [20, 52] | 1473322587472244747 | 1219566488325017602 | supabase | 0 | 0 | 1 | 0 | 0 | 0 | en | |||||||
1473344467646414849 | swyx 33521530 | 2021-12-21T17:27:49+00:00 | @zernonia @supabase @PostgreSQL nice job!! wondering if you checked out Supabase Workflows for your usecase, instead of using a cronjob? https://supabase.com/blog/2021/04/02/supabase-workflows | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [32, 160] | 1470947865174310919 | 4798109946 | zernonia | 0 | 0 | 1 | 0 | 0 | 0 | en | |||||||
1473395523923374082 | swyx 33521530 | 2021-12-21T20:50:41+00:00 | @jsjoeio haha. none of the people involved in that chain work in the same jobs anymore lol | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [9, 90] | 1473363310493929473 | 1567529924 | jsjoeio | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1473395963696140288 | swyx 33521530 | 2021-12-21T20:52:26+00:00 | @dvassallo @circle they released group chat, which is good but needs to be for "rooms" than individuals. then the hard part is overcoming network effect of Discord. even then, may be strategically the wrong move if the bet is just to be extremely good at async community. | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [19, 272] | 1473355746385412096 | 24179991 | dvassallo | 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]);