tweets
10 rows where "created_at" is on date 2021-12-14 and favorited = 1 sorted by lang
This data as json, CSV (advanced)
Suggested facets: user, source, retweet_count, favorite_count, retweeted
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1470613731071696896 | Dan 70345946 | 2021-12-14T04:36:50+00:00 | a hundred things i learned working on the react team @threadapalooza | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 68] | 0 | 852 | 3516 | 1 | 1 | en | |||||||||||
1470782577615245327 | swyx 33521530 | 2021-12-14T15:47:46+00:00 | RT @dan_abramov: a hundred things i learned working on the react team @threadapalooza | 1470613731071696896 1470613731071696896 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 85] | 0 | 852 | 0 | 1 | 1 | en | ||||||||||
1470786647788765201 | swyx 33521530 | 2021-12-14T16:03:57+00:00 | The Great Resignation to @Vercel pipeline | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 41] | 0 | 14 | 447 | 1 | 0 | en | |||||||||||
1470787094750449665 | swyx 33521530 | 2021-12-14T16:05:43+00:00 | At this point they might as well rename Vercel’s slack to VC39 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 62] | 1470786647788765201 | 33521530 | swyx | 0 | 2 | 128 | 1 | 0 | en | ||||||||
1470788640846462979 | swyx 33521530 | 2021-12-14T16:11:52+00:00 | Imagine accidentally holding a JSConf in your daily standup | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 59] | 1470787094750449665 | 33521530 | swyx | 0 | 28 | 362 | 1 | 0 | en | ||||||||
1470789190417719303 | swyx 33521530 | 2021-12-14T16:14:03+00:00 | The same consolidation play Microsoft made for developer tools, @Vercel is now making for developers | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 100] | 1470788640846462979 | 33521530 | swyx | 0 | 4 | 87 | 1 | 0 | en | ||||||||
1470791843222753280 | swyx 33521530 | 2021-12-14T16:24:36+00:00 | Everybody making @vercel comparisons to avengers is thinking too small Vercel Class of 2021 looks more like https://twitter.com/swyx/status/1470791843222753280/photo/1 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 108] | 1470789190417719303 | 33521530 | swyx | 0 | 11 | 158 | 1 | 0 | 0 | en | |||||||
1470795050225307655 | swyx 33521530 | 2021-12-14T16:37:20+00:00 | Prediction: @vercel to acquire @codesandbox | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 43] | 1470791843222753280 | 33521530 | swyx | 0 | 0 | 149 | 1 | 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 | |||||||||
1470900644055711747 | swyx 33521530 | 2021-12-14T23:36:56+00:00 | RT @beyang: The amazing thing about @swyx is he got into programming not too long ago after making a big career pivot from finance. It's aw… | 1470874194283884545 1470874194283884545 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 140] | 1 | 1 | 0 | 1 | 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]);