tweets
5 rows where "created_at" is on date 2021-12-07 and is_quote_status = 1
This data as json, CSV (advanced)
Suggested facets: quoted_status, retweet_count, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1468016622061326337 | swyx 33521530 | 2021-12-07T00:36:51+00:00 | @erikaybar_ @taniarascia @contentful @builderio @SplitSoftware @temporalio @tangramdotdev @supabase @Firebase i discussed @buckymoore's SDKs over APIs thesis here at the 27ish minute mark! https://twitter.com/swyx/status/1467978846150430724 | 1467978846150430724 1467978846150430724 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [110, 212] | 1453020854757953543 | 33521530 | swyx | 1 | 0 | 0 | 0 | 0 | 0 | en | ||||||
1468016734044966914 | swyx 33521530 | 2021-12-07T00:37:18+00:00 | @gr2m i discussed the SDKs over APIs thesis here at the 27ish minute mark! https://twitter.com/swyx/status/1467978846150430724 | 1467978846150430724 1467978846150430724 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [6, 98] | 1452803275930017794 | 11754732 | gr2m | 1 | 0 | 1 | 0 | 0 | 0 | en | ||||||
1468156417248923650 | swyx 33521530 | 2021-12-07T09:52:21+00:00 | Excellent answer from @yongfook on why too many people “building an audience first” w/o making anything of substance on @IndieHackers. Like most writers, I also don’t have a problem with the audience first approach. But it’s easy to overdo the “in public” and forget the “build”. https://twitter.com/jakobgreenfeld/status/1468143869426606081 https://twitter.com/swyx/status/1468156417248923650/photo/1 | 1468143869426606081 1468143869426606081 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 304] | 1 | 6 | 35 | 0 | 0 | 0 | en | |||||||||
1468158323992059904 | swyx 33521530 | 2021-12-07T09:59:56+00:00 | @jakobgreenfeld that's some pretty damn quick number crunching skills there! i have another fun metric for you to try: Number of PH #1 of the day winners that now 404. it was roughly 10-15% when i checked 2017's winners in 2018 https://twitter.com/swyx/status/970106789189636098?s=20 | 970106789189636098 970106789189636098 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [16, 253] | 1468157620741722121 | 1285142519525892098 | jakobgreenfeld | 1 | 0 | 4 | 0 | 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 |
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]);