tweets
7 rows where "created_at" is on date 2021-12-10, favorite_count = 2 and lang = "en"
This data as json, CSV (advanced)
Suggested facets: source, in_reply_to_user_id, in_reply_to_screen_name, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1469100790736306176 | swyx 33521530 | 2021-12-10T00:24:57+00:00 | @sebmarkbage *awkward_monkey_eyes.gif* | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [13, 38] | 1468971517421637632 | 18022416 | sebmarkbage | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1469101797889298436 | swyx 33521530 | 2021-12-10T00:28:57+00:00 | @JustJake 100b @RemindMe_OfThis 4 years | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [10, 40] | 1469100520765751299 | 607528502 | JustJake | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1469102925192450050 | swyx 33521530 | 2021-12-10T00:33:26+00:00 | @evanderkoogh dont be too harsh haha its a company we both know. im pretty sanguine about it, ive been in this exact meeting before. looks great on simulation but someone forgot to mind the gaps. i’m a friendly party, im sure some others are not taking it so well. | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [14, 265] | 1469102097622700033 | 14491079 | evanderkoogh | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1469120300230922240 | swyx 33521530 | 2021-12-10T01:42:29+00:00 | @tzyinc @petrussola @dan_abramov all those talks would not exist without Dan. im pretty sure he could code my crappy clone in his sleep haha. | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [33, 141] | 1469117372803936257 | 184034139 | tzyinc | 0 | 0 | 2 | 0 | 0 | en | ||||||||
1469138096788623360 | swyx 33521530 | 2021-12-10T02:53:12+00:00 | @dalmaer how do you feel about the security model and how easy it is to compromise though? https://twitter.com/timdorr/status/1435602941621243907?s=21 | 1435602941621243907 1435602941621243907 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [9, 114] | 1469017087444074499 | 4216361 | dalmaer | 1 | 0 | 2 | 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 | |||||||
1469152521247592448 | swyx 33521530 | 2021-12-10T03:50:31+00:00 | @jhooks @arvidkahl @obsdmd id love to see best practices for daily/weekly/monthly/quarterly review/planning. trying to get better at that for personal stuff | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [27, 156] | 1469150192167387136 | 12087242 | jhooks | 0 | 0 | 2 | 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]);