tweets
7 rows where favorite_count = 47 sorted by lang
This data as json, CSV (advanced)
Suggested facets: user, is_quote_status, retweet_count, favorited, retweeted
created_at (date) 7 ✖
- 2019-04-09 1
- 2021-08-18 1
- 2021-08-20 1
- 2021-10-13 1
- 2021-10-24 1
- 2021-11-08 1
- 2021-12-12 1
source 4 ✖
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1115638145725403136 | Netlify 2571501973 | 2019-04-09T15:30:36+00:00 | Breaking from @JAMstackconf NYC: @biilmann demos Netlify Dev - run @Netlify's edge features on your local machine! Including: * Redirects and proxies * Build and test #serverless functions * Centrally managed env vars * A live URL to your local build https://www.netlify.com/blog/2019/04/09/netlify-dev--our-entire-platform-right-on-your-laptop/?utm_source=twitter&utm_medium=social&utm_campaign=launch https://twitter.com/Netlify/status/1115638145725403136/photo/1 | Buffer 169a89a27ef3ad2a4af15851e3f6452bfeb0ef67 | 0 | [0, 279] | 0 | 16 | 47 | 0 | 0 | 0 | en | ||||||||||
1427862892976611333 | swyx 33521530 | 2021-08-18T05:20:16+00:00 | When you visit @stephsmithio's Doing Content Right, you'll notice the unusual book pricing: raising prices every 30 copies. This is a stroke of *GENIUS*, and on today's mixtape I analyze it via @RobertCialdini's advice on Social Proof and Scarcity: https://share.transistor.fm/s/fe762816 🔥 https://twitter.com/swyx/status/1427862892976611333/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 276] | 0 | 2 | 47 | 0 | 0 | 0 | en | ||||||||||
1428861510164520960 | swyx 33521530 | 2021-08-20T23:28:25+00:00 | I got Gigabit internet ("up to 1000 Mbps") and TIL how much antennae affect internet speeds as measured by fast.com: Plugged in Ethernet: 780mbps iPad on 5G: 200mbps iPhone on 5G: 120mbps iPad on 2G: 80mbps iPhone on 2G: 60mbps | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 280] | 0 | 1 | 47 | 0 | 0 | en | |||||||||||
1448312281482162177 | swyx 33521530 | 2021-10-13T15:38:50+00:00 | gm new loading spinner dropped https://twitter.com/daltonjholcombe/status/1447763660982546437 | 1447763660982546437 1447763660982546437 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 31] | 1 | 0 | 47 | 0 | 0 | 0 | en | |||||||||
1452120199180603393 | Shriram Balaji 2498289235 | 2021-10-24T03:50:09+00:00 | Such a wonderful video by @swyx on "How to Outlive React?". If you're into frontend and plan on being invested in it for a while, this is a must watch. https://youtu.be/yLgq-Foc1EE | Twitter for Android f0976f342215a984184a13a54b26877ece8cebba | 0 | [0, 176] | 0 | 2 | 47 | 1 | 1 | 0 | en | ||||||||||
1457730231301705730 | Katie Sylor-Miller 23232640 | 2021-11-08T15:22:25+00:00 | Another great Frontend-focused @Etsy @codeascraft blog post for y'all about how we migrated to Typescript by the amazing @technoheads - this was a massive undertaking to roll out and provide training timelines for engineers. https://codeascraft.com/2021/11/08/etsys-journey-to-typescript/ | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 248] | 0 | 11 | 47 | 0 | 0 | 0 | en | ||||||||||
1469826858652880896 | swyx 33521530 | 2021-12-12T00:30:05+00:00 | "If you were a character in a book, what would your readers be yelling at you to do?" Fave thought exercise of mine, from @ESYudkowsky. | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 136] | 0 | 6 | 47 | 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]);