Share Your Wildest Custom GPT Prompts: Successes and Failures

Hello everybody!

Everybody has had those times when they wrote a prompt that either went terribly wrong or better than they had anticipated. Sharing those experiences is the focus of this topic!

Related Information:

Success Stories: Prompts that you created or attempted to generate and that proved to be surprisingly effective. Why did they succeed? What realisations did you make?

  1. Failures and Surprises: Prompts that didn’t work out as planned or produced unexpected results. What went wrong? What did the experience teach you?

Your narrative is welcome here, regardless of how well or poorly your prompt worked. Along the road, let’s have fun and learn from one another!

:slight_smile: I’m excited to read your wild prompt stories!

— P.S. : Happy 2025 to all

1 Like

I did the following using a meta prompt, for instance:

Write me a prompt that provides me a website that fulfills the following requirements:

  • a very fancily moving background
  • integrating hubspot (free account and all possibilities that come with that)* that enables me to make rapid appointments, AND manage my whole backoffice with hubspot as well
  • that would be very good for a coach, especially a deep emotional connection coach
  • that is very engaging
  • looks very stylish, in time, and professional

Output the html code for this page including javascript, css, html in one coherent codeblock.

And really makes people wanna know more, so they will book a coaching? Thanks.


Transform Your Life | Professional Life Coach * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    body {
        overflow-x: hidden;
        background: #000;
        color: #fff;
    }

    .background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: linear-gradient(45deg, #1a1a1a, #4a1a4a);
    }

    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .particle {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        pointer-events: none;
    }

    header {
        padding: 2rem;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
    }

    nav {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
    }

    nav a {
        color: #fff;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s;
    }

    nav a:hover {
        color: #ff69b4;
    }

    .hero {
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(45deg, #ff69b4, #ff4500);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .tagline {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        max-width: 800px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        background: linear-gradient(45deg, #ff69b4, #ff4500);
        color: white;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: transform 0.3s;
        text-decoration: none;
    }

    .cta-button:hover {
        transform: scale(1.05);
    }

    .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 4rem 2rem;
        background: rgba(0, 0, 0, 0.5);
    }

    .feature {
        position: relative;
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        transition: all 0.5s ease;
        height: 200px;
        overflow: hidden;
        cursor: pointer;
    }

    .feature:hover {
        height: 400px;
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
    }

    .feature h3 {
        color: #ff69b4;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .feature-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-main {
        margin-bottom: 1rem;
    }

    .feature-extended {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    .feature:hover .feature-extended {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-list {
        text-align: left;
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

    .feature-list li {
        margin: 0.5rem 0;
        list-style-type: none;
        position: relative;
    }

    .feature-list li:before {
        content: "♦";
        color: #ff69b4;
        position: absolute;
        left: -1.5rem;
    }

    .booking-section {
        padding: 4rem 2rem;
        text-align: center;
    }

    .testimonials {
        padding: 4rem 2rem;
        background: rgba(0, 0, 0, 0.5);
    }

    .testimonial {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        padding: 2rem;
    }

    footer {
        text-align: center;
        padding: 2rem;
        background: rgba(0, 0, 0, 0.8);
    }
</style>
<header>
    <nav>
        <a href="#about">About</a>
        <a href="#services">Services</a>
        <a href="#booking">Book Now</a>
        <a href="#testimonials">Testimonials</a>
    </nav>
</header>

<section class="hero">
    <h1>Transform Your Life's Journey</h1>
    <p class="tagline">Discover your true potential through deep emotional connection coaching that speaks to your soul and transforms your reality.</p>
    <a href="#booking" class="cta-button">Begin Your Transformation</a>
</section>

<section class="features" id="services">
    <div class="feature">
        <div class="feature-content">
            <div class="feature-main">
                <h3>Deep Emotional Intelligence</h3>
                <p>Develop profound self-awareness and emotional mastery through personalized coaching sessions.</p>
            </div>
            <div class="feature-extended">
                <ul class="feature-list">
                    <li>Learn to identify and understand your emotional patterns</li>
                    <li>Master techniques for emotional regulation</li>
                    <li>Develop stronger relationships through empathy</li>
                    <li>Transform challenging emotions into personal power</li>
                </ul>
                <a href="#booking" class="cta-button">Explore EQ Coaching</a>
            </div>
        </div>
    </div>
    <div class="feature">
        <div class="feature-content">
            <div class="feature-main">
                <h3>Authentic Connections</h3>
                <p>Learn to create and nurture meaningful relationships in both personal and professional spheres.</p>
            </div>
            <div class="feature-extended">
                <ul class="feature-list">
                    <li>Break free from relationship patterns that no longer serve you</li>
                    <li>Develop authentic communication skills</li>
                    <li>Build trust and deeper connections</li>
                    <li>Create lasting and meaningful relationships</li>
                </ul>
                <a href="#booking" class="cta-button">Start Your Journey</a>
            </div>
        </div>
    </div>
    <div class="feature">
        <div class="feature-content">
            <div class="feature-main">
                <h3>Life Purpose Discovery</h3>
                <p>Uncover your true calling and align your life with your deepest values and aspirations.</p>
            </div>
            <div class="feature-extended">
                <ul class="feature-list">
                    <li>Discover your core values and life mission</li>
                    <li>Align your actions with your purpose</li>
                    <li>Overcome blocks and limiting beliefs</li>
                    <li>Create an actionable plan for your future</li>
                </ul>
                <a href="#booking" class="cta-button">Find Your Purpose</a>
            </div>
        </div>
    </div>
</section>

<section class="booking-section" id="booking">
    <h2>Schedule Your Transformation Session</h2>
    <div id="hubspot-form"></div>
</section>

<section class="testimonials" id="testimonials">
    <div class="testimonial">
        <p>"This coaching experience has completely transformed how I connect with others and understand myself. It's been life-changing."</p>
        <cite>- Sarah M.</cite>
    </div>
</section>

<footer>
    <p>© 2024 Transformational Coaching. All rights reserved.</p>
</footer>

<script>
    // Particle Animation
    function createParticles() {
        const particlesContainer = document.getElementById('particles');
        const particleCount = 50;

        for (let i = 0; i < particleCount; i++) {
            const particle = document.createElement('div');
            particle.className = 'particle';
            
            const size = Math.random() * 3 + 2;
            particle.style.width = `${size}px`;
            particle.style.height = `${size}px`;
            
            particle.style.left = `${Math.random() * 100}%`;
            particle.style.top = `${Math.random() * 100}%`;
            
            particlesContainer.appendChild(particle);
            
            animateParticle(particle);
        }
    }

    function animateParticle(particle) {
        const duration = Math.random() * 3 + 2;
        const xMove = Math.random() * 100 - 50;
        const yMove = Math.random() * 100 - 50;

        particle.style.transition = `transform ${duration}s linear`;
        particle.style.transform = `translate(${xMove}px, ${yMove}px)`;

        setTimeout(() => {
            particle.style.transform = 'translate(0, 0)';
            setTimeout(() => animateParticle(particle), duration * 1000);
        }, duration * 1000);
    }

    // Initialize particles
    createParticles();

    // HubSpot Form Embed Code
    window.hbspt.forms.create({
        region: "na1",
        portalId: "YOUR_PORTAL_ID",
        formId: "YOUR_FORM_ID",
        target: "#hubspot-form",
        css: ""
    });

    // Smooth scrolling for navigation
    document.querySelectorAll('a[href^="#"]').forEach(anchor => {
        anchor.addEventListener('click', function (e) {
            e.preventDefault();
            document.querySelector(this.getAttribute('href')).scrollIntoView({
                behavior: 'smooth'
            });
        });
    });
</script>

Which resulted in a website like this: