tweets
6 rows where favorite_count = 15 and retweet_count = 2 sorted by lang
This data as json, CSV (advanced)
Suggested facets: source, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1425512518437330944 | swyx 33521530 | 2021-08-11T17:40:43+00:00 | Proud to be joining a conference that is taking measured Covid precautions. If you're in the East Coast, come see my first ever talk on @temporalio and the *amazing* list of other speakers at @renderATL! https://www.renderatl.com/speakers https://twitter.com/ThugDebugger/status/1425477419524308994 | 1425477419524308994 1425477419524308994 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 228] | 1 | 2 | 15 | 0 | 0 | 0 | en | |||||||||
1432569213688823810 | swyx 33521530 | 2021-08-31T05:01:31+00:00 | Today's clip: @MarkLovesTech's journey to MongoDB, on the excellent StackOverflow podcast https://share.transistor.fm/s/11c1a958 Mark stands out for 2 reasons: He's a relational databases guy that has embraced NoSQL, and he's the rare CTO that's still in LOVE with technology (per his handle)! | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 280] | 0 | 2 | 15 | 0 | 0 | 0 | en | ||||||||||
1438992207344635904 | procrastinator 14558882 | 2021-09-17T22:24:12+00:00 | As lists and threads are all the rage here, this by @swyx is one of the best I read during the year...or ever 👏 Where do these people learn to write this stuff? Is there a cohort-based course for "Lessons learned in XYZ years of life"? 😕 https://www.swyx.io/35-principles/ | Typefully 295366d0fb34352a1961af2413827f072adefdb9 | 0 | [0, 263] | 0 | 2 | 15 | 0 | 1 | 0 | en | ||||||||||
1440196339405508609 | swyx 33521530 | 2021-09-21T06:08:59+00:00 | 🆕 Today's clip is on Podcast Economics: The Math to $14,000 a month: 10,000 fans * 4 ads a week * 25 CPM each ad = $1,000 a week, $4k a month 50,000 fans => $20k a month Sales cut - 15-30% https://share.transistor.fm/s/6d8837a6 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 221] | 0 | 2 | 15 | 0 | 0 | 0 | en | ||||||||||
1450702539347750917 | Nicole Sullivan 15629200 | 2021-10-20T05:56:52+00:00 | @sambreed @swyx @gregwhitworth We’re building selectmenu, anchor, & popup. And prototyping tabs, toggle, accordion, nav, & treeview. And researching stuff like dialog, carousel & image zoom. Button wasn’t on my radar, but it could be? Caveat: super early days, maybe none of this ships, but maybe it does? | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [31, 318] | 1450696392029061125 | 14217249 | sambreed | 0 | 2 | 15 | 0 | 0 | en | ||||||||
1462975159548088332 | swyx 33521530 | 2021-11-23T02:43:53+00:00 | P.S. if you want to see the latest in JS reinvention come join the @temporalio meetup tomorrow where we are launching our new TypeScript SDK in beta! https://twitter.com/temporalio/status/1462970544379162627 | 1462970544379162627 1462970544379162627 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 149] | 1462923803189645315 | 33521530 | swyx | 1 | 2 | 15 | 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]);