A feed component has to survive a one-word reply and a post that hits the character limit, plus an engagement count that jumps from 3 to 12,000. All three appear in a batch from this generator.
What you can control
- Four shapes with different length limits — a 280-character microblog post behaves differently from a long status update.
- Engagement counts follow a power-law skew, so one post in a batch of twenty dwarfs the rest.
- Reposts and replies are derived from the like count, keeping the ratios plausible.
- Hashtag count is adjustable from zero to eight, which is where most feed layouts start wrapping badly.
What this is not
Mentions use generated handles that may coincide with real accounts on some platform. Do not publish this content anywhere it could be read as addressed to a real person.
Questions
Why do the engagement numbers vary so wildly?
Because real ones do. Sorting by likes on a uniformly random dataset tells you nothing; a skewed one shows whether your leaderboard and your number formatting hold up.
Are posts truncated to the character limit?
Yes, hard. Microblog posts cut at 240 characters, captions at 140. That truncation is often where a preview component breaks.
Can I generate a threaded conversation?
Not directly. Generate a batch of comment-style replies and assemble the thread yourself — the tool produces individual posts, not a reply graph.