tweets
8 rows where "created_at" is on date 2021-12-10, is_quote_status = 0, retweeted = 0 and source = "1f89d6a41b1505a3071169f8d0d028ba9ad6f952" sorted by lang
This data as json, CSV (advanced)
Suggested facets: display_text_range, in_reply_to_user_id, in_reply_to_screen_name, retweet_count, favorite_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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1469145149162676224 | swyx 33521530 | 2021-12-10T03:21:13+00:00 | When you need to do API design, call a frontend developer. The upside of the competitiveness in frontend tooling and bikeshedding on frameworks and libraries is you get a fine sense for good DX. Loving @_jstejada's explanation of React in this light: https://youtu.be/FZ0cG47msEk?t=535 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 277] | 0 | 1 | 61 | 0 | 0 | 0 | en | ||||||||||
1469146284141408257 | swyx 33521530 | 2021-12-10T03:25:44+00:00 | @jhooks @arvidkahl i moved to @obsdmd for my 2nd brain recently - https://publish.obsidian.md/swyx havent blogged about it yet bc still getting my sea legs. i think its a good multiplatform option for personal use. cant speak to multiplayer - we tried to speak to them about team use and got turned down. | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [19, 295] | 1469145749665370114 | 12087242 | jhooks | 0 | 0 | 2 | 0 | 0 | 0 | en | |||||||
1469163411531513857 | swyx 33521530 | 2021-12-10T04:33:47+00:00 | And Todolists. We're much better at making Todolists than doing Todos on our Todolists 😂 @huxpro delivering the surprise announcement of #ReactConf in this talk - the sufficiently smart compiler is real — and maybe not so impossible! React Forget 👀 https://youtu.be/lGEMwh32soc https://twitter.com/swyx/status/1469163411531513857/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 275] | 1469145149162676224 | 33521530 | swyx | 0 | 0 | 18 | 0 | 0 | 0 | en | |||||||
1469166647562756099 | swyx 33521530 | 2021-12-10T04:46:39+00:00 | omg this is the first talk I've ever seen by @delba_oliveira and my mind is blown 🤯 So much packed into this 9 minute overview of the State of the Art in Interactive Playgrounds - @worrydream would be proud! and... The examples The backdrop THE BABY https://youtu.be/zL8cz2W0z34 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 277] | 1469163411531513857 | 33521530 | swyx | 0 | 3 | 33 | 0 | 0 | 0 | en | |||||||
1469169682770845701 | swyx 33521530 | 2021-12-10T04:58:42+00:00 | @acemarke @delba_oliveira @worrydream *note to self* have baby so i can make great talk intros | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [38, 94] | 1469168818593357824 | 727704217012604928 | acemarke | 0 | 0 | 4 | 0 | 0 | en | ||||||||
1469364403908665346 | swyx 33521530 | 2021-12-10T17:52:28+00:00 | @bertmb thanks! I owe that phrase to @brad_frost who had "creative exhaust" https://bradfrost.com/blog/post/creative-exhaust/ | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [8, 99] | 1469314601003139075 | 15432750 | bertmb | 0 | 0 | 0 | 0 | 0 | 0 | en | |||||||
1469430669126287365 | Vitest 1468581252106440708 | 2021-12-10T22:15:46+00:00 | ✅ Vitest is one week old today https://twitter.com/vitest_dev/status/1469430669126287365/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 30] | 0 | 68 | 562 | 0 | 0 | 0 | en | ||||||||||
1469453180563976194 | swyx 33521530 | 2021-12-10T23:45:14+00:00 | @ludofleury @temporalio oh sure! DM incoming | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [24, 44] | 1469450196748750854 | 47574527 | ludofleury | 0 | 0 | 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]);