home / twitter

tweets

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

8 rows where "created_at" is on date 2021-10-03, is_quote_status = 0, retweeted = 0 and source = "1f89d6a41b1505a3071169f8d0d028ba9ad6f952" sorted by lang

✎ View and edit SQL

This data as json, CSV (advanced)

user 2 ✖

  • swyx 7
  • Coding Career Community 1

source 1 ✖

  • Twitter Web App · 8 ✖

is_quote_status 1 ✖

  • - · 8 ✖

created_at (date) 1 ✖

  • 2021-10-03 · 8 ✖
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
1444468204223426563 swyx 33521530 2021-10-03T01:03:51+00:00 welp i just got done editing and forgot it needs time to output the video https://twitter.com/swyx/status/1444468204223426563/photo/1       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 73] 1444408212707438594 33521530 swyx       0 0 7 0 0 0 en  
1444542756647419909 Coding Career Community 1249002899897647105 2021-10-03T06:00:06+00:00 "This career feels like a few key hours every year with a few near mandatory year-long cool-down periods in between where what you do barely matters." 😬 Who else has felt like this and what did you do about it? https://old.reddit.com/r/cscareerquestions/comments/pzofk7/this_career_feels_like_a_few_key_hours_every_year/ https://twitter.com/Coding_Career/status/1444542756647419909/photo/1       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [0, 236]             0 6 36 0 0 0 en  
1444551050967465986 swyx 33521530 2021-10-03T06:33:03+00:00 @ejames_c "I am a postgresql specialist because it is open source and reliable af" is a pretty good reason not to know anything else about database implementations and just spend the rest of your career knowing postgres nuances tbh. not everyone needs to be horizontally aware       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [10, 276] 1444549924108976130 14243237 ejames_c       0 0 1 0 0   en  
1444576026852397060 swyx 33521530 2021-10-03T08:12:18+00:00 @dtinth love it 🔥       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [8, 17] 1444575699663081480 12740012 dtinth       0 0 0 0 0   en  
1444724789994606592 swyx 33521530 2021-10-03T18:03:26+00:00 @JCardenete i will never forget my first boss, an Angular guy, dismissing React out of hand as a "serious framework" because it "doesnt have dependency injection". lol       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [12, 168] 1444701422356877313 562755125 JCardenete       0 1 21 0 0   en  
1444725460697436161 swyx 33521530 2021-10-03T18:06:06+00:00 @jlengstorf @astrodotbuild the built in css transition stuff is cool, but what really sold me was the js motion stores. take a couple minutes and read this: https://svelte.dev/tutorial/tweened see the smooth upgrade from a writable store to a tweened motion store!! progressive upgrade makes animation *fun*.       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [27, 298] 1444677444267483142 15668072 jlengstorf       0 1 8 0 0 0 en  
1444737301611827202 swyx 33521530 2021-10-03T18:53:09+00:00 @SoftwareSocPod you two have amazing chemistry and are both working on interesting projects!       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [16, 92] 1444312230162534401 1288427219786891265 SoftwareSocPod       0 0 4 0 0   en  
1444737590901411846 swyx 33521530 2021-10-03T18:54:18+00:00 @skynetcap @fipsyfip @eastdakota @Cloudflare this aged well.       Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 0 [45, 60] 1198716154987962368 999128303179976704 skynetcap       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 15507.468ms