tweets
9 rows where in_reply_to_user_id = 18727585 and retweeted = 0
This data as json, CSV (advanced)
Suggested facets: retweet_count, favorite_count, created_at (date)
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1429658207228547079 | swyx 33521530 | 2021-08-23T04:14:13+00:00 | @stolinski will DM! | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [11, 19] | 1429652280744288257 | 18727585 | stolinski | 0 | 0 | 0 | 0 | 0 | en | ||||||||
1437945494119096322 | swyx 33521530 | 2021-09-15T01:04:56+00:00 | @stolinski so in my latest tests i tried both fitbit and apple watch and i think fitbit is the best combo of form and function. just gotta find a band that doesnt wreck my skin… | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [11, 177] | 1437944993130426368 | 18727585 | stolinski | 0 | 0 | 9 | 0 | 0 | en | ||||||||
1438218996088590336 | swyx 33521530 | 2021-09-15T19:11:44+00:00 | @stolinski @Gifted_Geek my mind was blown when i first saw that the entirety of the Svelte stores implementation (writeable, readable, derived + full typing + comments ) is just 200 lines of code https://github.com/sveltejs/svelte/blob/master/src/runtime/store/index.ts | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [24, 219] | 1438208450215952388 | 18727585 | stolinski | 0 | 1 | 17 | 0 | 0 | 0 | en | |||||||
1438219076858310659 | swyx 33521530 | 2021-09-15T19:12:03+00:00 | @stolinski @the_aceix scott woke up on the spicy side of bed today | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [22, 66] | 1438193202528411653 | 18727585 | stolinski | 0 | 0 | 17 | 0 | 0 | en | ||||||||
1439031496648527872 | swyx 33521530 | 2021-09-18T01:00:19+00:00 | @stolinski @sveltejs turns out the single file format is a really good fit for markdown extensions, right down to inline styles :) @evilpingwin is a mad genius. He did this talk for last year's Svelte Summit: https://www.youtube.com/watch?v=S3j1fLzC8_E | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [21, 233] | 1438991516647706627 | 18727585 | stolinski | 0 | 1 | 17 | 0 | 0 | 0 | en | |||||||
1453175834865397762 | swyx 33521530 | 2021-10-27T01:44:52+00:00 | @stolinski i will accept fruit names as variables | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [11, 49] | 1453166093057601542 | 18727585 | stolinski | 0 | 0 | 4 | 0 | 0 | en | ||||||||
1457478823172214787 | swyx 33521530 | 2021-11-07T22:43:24+00:00 | @stolinski i like it! wondering why it has to be Svelte specific.. just because of the svelte store? Svelte stores can be used in non Svelte projects fwiw | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [11, 154] | 1456705970659278851 | 18727585 | stolinski | 0 | 0 | 5 | 0 | 0 | en | ||||||||
1461734686187687943 | swyx 33521530 | 2021-11-19T16:34:41+00:00 | @stolinski id love to!! definitely feeling the impostor syndrome because theres so much i dont know about video. hit me up if you have an idea for something and i’ll do the same, not suuper sure what my channel is about yet | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [11, 223] | 1461731095620292618 | 18727585 | stolinski | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1471953869005410305 | swyx 33521530 | 2021-12-17T21:22:04+00:00 | @stolinski @c_pick wow this is a hot take i like, is there a video on it yet? | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [19, 77] | 1471952713630031872 | 18727585 | stolinski | 0 | 0 | 9 | 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]);