tweets
7 rows where favorite_count = 82
This data as json, CSV (advanced)
Suggested facets: user, is_quote_status, retweeted, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1134311153960534016 | Lee Byron 14904098 | 2019-05-31T04:10:28+00:00 | Super curious to see how this works out. Historically I’ve been very skeptical of schema federation and the costs it incurs on an org, so I’m hoping to learn from the community on what works and doesn’t work from this new attempt. https://twitter.com/apollographql/status/1134086759489384449 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 230] | 1 | 11 | 82 | 0 | 0 | 0 | en | ||||||||||
1210295490853490688 | swyx 33521530 | 2019-12-26T20:25:05+00:00 | ✍️In Defense of Hammers 🔨 Why "Right Tool for Most Jobs" beats "Right Tool for the Job" 🔗https://www.swyx.io/writing/hammers Long overdue tweet-turned-blogpost 😅 shoutouts due to @laurieontech, @tlakomy, @wking__, @rmngrc and everyone who commented & helped me think through this! ❤️ https://twitter.com/swyx/status/1171549189064613888 https://twitter.com/swyx/status/1210295490853490688/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 304] | 1 | 22 | 82 | 0 | 0 | 0 | en | ||||||||||
1430388488923324417 | swyx 33521530 | 2021-08-25T04:36:05+00:00 | @mikeal i worked at AWS and supabase is outshipping teams 10x their size and funding. i dont know whats in the water there but @kiwicopple and team have got it. https://twitter.com/swyx/status/1424586713490358275?s=21 | 1424586713490358275 1424586713490358275 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [8, 185] | 1430193529565839368 | 668423 | mikeal | 1 | 6 | 82 | 0 | 0 | 0 | en | ||||||
1440684812885315597 | Kent C. Dodds 💿🔴 389681470 | 2021-09-22T14:30:00+00:00 | I spent most of yesterday on my @RideOnewheel and listening to @swyx's audio reading of The @Coding_Career Handbook (https://www.learninpublic.org/). It's phenomenal. On my short-list of recommendations. Practical, actionable, and (based on my own experience) terrific advise. 👏👏👏 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 273] | 0 | 10 | 82 | 0 | 1 | 0 | en | ||||||||||
1447312313426460672 | swyx 33521530 | 2021-10-10T21:25:19+00:00 | Obsessed by how turning sync into async processes improves UX. Imagine an API call w/ 5 requirements fails bc 2 inputs were invalid. Instead of keeping state on client or duplicating validation, the API call starts a session and you “talk” with it to resolve the invalid inputs. https://twitter.com/swyx/status/1445299225974095877 | 1445299225974095877 1445299225974095877 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 279] | 1 | 4 | 82 | 0 | 0 | 0 | en | |||||||||
1460519255573766147 | Budibase 1040931421022560256 | 2021-11-16T08:05:00+00:00 | Budibase is live on @ProductHunt 🥳 We've also released a new promo video which you can watch on our Product Hunt post 🎉 Check us out: https://www.producthunt.com/posts/budibase | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 161] | 0 | 23 | 82 | 0 | 0 | 0 | en | ||||||||||
1468656111225999360 | swyx 33521530 | 2021-12-08T18:57:57+00:00 | Love this: GitHub launches improved Code Search, encroaching on @SourceGraph's territory. @sqs' response: "You wouldn't use Bing if your boss made you..." 1000% they had that analogy lined up ready to go😹 https://twitter.com/swyx/status/1468656111225999360/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 207] | 0 | 7 | 82 | 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]);