Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
Increased title length to 100
  • Loading branch information
oguzpancuk committed Dec 16, 2024
1 parent 2a2f8ed commit d5cf477
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions backend/marketfeed/management/commands/generate_posts.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ def handle(self, *args, **kwargs):
return

economy_topics = [
f"Why is everyone talking about {fake.bs()}?"[:50],
f"Is {fake.bs()} really the future?"[:50],
f"{fake.company()} just did something amazing with {fake.bs()}!"[:50],
f"I can’t believe how {fake.bs()} is changing the game"[:50],
f"Anyone else seeing the hype around {fake.bs()}?"[:50],
f"{fake.bs()} and what it means for us all"[:50],
f"The cool ways {fake.company()} uses {fake.bs()}"[:50],
f"{fake.currency_name()} in {fake.bs()}—what’s happening?"[:50],
f"Big moves in {fake.bs()}—check this out!"[:50],
f"How {fake.bs()} is reshaping the world"[:50],
f"What’s your take on {fake.bs()} trends?"[:50],
f"Let’s talk about {fake.bs()} innovations"[:50],
f"I just read about {fake.bs()} and it’s wild"[:50],
f"{fake.bs()} in the news—here’s what I think"[:50],
f"Do you think {fake.bs()} is overhyped?"[:50],
f"{fake.bs()} updates—what’s happening now?"[:50],
f"How {fake.company()} is mastering {fake.bs()}"[:50],
f"{fake.bs()} is trending, but why?"[:50],
f"Let’s chat about {fake.bs()} strategies"[:50],
f"What’s so exciting about {fake.bs()}?"[:50]
f"Why is everyone talking about {fake.bs()}?"[:100],
f"Is {fake.bs()} really the future?"[:100],
f"{fake.company()} just did something amazing with {fake.bs()}!"[:100],
f"I can’t believe how {fake.bs()} is changing the game"[:100],
f"Anyone else seeing the hype around {fake.bs()}?"[:100],
f"{fake.bs()} and what it means for us all"[:100],
f"The cool ways {fake.company()} uses {fake.bs()}"[:100],
f"{fake.currency_name()} in {fake.bs()}—what’s happening?"[:100],
f"Big moves in {fake.bs()}—check this out!"[:100],
f"How {fake.bs()} is reshaping the world"[:100],
f"What’s your take on {fake.bs()} trends?"[:100],
f"Let’s talk about {fake.bs()} innovations"[:100],
f"I just read about {fake.bs()} and it’s wild"[:100],
f"{fake.bs()} in the news—here’s what I think"[:100],
f"Do you think {fake.bs()} is overhyped?"[:100],
f"{fake.bs()} updates—what’s happening now?"[:100],
f"How {fake.company()} is mastering {fake.bs()}"[:100],
f"{fake.bs()} is trending, but why?"[:100],
f"Let’s chat about {fake.bs()} strategies"[:100],
f"What’s so exciting about {fake.bs()}?"[:100]
]

economy_contents = [
Expand Down

0 comments on commit d5cf477

Please sign in to comment.