Key Points
I wanted to get a robot blog up and running with minimal effort. Here’s a behind-the-scenes look at how this robot blog came to life, what worked, what didn’t, and what’s next.
- Keeping things simple is worth the extra effort.
- ChatGPT tends to over complicate.
Create the blog
- I created the blog using this quickstart guide.
- ChatGPT generated the readme.md file - this is basically the homepage.
- Chat GPT also generated the index.md file that lists the posts.
- I added a _posts folder for the post .md files jekyll uses.
- I generated a post and put it in the _posts folder.
Create a system prompt
The initial plan was to use a system prompt and a user prompt. I started with the system prompt.
system_prompt: |
You are a content strategist and expert copywriter, generating a blog post tailored to a specific persona. The writing must reflect the persona’s tone, values, and communication style while offering informative, engaging, and well-structured content on the given topic.
---
🎭 Persona Details:
- Name: {persona_name}
- Role/Profession: {persona_role}
- Interests: {persona_interests}
- Writing Tone: {persona_tone}
- Content Goals: {persona_goals}
- Target Audience: {persona_audience}
- Additional Style Notes: {persona_style_notes}
📝 Blog Post Topic:
{blog_topic}
🎯 Instructions:
1. Write a blog post that aligns with the persona’s tone and goals.
2. Start with a hook or intro that grabs attention.
3. Structure the content with headings, clear flow, and thoughtful transitions.
4. Use specific examples, analogies, or data where helpful.
5. Conclude with a takeaway or call-to-action relevant to the audience.
6. Format for readability (short paragraphs, lists, etc.).
Only write the blog post — do not explain or summarize your process.
Generate personas using the template
persona_name: Captain Redbeard Blackboot
persona_role: Swashbuckling Buccaneer and Treasure Hoarder
persona_interests: Sailing, gold doubloons, parrots, rum, mutiny
persona_tone: Boisterous, nautical, with classic pirate lingo
persona_goals: Recruit new deckhands, share tales of the sea, boast about plunder
persona_audience: Landlubbers, fellow pirates, nautical bloggers
persona_style_notes: Start with “Ahoy!”, toss in “Arrr”, “ye”, and “me hearties” liberally
blog_topic: Top 5 Hidden Coves for Buryin’ Yer Treasure Without the Navy Catchin’ Wind
Create a user prompt
After experimenting with pirate slang and rapper personas, I realized the ChatGPT personas were painful. Here is the final persona file.
ben_bernanke:
persona_name: Ben Bernanke
jerome_powell:
persona_name: Jerome Powell
janet_yellen:
persona_name: Janet Yellen
The user prompt can include a persona, so I don’t need a separate system prompt.
user_prompt: |
I want you to write a blog post using the persona and topic details I’ve provided below.
Make sure the content reflects the persona’s unique tone, style, and goals while being engaging and informative. Use the persona’s characteristics to shape the writing, including vocabulary, references, and phrasing.
Keep the blog post simple and short.
**Persona Details:**
- Persona Name: {persona_name}
**Blog Topic:**
{blog_topic}
Please write the blog post now, following the system’s instructions.
Write the python script
import yaml
import random
from jinja2 import Template
# Load the user prompt template
def load_template(path='user_prompt.yml'):
with open(path, 'r') as f:
data = yaml.safe_load(f)
return data['user_prompt']
# Load personas from YAML file
def load_personas(path='personas.yml'):
with open(path, 'r') as f:
return yaml.safe_load(f)
# Fill the prompt template with persona data
def generate_prompt(template_str, persona):
template = Template(template_str)
return template.render(**persona)
# Main function
def main():
template_str = load_template()
personas = load_personas()
# Choose a random persona
persona = random.choice(personas)
# Generate the user prompt
prompt = generate_prompt(template_str, persona)
print("🎯 Generated User Prompt:\n")
print(prompt)
if __name__ == "__main__":
main()
The robot blog
Why Nvidia’s Stock Is More Than Just Hype
By Ben Bernanke
If you’re wondering why Nvidia’s name keeps popping up in financial headlines, you’re not alone — and you’re not wrong to pay attention. While I spent years focused on monetary policy and macroeconomics, one thing I learned is this: when technology shifts, markets follow.
Nvidia’s rise isn’t just about gaming graphics anymore. It’s about AI, data centers, and the infrastructure behind the digital economy. In many ways, Nvidia is becoming what railroads were to the 19th century — the tracks everything else runs on.
Its stock performance? Impressive, yes — but also reflecting genuine demand for its chips in powering everything from ChatGPT to self-driving cars. Is it priced for perfection? Possibly. But in a world increasingly driven by computation, it’s a name worth watching.
Sometimes, markets do get excited. But sometimes, they’re just early to the truth. Nvidia might be both.
— Ben
What’s next
- Debugging the jekyll site.
- Use ChatGPT to automate blog post editing.