home / twitter

tweets

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

6 rows where "created_at" is on date 2021-10-27, favorite_count = 2 and retweet_count = 0 sorted by lang descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: lang, created_at (date)

source 2 ✖

  • Twitter Web App 5
  • Twitter for iPhone 1

retweet_count 1 ✖

  • - · 6 ✖

favorite_count 1 ✖

  • 2 · 6 ✖
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
1453290745906057219 swyx 33521530 2021-10-27T09:21:29+00:00 @sebastienlorber 🎉       Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 0 [17, 18] 1453262895912005639 40663578 sebastienlorber       0 0 2 0 0   und  
1453187165291118597 swyx 33521530 2021-10-27T02:29:53+00:00 @stubailo @stolinski y u roasting my design doc https://twitter.com/swyx/status/1453187165291118597/photo/1       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [21, 47] 1453186117289734146 12767662 stubailo       0 0 2 0 0 0 en  
1453192003223654405 swyx 33521530 2021-10-27T02:49:07+00:00 @mikedubcurry @stolinski yup. we have those :) https://github.com/temporalio/samples-typescript/#samples-directory just not side by side with the metasyntactic stuff       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [25, 123] 1453191295816458252 915387184420712448 mikedubcurry       0 0 2 0 0 0 en  
1453406571204005897 swyx 33521530 2021-10-27T17:01:44+00:00 @Fredkiss7 @vercel @leeerob but edgier       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [28, 38] 1453405445268312073 1044497754087727105 Fredkiss7       0 0 2 0 0   en  
1453406996938440707 swyx 33521530 2021-10-27T17:03:25+00:00 @martinwoodward @monkchips so hyped!!!       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [27, 38] 1453389315321516035 14252897 martinwoodward       0 0 2 0 0   en  
1453489141212057601 swyx 33521530 2021-10-27T22:29:50+00:00 @loujaybee it really is. developers shall inherit the earth       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [11, 59] 1453487991582769162 1290693397 loujaybee       0 0 2 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 1186.179ms