tweets
6 rows where in_reply_to_screen_name = "zimmskal", is_quote_status = 0 and source = "1f89d6a41b1505a3071169f8d0d028ba9ad6f952" sorted by lang
This data as json, CSV (advanced)
Suggested facets: favorite_count
created_at (date) 1 ✖
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1472111793187217408 | swyx 33521530 | 2021-12-18T07:49:36+00:00 | @zimmskal @symflower typescript and eslint really finnicky to get right. i still have a bunch of warnings idk how to fix in this https://github.com/temporalio/samples-typescript/ github search, issue automation, permissioning is terrible for monorepos, and thats just the pain points off top of my head | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [21, 277] | 1472111234803716096 | 218911998 | zimmskal | 0 | 0 | 2 | 0 | 0 | 0 | en | |||||||
1472111930273841153 | swyx 33521530 | 2021-12-18T07:50:09+00:00 | @zimmskal @TechCrespo @symflower google's writeup https://dl.acm.org/doi/pdf/10.1145/2854146 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [33, 73] | 1472111745267290112 | 218911998 | zimmskal | 0 | 0 | 2 | 0 | 0 | 0 | en | |||||||
1472116783653998593 | swyx 33521530 | 2021-12-18T08:09:26+00:00 | @zimmskal @symflower @sourcegraph idk maybe issue automation isnt that necessary if we had better search and filtering. but for example if a PR only touches one repo dont rebuild the whole world. permissions not just about secrets, is also about approvers and reviewers. and hybrid closed/open source situations | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [34, 312] | 1472114790646665219 | 218911998 | zimmskal | 0 | 0 | 0 | 0 | 0 | en | ||||||||
1472117742329335814 | swyx 33521530 | 2021-12-18T08:13:15+00:00 | @zimmskal @symflower no 😅 just been suppressing the error every time i commit. its really bad and i feel terrible about it. when i add change a file and the git hook runs lint, i have like 43 lint warnings about eslint+TS that idk how to fix. will try to consult @JoshuaKGoldberg before he leaves | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [21, 297] | 1472115447768174592 | 218911998 | zimmskal | 0 | 0 | 0 | 0 | 0 | en | ||||||||
1472119027480809476 | swyx 33521530 | 2021-12-18T08:18:21+00:00 | @zimmskal @symflower @gitlab i probably gave too trivial of an examples. bash scripting to set up areas sounds ideal. make that part of the platform default tooling. | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [29, 165] | 1472118001252065281 | 218911998 | zimmskal | 0 | 0 | 0 | 0 | 0 | en | ||||||||
1472121311715540997 | swyx 33521530 | 2021-12-18T08:27:26+00:00 | @zimmskal @symflower @sourcegraph we (Temporal) are an open core company - core server, docs, sdk, protobufs are all open source. as company grows we need to build closed source extensions to some of these. would be nice to have both in same monorepo. | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [34, 251] | 1472119535125901312 | 218911998 | zimmskal | 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]);