home / twitter

tweets

This is data scraped from swyx's timeline! See blog post

7 rows where favorite_count = 35, retweeted = 0 and user = 33521530 sorted by lang

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: retweet_count

created_at (date) 7 ✖

  • 2019-04-03 1
  • 2021-08-06 1
  • 2021-09-22 1
  • 2021-09-25 1
  • 2021-10-19 1
  • 2021-11-24 1
  • 2021-12-07 1

source 2 ✖

  • Twitter for iPhone 4
  • Twitter Web App 3

user 1 ✖

  • swyx · 7 ✖

retweeted 1 ✖

  • - · 7 ✖

favorite_count 1 ✖

  • 35 · 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
1113478881086988288 swyx 33521530 2019-04-03T16:30:27+00:00 @peggyrayzis @ReactAmsterdam - fast - good defaults - incrementally adoptable - timely dev-mode warnings - no excess logs or warnings - considerate of other existing tooling - small API/config surface area - learn once and reuse forever - remembers and adapts to *you* (more: https://gist.github.com/sw-yx/6f97b9d7f3efbfad4c8e5b8a14b5bd27)       Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 0 [29, 300] 1113475439601836039 711729626482081792 peggyrayzis       0 3 35 0 0 0 en  
1423763549315158017 swyx 33521530 2021-08-06T21:50:57+00:00 Every now and then I get upset about the slow adoption of self driving cars so I decided to look up numbers. Deaths per BILLION passenger-miles per year: Airlines: 0.02 Human Driving Cars: 15 Human Driving Motorcycles: 400 Total self driving miles last year: ~3 million 🙃       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 273]             0 2 35 0 0   en  
1440557824203919367 swyx 33521530 2021-09-22T06:05:24+00:00 behold my elevator pitch https://twitter.com/swyx/status/1426672482975551490   1426672482975551490 1426672482975551490   Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 0 [0, 26] 1440513594207059983 33521530 swyx       1 0 35 0 0 0 en  
1441863319317516290 swyx 33521530 2021-09-25T20:32:58+00:00 Specific things you can do that turn experts into mentors and friends: - Explain X in your own words - “Yes, and” their demos - Summarize their talks - Help repro issues - Answer FAQs Pick Up What They Put Down and you’ll be expert soon enough. How do you think they started?! https://twitter.com/techgirl1908/status/1441794957543608324   1441794957543608324 1441794957543608324   Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 0 [0, 279]             1 2 35 0 0 0 en  
1450502854133772290 swyx 33521530 2021-10-19T16:43:24+00:00 @chriscoyier imo zero-runtime CSS-in-JS like Linaria should be in a different category, and should be default. re: Emotion - enjoyed this deep dive into the perf work vs S-C from the @adamwathan podcast https://fullstackradio.com/117 Tailwind eliminated 95% of the need for CSSinJS for me       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [13, 283] 1450498640980627460 793830 chriscoyier       0 0 35 0 0 0 en  
1463637716113899523 swyx 33521530 2021-11-24T22:36:39+00:00 ⚛️ I'm going live now streaming my first time @Remix_run experience! DM if you want to join and chat live - will probably go 1-2 hours! https://www.youtube.com/watch?v=HZV1pT-qMqg       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 161]             0 0 35 0 0 0 en  
1468156417248923650 swyx 33521530 2021-12-07T09:52:21+00:00 Excellent answer from @yongfook on why too many people “building an audience first” w/o making anything of substance on @IndieHackers. Like most writers, I also don’t have a problem with the audience first approach. But it’s easy to overdo the “in public” and forget the “build”. https://twitter.com/jakobgreenfeld/status/1468143869426606081 https://twitter.com/swyx/status/1468156417248923650/photo/1   1468143869426606081 1468143869426606081   Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 0 [0, 304]             1 6 35 0 0 0 en  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 19032.784ms