tweets
8 rows where is_quote_status = 0, retweet_count = 10 and user = 33521530
This data as json, CSV (advanced)
Suggested facets: source, display_text_range, favorite_count, favorited, retweeted, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1421937582099759104 | swyx 33521530 | 2021-08-01T20:55:12+00:00 | @Madisonkanna if your company is doubling every year then your company is majority staffed by people who have been around less than a year. So take care to give context, document mistakes, and be intentional about culture building. | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [14, 231] | 1421875179873923077 | 1087957969915006976 | Madisonkanna | 0 | 10 | 201 | 0 | 0 | en | ||||||||
1422798331437228032 | swyx 33521530 | 2021-08-04T05:55:31+00:00 | I need 48 hours in a day to do everything I want to do wtf | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 58] | 0 | 10 | 192 | 0 | 0 | en | |||||||||||
1426600484773662724 | swyx 33521530 | 2021-08-14T17:43:55+00:00 | RT @rajatetc: If you mugged up the rules of React Hooks like me - watch this. Great explanation of the internals by @swyx https://t.co/ix… | 1426537001868685314 1426537001868685314 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 140] | 0 | 10 | 0 | 0 | 1 | en | ||||||||||
1438785162985328641 | swyx 33521530 | 2021-09-17T08:41:28+00:00 | RT @supabase: We get a lot of #developers asking about row-level security @_dijonmusters explains how #Auth works using RLS in @supabase i… | 1438643952710717440 1438643952710717440 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 140] | 0 | 10 | 0 | 0 | 1 | en | ||||||||||
1440867912089161728 | swyx 33521530 | 2021-09-23T02:37:34+00:00 | RT @kentcdodds: I spent most of yesterday on my @RideOnewheel and listening to @swyx's audio reading of The @Coding_Career Handbook (https:… | 1440684812885315597 1440684812885315597 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 140] | 0 | 10 | 0 | 0 | 1 | en | ||||||||||
1449993680903761926 | swyx 33521530 | 2021-10-18T07:00:07+00:00 | RT @GergelyOrosz: The sensible approach is not to delete one or the other. To maximize your "luck surface area" so opportunities find you,… | 1449977842004074500 1449977842004074500 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 139] | 0 | 10 | 0 | 0 | 1 | en | ||||||||||
1451309430830612495 | swyx 33521530 | 2021-10-21T22:08:26+00:00 | Nice alternative to "What's your greatest weakness?": "What is one skill you would like to work on, that would make you much more effective at work?" | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 150] | 0 | 10 | 138 | 1 | 0 | en | |||||||||||
1461155566311542786 | swyx 33521530 | 2021-11-18T02:13:28+00:00 | Why I obsess over asking the right questions: You can give a bad answer to a good question, but it’s impossible to give a good answer to a bad question. | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 153] | 0 | 10 | 60 | 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]);