tweets
7 rows where "created_at" is on date 2021-09-11 and is_quote_status = 1 sorted by lang
This data as json, CSV (advanced)
Suggested facets: quoted_status, in_reply_to_screen_name, lang
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1436594934002458626 | swyx 33521530 | 2021-09-11T07:38:17+00:00 | I’d really love to hear behind the scenes on GitHub’s decision to launch this shortcut. The obvious downside: launching an expensive action on a single keypress may negatively surprise users. The upside: the barrier to using Codespaces can’t be lower. I use it once a day now. https://twitter.com/github/status/1425505817827151872 | 1425505817827151872 1425505817827151872 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 278] | 1 | 1 | 80 | 0 | 0 | 0 | en | |||||||||
1436603173133770752 | swyx 33521530 | 2021-09-11T08:11:01+00:00 | @simonw swap URLs to swap UIs/apps! i’ve enjoyed documenting some of these in the past, mostly userland: https://twitter.com/swyx/status/1360316059987808256?s=21 | 1360316059987808256 1360316059987808256 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [8, 129] | 1436597379101118466 | 12497 | simonw | 1 | 0 | 6 | 0 | 0 | 0 | en | ||||||
1436709370457436162 | swyx 33521530 | 2021-09-11T15:13:01+00:00 | @slightlylate i was wondering how closely or casually this statement was made (usually its just the HIPPO) and if i can send them my brochure saying otherwise https://twitter.com/swyx/status/1317635707838496768?s=21 | 1317635707838496768 1317635707838496768 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [14, 182] | 1436708762115473411 | 229237555 | slightlylate | 1 | 0 | 0 | 0 | 0 | 0 | en | ||||||
1436716037202980868 | swyx 33521530 | 2021-09-11T15:39:30+00:00 | @simonw i genuinely think this one assumption made many remaining decisions for them: https://twitter.com/slightlylate/status/1436708762115473411?s=20 I hear unexamined assumptions like these a lot and people don't realize these are far weightier decisions than they seem at first glance. Rhyme shortcircuits reason. | 1436708762115473411 1436708762115473411 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [8, 276] | 1436710644045152262 | 12497 | simonw | 1 | 0 | 4 | 0 | 0 | 0 | en | ||||||
1436720513049669632 | swyx 33521530 | 2021-09-11T15:57:17+00:00 | I'm no perf expert or perf shamer (let he who is without sin...) But here's what I do believe: 1. local Lighthouse runs are not credible. Use webpagetest or http://web.dev/measure. 2. you do NOT have to use the same tech for app and site! :) https://twitter.com/swyx/status/1317635707838496768?lang=en | 1317635707838496768 1317635707838496768 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 269] | 1436689311315890177 | 33521530 | swyx | 1 | 10 | 159 | 0 | 0 | 0 | en | ||||||
1436736035698921475 | swyx 33521530 | 2021-09-11T16:58:58+00:00 | @spitleaf ayy great minds https://twitter.com/swyx/status/1436733804174008321?s=21 that said you have to admit React is a convenient honeypot/scapegoat for sloppy webdevs who really should know better. this is what i take alex russell to mean when he says the problem is cultural. | 1436733804174008321 1436733804174008321 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [10, 248] | 1436734568313335808 | 357427736 | spitleaf | 1 | 0 | 1 | 0 | 0 | 0 | en | ||||||
1436660689892872192 | swyx 33521530 | 2021-09-11T11:59:34+00:00 | @DavidKPiano @Zephraph 👀 https://twitter.com/davidkpiano/status/1200507988529860609?s=21 | 1200507988529860609 1200507988529860609 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [23, 48] | 1436651833448075265 | 992126114 | DavidKPiano | 1 | 0 | 2 | 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]);