tweets
4 rows where "created_at" is on date 2021-09-15 and in_reply_to_screen_name = "swyx" sorted by lang
This data as json, CSV (advanced)
Suggested facets: source, is_quote_status, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1438102616156917767 | swyx 33521530 | 2021-09-15T11:29:17+00:00 | Sept 2021 valuations: Figma @ $10b Canva @ $40b Figma catching up some but both companies just absolutely SLAYING. I am in such awe. https://twitter.com/MelanieCanva/status/1437918660455124997 | 1437918660455124997 1437918660455124997 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 135] | 1133486353029697536 | 33521530 | swyx | 1 | 0 | 9 | 0 | 0 | 0 | en | ||||||
1438164876975751178 | swyx 33521530 | 2021-09-15T15:36:41+00:00 | It's a live demo too, not some aspirational animation. Go here and hit play: https://app.replay.io/recording/aae188fb-57d2-46af-a23a-0adba3ed0687 Switch to devtools, *RETROACTIVELY ADD LOGGING* and drill down to the exact state of any variable at any point in time. These folks killed console.log debugging. https://twitter.com/swyx/status/1438164876975751178/video/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 266] | 1438161819927859210 | 33521530 | swyx | 0 | 3 | 23 | 0 | 0 | 0 | en | |||||||
1438217963820109824 | swyx 33521530 | 2021-09-15T19:07:38+00:00 | lmao 3 years on, a lot of this initial doc lives on in the gatsby v3 docs!!! https://www.gatsbyjs.com/docs/conceptual/gatsby-lifecycle-apis/ i hope it helped someone out there as much as it did me. https://twitter.com/swyx/status/1438217963820109824/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 159] | 1010699734733000704 | 33521530 | swyx | 0 | 0 | 3 | 0 | 0 | 0 | en | |||||||
1438226292566937602 | swyx 33521530 | 2021-09-15T19:40:43+00:00 | In the two years since this first post, I've written a couple other pieces for those curious in following the thread: Why I Enjoy Svelte: https://twitter.com/swyx/status/1221586490674696193?lang=en Svelte for Sites, React for Apps: https://twitter.com/swyx/status/1317635707838496768?lang=en | 1317635707838496768 1317635707838496768 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 221] | 1172926476045492230 | 33521530 | swyx | 1 | 0 | 10 | 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]);