tweets
6 rows where "created_at" is on date 2021-09-12 and source = "1f89d6a41b1505a3071169f8d0d028ba9ad6f952" sorted by lang descending
This data as json, CSV (advanced)
Suggested facets: user, in_reply_to_user_id, in_reply_to_screen_name, retweet_count
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1436890184449236994 | Ben Lesh 👈😎👈 23795212 | 2021-09-12T03:11:30+00:00 | Okay, I've taken the time to articulate all of my thoughts in a single space about the current pipeline proposal. I've also included as much information as I can about functional piping, and the two most popular pipelines. (It's opinionated, sorry) https://benlesh.com/posts/tc39-pipeline-proposal-hack-vs-f-sharp/ | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 275] | 0 | 143 | 555 | 0 | 0 | 0 | en | ||||||||||
1437039454967975938 | Thomas Dhondt 1327740164328878081 | 2021-09-12T13:04:39+00:00 | Wrote a quick post why I changed my mind about @tailwindcss. I used to think it was quite messy early on in my dev career, now I actually love it! https://www.thomasdhondt.be/blog/i-changed-my-mind-about-tailwind-css | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 171] | 0 | 31 | 257 | 0 | 0 | 0 | en | ||||||||||
1437109166334783494 | swyx 33521530 | 2021-09-12T17:41:40+00:00 | 👀 Working on next post: "Why do webdevs keep trying to kill REST?" This one's been baking for a while - ever since I saw the innovation in @Reactjs Server Components and Rails Hotwire. Subscribe if you'd like to read a draft tonight! https://swyx.io/subscribe 🙏🏽 https://twitter.com/swyx/status/1437109166334783494/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 263] | 0 | 6 | 186 | 0 | 0 | 0 | en | ||||||||||
1437122451129896967 | swyx 33521530 | 2021-09-12T18:34:27+00:00 | @colinhacks @simonplend you could try @buttondown | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [24, 49] | 1437121038182199305 | 888220718 | colinhacks | 0 | 0 | 0 | 0 | 0 | en | ||||||||
1437125150965653511 | swyx 33521530 | 2021-09-12T18:45:11+00:00 | @colinhacks interesting! so i scanned the docs and it didnt answer the basic question i had - what does trpc use as transport layer if not REST or GraphQL? | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [12, 156] | 1437122948280762372 | 888220718 | colinhacks | 0 | 0 | 3 | 0 | 0 | en | ||||||||
1437125387595698176 | swyx 33521530 | 2021-09-12T18:46:07+00:00 | @colinhacks ah. your own HTTP rpc spec? https://trpc.io/docs/rpc | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [12, 63] | 1437125150965653511 | 33521530 | swyx | 0 | 0 | 4 | 0 | 0 | 0 | en |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);