tweets
4 rows where "created_at" is on date 2021-09-15, favorite_count = 3 and is_quote_status = 0
This data as json, CSV (advanced)
Suggested facets: source, created_at (date)
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1437937888075911171 | swyx 33521530 | 2021-09-15T00:34:42+00:00 | @QuinnyPig @forrestbrazeal the other day i was reading about $RESPECTED_TECH_EXEC’s decision to leave Microsoft for Reddit as “true entrepreneurship” and i was like ok buddy sure took a real risk there | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [27, 201] | 1437936879375032320 | 97114171 | QuinnyPig | 0 | 0 | 3 | 0 | 0 | en | ||||||||
1437938702530093056 | swyx 33521530 | 2021-09-15T00:37:56+00:00 | @aeduhm @MrSimonBennett uh yeah be very careful on this one.. looks a little too close to home for AWS’ liking but IANAL | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [24, 120] | 1437886161553444867 | 9840502 | aeduhm | 0 | 0 | 3 | 0 | 0 | en | ||||||||
1438156401071640577 | swyx 33521530 | 2021-09-15T15:03:00+00:00 | @jasonlaster11 @jazzdan @loganfsmyth @JonBell @sophaskins @theryanjduffy @notjaril @rsms @mschoening @amasad @CompuIves @auchenberg @beyang @mojombo congrats on an amazing launch Jason!! Still Day 1 😎 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [149, 201] | 1438150334447161347 | 312750384 | jasonlaster11 | 0 | 0 | 3 | 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 |
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]);