tweets
5 rows where favorited = 0, retweet_count = 31 and retweeted = 0 sorted by lang
This data as json, CSV (advanced)
Suggested facets: source
user 5 ✖
created_at (date) 5 ✖
- 2021-07-14 1
- 2021-09-12 1
- 2021-10-02 1
- 2021-11-05 1
- 2021-12-03 1
quoted_status 0 ✖
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1415436174685089793 | Misko Hevery 14822853 | 2021-07-14T22:20:56+00:00 | Qwik does something heretical! It stores its state in DOM, which is what makes it HTML-first. This goes against all other frameworks, but there are surprising benefits to it. Things that are next to impossible in other frameworks, are trivial in Qwik. https://dev.to/mhevery/html-first-javascript-last-the-secret-to-web-speed-4ic9 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 275] | 0 | 31 | 112 | 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 | ||||||||||
1444208430454034433 | Gergely Orosz 30192824 | 2021-10-02T07:51:36+00:00 | There is so little information written about equity for tech employees, and even less by software engineers who benefitted from it. Uber and Square engineer @mcdickenson wrote the book Equity Compensation for Tech Employees, which fills this gap. Here's the table of contents: https://twitter.com/GergelyOrosz/status/1444208430454034433/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 278] | 0 | 31 | 244 | 0 | 0 | 0 | en | ||||||||||
1456758350419480580 | BrendanEich 9533042 | 2021-11-05T23:00:30+00:00 | @swyx Btw, “Always Bet on JS” is a little over ten years old. See https://brendaneich.com/2011/09/capitoljs-rivertrail/. https://twitter.com/BrendanEich/status/1456758350419480580/photo/1 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [6, 90] | 1456706638010667012 | 33521530 | swyx | 0 | 31 | 231 | 0 | 0 | 0 | en | |||||||
1466801873373986819 | Paul Copplestone 832817861844275200 | 2021-12-03T16:09:53+00:00 | .@supabase is building a @PostgreSQL #graphql extension https://news.ycombinator.com/item?id=29430720 https://twitter.com/kiwicopple/status/1466801873373986819/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 80] | 0 | 31 | 260 | 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]);