Start your day with purpose

A short, personalized encouragement based on your goals

What you will receive

You've got this

just now

Hey,

Remember why you started learning to code — to build things that matter.

Every expert was once a beginner. The fact that you're showing up every day is already a win.

Today's reminder: Progress over perfection.

Keep going.

How it works

  1. 1You share your goals and what motivates you
  2. 2AI crafts a personalized, genuine encouragement
  3. 3You start each day with a boost

You configure

Learn to code, start a business, get healthier

What are you working toward?

gentle encouragement, direct challenge, quotes

How do you like to be motivated?

sk-...

For generating personalized motivation

View Python code
import requests
import os
from datetime import datetime

GOALS = os.environ.get("GOALS", "achieve my goals")
STYLE = os.environ.get("MOTIVATION_STYLE", "warm and encouraging")

OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY")

day = datetime.now().strftime("%A")

prompt = f"""Write a short, personalized motivational message.

Their goals: {GOALS}
Preferred style: {STYLE}
Today is: {day}

Guidelines:
- Be genuine, not cheesy
- Reference their specific goals
- Keep it under 50 words
- End with something actionable or a simple reminder

No greeting needed. Just the message."""

response = requests.post(
    "https://api.openai.com/v1/chat/completions",
    headers={"Authorization": f"Bearer {OPENAI_API_KEY}"},
    json={
        "model": "gpt-4o-mini",
        "messages": [{"role": "user", "content": prompt}],
        "max_tokens": 100
    }
)

motivation = response.json()["choices"][0]["message"]["content"]
print(motivation)
Suggested schedule: Every day at 7 AMNotifications: After every run
Browse more templates