home / twitter

tweets

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

4 rows where favorited = 0, retweet_count = 50 and retweeted = 0 sorted by lang

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: source, lang, created_at (date)

user 2 ✖

  • swyx 3
  • scott belsky 1

retweeted 1 ✖

  • - · 4 ✖

retweet_count 1 ✖

  • 50 · 4 ✖

is_quote_status 1 ✖

  • 0 4

quoted_status 0 ✖

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
1370513317379280897 swyx 33521530 2021-03-12T23:13:32+00:00 🆕 Preemptive Pluralization is (Probably) Not Evil https://www.swyx.io/preemptive-pluralization/ Fully-baking a theory by @r00k on the @artofproductpod, I make the case for a "Premature" Optimization you should consider. TL;DR - Pluralized code is robust to @hillelogram's requirement perturbations!       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 279]             0 50 202 0 0 0 en  
1436377307086835726 swyx 33521530 2021-09-10T17:13:31+00:00 The ratio of “internal tooling” or “developer productivity” engineers to others is too low in most companies. If you have 50 devs and have room to improve productivity at least 1% a quarter, you have budget for 1-2 dedicated DX engineers. Not even counting intangible benefits.       Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 0 [0, 278]             0 50 400 0 0   en  
1441469889315622912 scott belsky 15698507 2021-09-24T18:29:37+00:00 That a prototype is worth a hundred meetings, and almost all product meetings that aren’t grounded with a prototype are a waste of time (or worse). A prototype immediately surfaces gaps in logic or business concerns. It is the fastest way to drive alignment.       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 258] 1441469888246259715 15698507 scottbelsky       0 50 426 0 0   en  
1468034312247279620 swyx 33521530 2021-12-07T01:47:09+00:00 JavaScript, Python, Java, Rust https://twitter.com/swyx/status/1468034312247279620/photo/1       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 30]             0 50 584 0 0 0 fr  

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 38292.647ms