tweets
6 rows where "created_at" is on date 2021-10-05 and is_quote_status = 1 sorted by lang
This data as json, CSV (advanced)
Suggested facets: favorite_count, retweeted
place 1 ✖
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1445273229287776258 | swyx 33521530 | 2021-10-05T06:22:44+00:00 | @ShopTalkShow @davatron5000 @chriscoyier re: that schedule/queue task + fetch data + do arbitrary stuff with it, while persisting everything to PostgreSQL + horizontally scalable, without arbitrary 15 min limit or memory limit This is exactly what we do @temporalio :) https://twitter.com/swyx/status/1417165270641045505 | 1417165270641045505 1417165270641045505 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [14, 294] | 1445135763880960002 | 457747138 | ShopTalkShow | 1 | 0 | 2 | 0 | 0 | 0 | en | ||||||
1445299603146887173 | swyx 33521530 | 2021-10-05T08:07:32+00:00 | @lesley_pizza @laxmariappan @aaditsh @mijustin @monicalent Thanks! Perhaps more to Lax's needs: https://twitter.com/swyx/status/1249793388037025797?lang=en | 1249793388037025797 1249793388037025797 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [59, 119] | 1445297866461704198 | 17828291 | lesley_pizza | 1 | 0 | 1 | 0 | 0 | 0 | en | ||||||
1445486601707003910 | swyx 33521530 | 2021-10-05T20:30:36+00:00 | @SeaCatBiz twitter topics algo is wack https://twitter.com/swyx/status/1372013877731368961?s=21 | 1372013877731368961 1372013877731368961 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [11, 62] | 1445235642628075525 | 757692601956831232 | SeaCatWiz | 1 | 0 | 21 | 0 | 0 | 0 | en | ||||||
1445492332522971146 | swyx 33521530 | 2021-10-05T20:53:22+00:00 | @davatron5000 just did a 30 min talk on it if you want a js-centric lowdown https://twitter.com/swyx/status/1445466345194209290 | 1445466345194209290 1445466345194209290 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [14, 75] | 1445430527016652800 | 33521530 | swyx | 1 | 0 | 1 | 0 | 0 | 0 | en | ||||||
1445533835945414662 | rita ❄️ 232076816 | 2021-10-05T23:38:17+00:00 | A+ write up from @swyx. the great thing about “from the outside in” metaphor is that it works figuratively and literally — cloudflare, by sitting in front of the cloud allows customers to gradually shift their workloads from the centralized cloud to the edge https://twitter.com/swyx/status/1445044267508850695 | 1445044267508850695 1445044267508850695 | San Francisco 5a110d312052166f | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 259] | 1 | 3 | 31 | 0 | 1 | 0 | en | ||||||||
1445537727131176967 | swyx 33521530 | 2021-10-05T23:53:45+00:00 | RT @ritakozlov_: A+ write up from @swyx. the great thing about “from the outside in” metaphor is that it works figuratively and literally —… | 1445533835945414662 1445533835945414662 | Twitter for iPad 574fe4fa937eeb131136f7e3678f32d4ff3078d5 | 0 | [0, 140] | 1 | 3 | 0 | 0 | 1 | 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]);