tweets
5 rows where "created_at" is on date 2021-07-30 and is_quote_status = 1 sorted by lang
This data as json, CSV (advanced)
Suggested facets: user, source, retweet_count
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1421140683021164558 | swyx 33521530 | 2021-07-30T16:08:37+00:00 | I think this was the second last React talk I ever gave. Still pretty happy with it, check it out if you’re interested in how “linguistics” and developer experience cross paths (and explain the trends in our evolving tooling) https://twitter.com/iBakasura/status/1421095739195756549 | 1421095739195756549 1421095739195756549 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 226] | 1 | 0 | 2 | 0 | 0 | 0 | en | |||||||||
1421141801407291398 | 🔎Julia Evans🔍 6603532 | 2021-07-30T16:13:03+00:00 | I'm thinking about this debugging advice today -- I explained *why* to make a minimal reproduction but not *how* to make one https://twitter.com/b0rk/status/1405900088195661831 if you learned how to minimally reproduce a bug recently -- what helped you learn? | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 232] | 1 | 64 | 295 | 0 | 0 | 0 | en | ||||||||||
1421180194384084995 | swyx 33521530 | 2021-07-30T18:45:37+00:00 | Non obvious thing I picked up from @reactjs — keep a set of fixtures to help you repro bugs! Instead of starting from a blank file or deleting from a real project, fixtures are the middle way — a starting point that implements all the APIs or pushes them to known limits. https://twitter.com/b0rk/status/1421141801407291398 | 1421141801407291398 1421141801407291398 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 272] | 1 | 0 | 42 | 0 | 0 | 0 | en | |||||||||
1421190477571710978 | swyx 33521530 | 2021-07-30T19:26:28+00:00 | this is incredible to watch. I thought that Flippa/Empire Flippers had cornered this sleepy market, but Andrew is shaking it up with his infectious energy and focus. Building a credible “Zestimate for SaaS” is going to set this thing on 🔥 https://twitter.com/agazdecki/status/1421069160973434880 | 1421069160973434880 1421069160973434880 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 239] | 1 | 2 | 31 | 0 | 0 | 0 | en | |||||||||
1421221582031056897 | swyx 33521530 | 2021-07-30T21:30:04+00:00 | @reactjs I don't mean "working with React", I mean "contributing TO React" - you can see how much React relies on fixtures to help ourselves manually reproduce all the things we can't in tests (and there are many!) See links below: https://twitter.com/swyx/status/1421220603197939713?s=20 | 1421220603197939713 1421220603197939713 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [9, 257] | 1421180194384084995 | 33521530 | swyx | 1 | 1 | 6 | 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]);