tweets
7 rows where favorite_count = 16 and is_quote_status = 1
This data as json, CSV (advanced)
Suggested facets: user, source, display_text_range, retweet_count, favorited, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1438052380227117076 | ☞ Desigan Chinniah ☜ 2461541 | 2021-09-15T08:09:39+00:00 | Q: Engineers — you've always wanted to time travel, right? A: Now you can. When debugging w/ @ReplayIO. Crafted by @jasonlaster11 @sophaskins @jonbell + team Advised by myself @rachelnabors @auchenberg @swyx + more Hunted by @nickabouzeid Grab it ›› https://www.producthunt.com/posts/replay-4 https://twitter.com/jasonlaster11/status/1438035707704995840 | 1438035707704995840 1438035707704995840 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 278] | 1 | 9 | 16 | 0 | 1 | 0 | en | |||||||||
1442610195339776004 | swyx 33521530 | 2021-09-27T22:00:47+00:00 | If the only thing you learned from React is React, look harder: https://twitter.com/swyx/status/1383516418205835264?lang=en | 1383516418205835264 1383516418205835264 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 88] | 1442610193846603777 | 33521530 | swyx | 1 | 0 | 16 | 0 | 0 | 0 | en | ||||||
1448053408393428996 | swyx 33521530 | 2021-10-12T22:30:10+00:00 | ok, ok, 1 more way you can beat Amazon: Support. Offer a shared Slack with SLA. Enterprise contracts are being closed on basic premise that "someone who knows what the heck is going on is on Slack with you, whether we are down or you are". Beats this: https://twitter.com/QuinnyPig/status/1402049900079026184 | 1402049900079026184 1402049900079026184 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 278] | 1448049750901551108 | 33521530 | swyx | 1 | 3 | 16 | 0 | 0 | 0 | en | ||||||
1450403609078898694 | Matt Kane 9910452 | 2021-10-19T10:09:02+00:00 | This is a really interesting discussion on Gatsby and the state of the Jamstack ecosystem and I agree with most of it. Worth a listen even if you don't think you care about Gatsby. https://twitter.com/swyx/status/1449912418071580672 | 1449912418071580672 1449912418071580672 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 180] | 1 | 7 | 16 | 0 | 1 | 0 | en | |||||||||
1451667101412954114 | swyx 33521530 | 2021-10-22T21:49:42+00:00 | Recorded a podcast with @argyleink today where I referenced this talk again! One for the Lindy library. The head/torso/tail framing shapes so much of how I think about DX, and Adam has some really good takes on how the DX/UX debate is missing the point! Highly recommended 👇 https://twitter.com/swyx/status/1264836620831711232 | 1264836620831711232 1264836620831711232 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 276] | 1 | 1 | 16 | 1 | 0 | 0 | en | |||||||||
1468339703237599233 | swyx 33521530 | 2021-12-07T22:00:40+00:00 | Replay seems to have identified the biggest opportunity to improve the state of browser devtools and is just going for it. If you ever had feature requests for any tab in your dev tools, join their discord (https://discord.gg/F5a4kvb6wu) and chat with their engineers! https://twitter.com/jasonlaster11/status/1468330375881510916 | 1468330375881510916 1468330375881510916 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 263] | 1 | 1 | 16 | 0 | 0 | 0 | en | |||||||||
1470874194283884545 | Beyang Liu 16520821 | 2021-12-14T21:51:50+00:00 | The amazing thing about @swyx is he got into programming not too long ago after making a big career pivot from finance. It's awesome the way he has shared his journey and learnings from diving into @sveltejs, @reactjs, and now @temporalio. Thanks for coming on the show! https://twitter.com/swyx/status/1470864435015151618 | 1470864435015151618 1470864435015151618 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 270] | 1 | 1 | 16 | 1 | 1 | 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]);