home / twitter

tweets

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

7 rows where display_text_range = "[0, 232]" sorted by lang

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: user, is_quote_status, favorited, retweeted

created_at (date) 6 ✖

  • 2021-11-11 2
  • 2020-08-15 1
  • 2021-07-30 1
  • 2021-09-23 1
  • 2021-11-07 1
  • 2021-11-30 1

source 2 ✖

  • Twitter Web App 6
  • Typefully 1

display_text_range 1 ✖

  • [0, 232] · 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
1294689838872981506 swyx 33521530 2020-08-15T17:38:06+00:00 🆕 Developer Exception Engineering: The Importance of Developer Experience off the Happy Path https://www.swyx.io/writing/developer-exception/ It's time we look beyond the easy questions in developer experience, and start addressing the uncomfortable ones. https://twitter.com/swyx/status/1294689838872981506/photo/1       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 232]             0 12 85 0 0 0 en  
1421141801407291398 🔎Julia Evans🔍 6603532 2021-07-30T16:13:03+00:00 I'm thinking about this debugging advice today -- I explained *why* to make a minimal reproduction but not *how* to make one https://twitter.com/b0rk/status/1405900088195661831 if you learned how to minimally reproduce a bug recently -- what helped you learn?       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 232]             1 64 295 0 0 0 en  
1441154688418783233 swyx 33521530 2021-09-23T21:37:07+00:00 If you enjoyed this thread, I'll be teaching a 4 week class with @chapter_HQ (90 min reading each week) all about career growth and Learning in Public, starting Sep 27. Open to all. Sign up at link below https://getchapter.app/@swyx/learn       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 232] 1369347682465091587 33521530 swyx       0 3 42 0 0 0 en  
1457445123462090759 swyx 33521530 2021-11-07T20:29:30+00:00 Sometimes you learn a concept like "center of gravity" and you think "thats a cute mental model that helps humans simplify things, Nature isn't really like that but it's close enough" then Nature says: No, it really do be like that https://twitter.com/swyx/status/1457445123462090759/video/1       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 232]             0 108 478 0 0 0 en  
1458878468150620181 Tom Preston-Werner 5502392 2021-11-11T19:25:06+00:00 When I was interviewed on Live TV by Fox News after the big GitHub Series A, they got the investor wrong, spelled "repository" wrong, did abominal things to em dashes, mis-capitalized GitHub, and called pull requests "e-notes". QED. https://twitter.com/mojombo/status/1458878468150620181/photo/1       Typefully 295366d0fb34352a1961af2413827f072adefdb9 0 [0, 232] 1458878458319171592 5502392 mojombo       0 6 131 1 1 0 en  
1458878573532651527 Lee Robinson 81712767 2021-11-11T19:25:31+00:00 New post: Rust Is The Future of JavaScript Infrastructure 🦀 Why is Rust being used to replace parts of the JavaScript web ecosystem like minification, transpilation, formatting, bundling, linting, and more? https://leerob.io/blog/rust       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 232]             0 305 1523 0 0 0 en  
1465793834739068932 swyx 33521530 2021-11-30T21:24:17+00:00 ✅ Achievement unlocked: led a 2 hour @temporalio live code workshop for 80 people and did not crash and burn 😹 If you're interested in our @typescript SDK, slides here and I'll post up video later this week https://docs.google.com/presentation/d/1mAPYXNmRdDKepXylB91F2uqFyHm8rG12K2PMRHxoUfM/edit?usp=sharing       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 232]             0 4 50 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 1828.903ms