tweets
4 rows where favorite_count = 147 sorted by lang
This data as json, CSV (advanced)
Suggested facets: user, favorited, retweeted
created_at (date) 4 ✖
- 2021-09-07 1
- 2021-11-17 1
- 2021-11-29 1
- 2021-12-10 1
source 2 ✖
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1435258964242059268 | Ives van Hoorne 153524496 | 2021-09-07T15:09:37+00:00 | It's still pretty crazy that for a normal devenv you have the linter, typechecker, editor and bundler all generating the same ASTs for the same code. That's a LOT of double work, a very good point from @swyx in his talk. I can't wait for tools like Rome to consolidate this. https://twitter.com/CompuIves/status/1435258964242059268/photo/1 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 275] | 0 | 8 | 147 | 0 | 1 | 0 | en | ||||||||||
1460974396382736391 | Den Delimarsky 47547933 | 2021-11-17T14:13:34+00:00 | Today we're taking the first step in making integrating web services in your web applications easier - API Authentication on @Netlify ✨ No more writing auth code from scratch for every API you use. 👉 How it works: https://ntl.fyi/api-auth https://twitter.com/DennisCode/status/1460974396382736391/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 240] | 0 | 16 | 147 | 1 | 1 | 0 | en | ||||||||||
1465445082308349959 | swyx 33521530 | 2021-11-29T22:18:28+00:00 | @kapehe_ok Finance was zero sum. Tech is positive sum. World of difference even at a psychological level. | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [11, 105] | 1465355637487910922 | 913527939177652224 | kapehe_ok | 0 | 2 | 147 | 0 | 0 | en | ||||||||
1469212999713845249 | swyx 33521530 | 2021-12-10T07:50:50+00:00 | Imma let you finish but @simonswiss’ new Tailwind 3.0 walkthru is one of the best CSS tutorial + major version launches of all time. OF ALL TIME!! https://youtu.be/mSC6GwizOag If you only have 3 minutes skip ahead to the 20:50 mark and check out the arbitrary properties feature 🤯 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 277] | 0 | 23 | 147 | 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]);