tweets
6 rows where favorite_count = 42 and in_reply_to_user_id = 33521530 sorted by lang
This data as json, CSV (advanced)
Suggested facets: is_quote_status, retweet_count
created_at (date) 6 ✖
- 2021-08-04 1
- 2021-09-23 1
- 2021-09-29 1
- 2021-11-06 1
- 2021-11-11 1
- 2021-12-02 1
source 3 ✖
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1422811409683914752 | swyx 33521530 | 2021-08-04T06:47:29+00:00 | an AMAZING answer to this from someone in our @Coding_Career Circle - @jeanqasaur's epic breakdown of why developers don't buy "luxury goods": https://www.akitasoftware.com/blog-posts/why-arent-there-more-programming-languages-startups This is REQUIRED READING for anyone working in dev tools. Hot damn. https://twitter.com/swyx/status/1422811409683914752/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 235] | 1418696471113658371 | 33521530 | swyx | 0 | 4 | 42 | 0 | 0 | 0 | en | |||||||
1441154688418783233 | swyx 33521530 | 2021-09-23T21:37:07+00:00 | If you enjoyed this thread, I'll be teaching a 4 week class with @chapter_HQ (90 min reading each week) all about career growth and Learning in Public, starting Sep 27. Open to all. Sign up at link below https://getchapter.app/@swyx/learn | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 232] | 1369347682465091587 | 33521530 | swyx | 0 | 3 | 42 | 0 | 0 | 0 | en | |||||||
1443024483170729989 | swyx 33521530 | 2021-09-29T01:27:01+00:00 | Just saw a demo of @Serverless Cloud from @jeremy_daly on @mavi888uy's channel: - API routing + serverless - @DynamoDB storage + querying (incl/ GSIs) - scheduled functions - data streams no YAML, no CDK, no IaC.... JUST BUSINESS LOGIC. https://www.youtube.com/watch?v=1TKedWps7nU https://twitter.com/swyx/status/1443024483170729989/video/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 263] | 1435471481266388993 | 33521530 | swyx | 0 | 9 | 42 | 0 | 0 | 0 | en | |||||||
1456866520395509765 | swyx 33521530 | 2021-11-06T06:10:20+00:00 | Apparently the line is 10 years and 1.5 months old so it was impossible to believe in it earlier unless you literally made the language haha https://twitter.com/BrendanEich/status/1456758350419480580 | 1456758350419480580 1456758350419480580 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 140] | 1456706638010667012 | 33521530 | swyx | 1 | 4 | 42 | 0 | 0 | 0 | en | ||||||
1458684981954244608 | swyx 33521530 | 2021-11-11T06:36:15+00:00 | Devtools pride is seeing users casually taking our API designs, docs, and error messages for granted having no idea how much *worse* they used to be | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 148] | 1458682064908161027 | 33521530 | swyx | 0 | 2 | 42 | 0 | 0 | en | ||||||||
1466447829149237249 | swyx 33521530 | 2021-12-02T16:43:02+00:00 | 🏆 Best Tech Podcast Finds of 2021 - @CoRecursive by @adamgordonbell - @Sourcegraph by @beyang - Stevey's Tech Talk by @Steve_Yegge - @Podrocketpod by @LogRocket - @DevToolsFM by @Zephraph @hipstersmoothie https://twitter.com/swyx/status/1466447829149237249/photo/1 | Typefully 295366d0fb34352a1961af2413827f072adefdb9 | 0 | [0, 207] | 1466447823801491458 | 33521530 | swyx | 0 | 7 | 42 | 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]);