tweets
7 rows where "created_at" is on date 2021-08-18, favorited = 0, is_quote_status = 1 and retweeted = 0 sorted by lang
This data as json, CSV (advanced)
Suggested facets: source, in_reply_to_user_id, in_reply_to_screen_name, lang
quoted_status 7 ✖
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1427866714482429961 | swyx 33521530 | 2021-08-18T05:35:27+00:00 | Snorkel is now a unicorn! https://twitter.com/SnorkelAI/status/1424724444048658436 | 1424724444048658436 1424724444048658436 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 25] | 1417746151411879938 | 33521530 | swyx | 1 | 0 | 2 | 0 | 0 | 0 | en | ||||||
1428094708899745793 | swyx 33521530 | 2021-08-18T20:41:25+00:00 | 2 years on... nice explanation and discussion of JWTs here, and I pretty much am exactly where Emelia is at https://twitter.com/ThisIsMissEm/status/1427988073292476418?s=20 | 1427988073292476418 1427988073292476418 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 132] | 1133780714988736512 | 33521530 | swyx | 1 | 1 | 10 | 0 | 0 | 0 | en | ||||||
1428100952200859648 | swyx 33521530 | 2021-08-18T21:06:14+00:00 | @xjamundx how about "we now use both React and jQuery screw it" https://twitter.com/swyx/status/1428100847712423938?s=20 | 1428100847712423938 1428100847712423938 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [10, 88] | 1428098541671518208 | 119903601 | xjamundx | 1 | 0 | 1 | 0 | 0 | 0 | en | ||||||
1428102298241159172 | swyx 33521530 | 2021-08-18T21:11:35+00:00 | Very surprised to see Netflix apparently now uses BOTH @Reactjs and @jQuery on Netflix dot com, 4 years after being celebrated for ripping out React. What in the world is going on in there?? 👀 https://twitter.com/NetflixUIE/status/923374215041912833 https://twitter.com/swyx/status/1428102298241159172/photo/1 | 923374215041912833 923374215041912833 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 217] | 1 | 33 | 299 | 0 | 0 | 0 | en | |||||||||
1428113221236363267 | swyx 33521530 | 2021-08-18T21:54:59+00:00 | @lillichoung gotta look at who is doing the recommending. JWT is very convenient for serverless and vendors. meanwhile everyone running rails and django set up sessions, send httponly cookies and carry on with their day. the only vendor who does it right is @begin https://twitter.com/swyx/status/1254871936514969600?s=21 | 1254871936514969600 1254871936514969600 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [13, 289] | 1428111899502288902 | 2336043613 | lillichoung | 1 | 0 | 3 | 0 | 0 | 0 | en | ||||||
1428130743381762055 | swyx 33521530 | 2021-08-18T23:04:37+00:00 | Just got reminded its the 3 year anniversary of my first conf talk: https://www.youtube.com/watch?v=nyFHR0dDZo0 I remember being so nervous, just 1 year out of bootcamp talking React in front of my heroes @ReactRally. Never regretted it. If you can, speak at a conference. Will change your life. https://twitter.com/swyx/status/1030130810588819456 | 1030130810588819456 1030130810588819456 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 277] | 1 | 1 | 71 | 0 | 0 | 0 | en | |||||||||
1428103782810873859 | swyx 33521530 | 2021-08-18T21:17:29+00:00 | @mozzius @reactjs @jquery https://twitter.com/swyx/status/1093200303254466561 | 1093200303254466561 1093200303254466561 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [26, 49] | 1428103288537354241 | 1266850963429752832 | mozzius | 1 | 0 | 4 | 0 | 0 | 0 | und |
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]);