nNexGateHub
Browse NexGateHub
NEXGATEHUB / PROMPTS

Workflows — page 6

Discover, adapt and reuse 23,385 prompts. Copy, adapt, and create.

929 English prompts · Page 6 of 10

Workflows · EN

High-End LP Generator (swiss Style)

{argument name="generatornameen" default="High-End LP Generator (Swiss Style)"} Based on the later-provided {argument name="inputtexten" default="Input Text"}, strictly follow the following specifications and implement

Workflows · EN

High-Stakes Decision Support System

Build a high-stakes decision support system called "Pivot" — a structured thinking tool for major life and business decisions. This is distinct from a simple pros/cons list. The value is in the structured analytical proc

Workflows · EN

High-Velocity Dogfight

Game Concept: A flight simulator where players pilot "Zenith" jets through a 3D particle tunnel. The tunnel reacts to the player’s speed, stretching particles into long motion-blur lines. Technical Prompt: Construct a 3D

Workflows · EN

Horror Story in Hindi

The prompt has been updated with the title "Horror Story in Hindi," a description, and assigned to the "Creative" category. Tags "Horror" and "Hindi" were not found, but "Storytelling" was applied.

Workflows · EN

HTTPS Usage

// ✅ CORRECT if (window.location.protocol !== 'https:' && process.env.NODEENV === 'production') { window.location.href = window.location.href.replace('http:', 'https:'); }

Workflows · EN

I Want You to Act as an Advertiser

I want you to act as an advertiser. You will create a campaign to promote a product or service of your choice. You will choose a target audience, develop key messages and slogans, select the media channels for promotion,

Workflows · EN

Idea Generation

You are a creative brainstorming assistant. Help the user generate innovative ideas for their project. 1. Ask clarifying questions about the ${topic} 2. Generate 5-10 diverse ideas 3. Rate each idea on feasibility and i

Workflows · EN

Improve

What's the single smartest and most radically innovative and accretive and useful and compelling addition you could make to the project at this point?

Workflows · EN

Improve Employee Retention Using AI

Company:[Insert here] Employee roles: [Insert here] Provide suggestions on how to increase employee retention. Offer specific ideas, strategies,and step-by-step instructions to help employees feel comfortable, engaged

Workflows · EN

Improve Your Business Model

Analyze [business] and [business model]. Consider the market space and find the faults that could make businesses fail or slow down. Update the [business model] to solve all the faults you find. Business = [Insert Here]

Workflows · EN

Improving Business English

You are an expert Business English trainer with many years of experience teaching professionals in international companies. Your goal is to help me develop my Business English skills through interactive exercises, feedba

Workflows · EN

Increase Organic Traffic for Your Website

Generate unique ideas on how to increase organic search ranking for [website]. Implement ideas on how to stand out from the [website]'s competition. For each idea, give step-by-step instructions on how to implement it fo

Workflows · EN

Infographic

Generate info graphics that depict story of how an given event with the context of that event can have impact on multiple zones, harm on the direct system it belongs to etc

Workflows · EN

Installation

{ "compilerOptions": { "target": "es2017", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": true, "forceConsistentCasingInFileNames": true, "noEmit": true, "esModuleInte

Workflows · EN

Installation

import { initializeApp, getApps } from 'firebase/app'; import { getFirestore } from 'firebase/firestore'; import { getAuth } from 'firebase/auth'; import { getStorage } from 'firebase/storage'; const firebaseConfig = {

Workflows · EN

Installation

import { initializeApp } from 'firebase/app'; import { getFirestore } from 'firebase/firestore'; import { getAuth } from 'firebase/auth'; import { getStorage } from 'firebase/storage'; const firebaseConfig = { apiKey:

Workflows · EN

Installation

import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; const queryClient = new QueryClient({ defaultOptions: { queries: { staleT

Workflows · EN

Investor Pitch Presentation

Act as a Startup CEO. You are presenting your pitch deck to potential investors, aiming to secure their interest and funding. Your task is to: - Begin with a compelling story or anecdote that captures the essence of you

Workflows · EN

Isometric Miniature 3D Cartoon City Scene

Present a clear, 45° top-down view of a vertical (9:16) isometric miniature 3D cartoon scene, highlighting iconic landmarks centered in the composition to showcase precise and delicate modeling. The scene features soft,

Workflows · EN

Issues by Severity

CRITICAL [N] File — brief summary [N] File — brief summary MAJOR [N] File — brief summary ... MINOR [N] File — brief summary ... STYLE [N] File — brief summary ...

Workflows · EN

IT Architect

I want you to act as an IT Architect. I will provide some details about the functionality of an application or other digital product, and it will be your job to come up with ways to integrate it into the IT landscape. T

Workflows · EN

Jessica

Full-body shot of a muscular, athletic man with intricate, detailed tattoo sleeves covering both arms, wearing a black backward baseball cap and crisp white boxer briefs. He stands on a minimalist outdoor white concrete

Workflows · EN

Key Steps

// app/providers.tsx or similar "use client" import { fal } from "@fal-ai/client" fal.config({ proxyUrl: "/api/fal/proxy" })

Workflows · EN

Key Steps

// app/api/fal/proxy/route.ts import { NextRequest, NextResponse } from "next/server" import { route } from "@fal-ai/server-proxy/nextjs" // Simple in-memory map to track usage per IP: const ipUsage: Record = {} e

Workflows · EN

Keyboard Navigation

// ✅ CORRECT function setupAccessibleAuth() { const signInButton = document.getElementById('sign-in'); signInButton.addEventListener('keydown', (event) = { if (event.key === 'Enter' || event.key === ' ') { event.prev

Workflows · EN

Kognitiv Aktivierende Aufgaben Erstellen

Du bist ein Grundschullehrer, dessen Ziel es ist Aufgaben möglichst kognitiv aktivierend für seine Schülerinnen und Schüler zu gestalten. Du erhältst hierfür bereits bestehende Aufgaben oder Ideen zu einer Aufgabe und so

Workflows · EN

Landing Page for [DESCRIBE YOUR BUSINESS]

Generate an enterprise-grade professional landing page for {argument name="businessdescriptionen" default="[DESCRIBE YOUR BUSINESS]"}. Add interactive elements, animations, and make it fully responsive. Surprise me, be

Workflows · EN

Language Detector

I want you act as a language detector. I will type a sentence in any language and you will answer me in which language the sentence I wrote is in you. Do not write any explanations or other words, just reply with the lan

Workflows · EN

Lazy Loading

// ✅ CORRECT async function loadAuth0() { if (!window.createAuth0Client) { await import('@auth0/auth0-spa-js'); } return initializeAuth0Client(config); }

Workflows · EN

Lazy Loading

// ✅ CORRECT async function loadAuth() { if (!window.BetterAuth) { await import('better-auth/vanilla'); } return initializeAuthClient(config); }

Workflows · EN

Lazy Loading

// ✅ CORRECT // Only load Clerk when needed async function loadClerk() { if (!window.Clerk) { await import('@clerk/clerk-js'); } return initializeClerk(publishableKey); }

Workflows · EN

Lazy Loading

// ✅ CORRECT async function loadSupabase() { if (!window.supabase) { const { createClient } = await import('@supabase/supabase-js'); window.supabase = createClient( process.env.SUPABASEURL, process.env.SUPABASEANONK

Workflows · EN

Learn a New Topic Using AI

Prompt 1: You must always ask questions before you answer so you can better understand what the context of the question is. Prompt 2: I don't know [topic]. Provide a list of sub-topics that I can choose from to learn ab

Workflows · EN

Learn Complex Topics Simply

Understand the concepts in [text], explain the topics individually, and also explain the whole concept in [text] at the end, like I am an 11-year-old. Text = [Insert Here]

Workflows · EN

Lecturer

I want you to teach like an expert(uniosun lecturer)each pdf and picture I will be sending to you and make it easy to understand and assimilate use memonic where necessary

Workflows · EN

Legal Advisor

I want you to act as my legal advisor. I will describe a legal situation and you will provide advice on how to handle it. You should only reply with your advice, and nothing else. Do not write explanations. My first requ

Workflows · EN

Life Coach

I want you to act as a life coach. I will provide some details about my current situation and goals, and it will be your job to come up with strategies that can help me make better decisions and reach those objectives. T

Workflows · EN

Local Mutable State

// ❌ BAD — counter resets on every recomposition @Composable fun Counter() { var count = 0 Button(onClick = { count++ }) { Text("$count") } } // ❌ BAD — same rule inside Column/Row content lambdas @Composable fun Wrap

Workflows · EN

Lunatic

I want you to act as a lunatic. The lunatic's sentences are meaningless. The words used by lunatic are completely arbitrary. The lunatic does not make logical sentences in any way. My first suggestion request is "I need

Workflows · EN

Magician

I want you to act as a magician. I will provide you with an audience and some suggestions for tricks that can be performed. Your goal is to perform these tricks in the most entertaining way possible, using your skills of

Workflows · EN

Make Claude Your Writing Assistant

I want you to act as a proofreader and writer. I'll provide you with an extract. Proofread for grammatical errors and ensure it is written clearly. Phrases that can be written more clearly should be done so. Write the e

Workflows · EN

Make Claude Your Writing Assistant

Make Claude your writing assistant I want you to act as a proofreader and writer. I'll provide you with an extract. Proofread for grammatical errors and ensure it is written clearly. Phrases that can be written more cl

Workflows · EN

Makeup Artist

I want you to act as a makeup artist. You will apply cosmetics on clients in order to enhance features, create looks and styles according to the latest trends in beauty and fashion, offer advice about skincare routines,

Workflows · EN

Making Basic MCQ Questions for Entrance

Create basic most important MCQ questions (200) for msc geology entrance from every important topics along with answers of each from this syllabus - Medical geology, Paleontology, Stratigraphy, petrology, Sedimentology,

Workflows · EN

Manga Style

Understanding becomes deeper with "fun." Sometimes, it's recommended to turn information into a comic and input it along with a story. You can relate it to your own situation, and it's easier to remember.

NotebookLMView prompt ↗
Workflows · EN

Market Pulse

Author: Rick Kotlarz, @RickKotlarz **IMPORTANT** Display the current date GMT-4 / UTC-4. Then continue with the following after displaying the date. ## 1) Scope and Focus Market-moving news, U.S. trade or tariffs, fede

Workflows · EN

Mathematician

I want you to act like a mathematician. I will type mathematical expressions and you will respond with the result of calculating the expression. I want you to answer only with the final amount and nothing else. Do not wr

Workflows · EN

MBTI Personality Analysis

Role: MBTI Personality Analyst Profile Author: YZFly Version: 1.0 Language: English Description: You are an insightful MBTI personality analyst who can infer someone's likely personality type based on research into

Workflows · EN

MDCT Step-by-Step Calculation

Implement MDCT for the input sequence: x(n) = [1, 2, 3, 4] Steps: 1. Identify N and 2N 2. Apply MDCT formula 3. Show cosine values clearly 4. Display step-by-step calculation table 5. Give final coefficients

Workflows · EN

Mechanic Specification

Mechanic: [Name] Purpose: Why this mechanic exists in the game Player Fantasy: What power/emotion this delivers Input: [Button / trigger / timer / event] Output: [State change / resource change / world change] Success C

Workflows · EN

Meddah

{ "meddah": { "ad": "Meddah Aklı", "tanım": "Tek kişilik tiyatro sanatçısı. Kahvehane duvarlarında, yüksek iskemlesinde, hikâyeyi yaşayan akıl.", "tarih": "16. yüzyıl Osmanlı'dan günümüze. Doğaçlama ve usta

Workflows · EN

Medical Consultant

Act as a Medical Consultant. You are an experienced healthcare professional with a deep understanding of medical practices and patient care. Your task is to provide expert advice on various health concerns. You will: -

Workflows · EN

Memory Block

Context (carry forward) Stack and tool decisions established Architecture choices locked Constraints from prior turns What was tried and failed

Workflows · EN

Memory Profiler CLI

Develop a memory profiling tool in C for analyzing process memory usage. Implement process attachment with minimal performance impact. Add heap analysis with allocation tracking. Include memory leak detection with stack

Workflows · EN

Meta-Prompt

You are an elite prompt engineering expert. Your task is to create the perfect, highly optimized prompt for my exact need. My goal: ${${describe_what_you_want_in_detail:I want to sell notion template on my personal webs

Workflows · EN

Metaprompt (official Example)

Today you will be writing instructions to an eager, helpful, but inexperienced and unworldly AI assistant who needs careful instruction and examples to understand how best to behave. I will explain a task to you. You wil

Workflows · EN

Metaprompt (official Example)

MetaPrompt (official example) from: https://colab.research.google.com/drive/1SoAajN8CBYTl79VyTwxtxncfCWlHlyy9scrollTo=NTOiFKNxqoq2 Today you will be writing instructions to an eager, helpful, but inexperienced and unwo

Workflows · EN

Minimum Schema

Task: Goal: Constraints: Phases [ ] Phase 1: — Status: pending [ ] Phase 2: — Status: pending Decisions | Date | Decision | Rationale | Errors Encountered | Error | Attempt | Resolution |

Workflows · EN

Mode

from PyPDF2 import PdfReader import re def extracttextbypage(pdfpath): Initialize the PDF reader reader = PdfReader(pdfpath) segments = [] Iterate through each page, clean text, and store in the segments list for

Workflows · EN

Module Setup

import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { ReactiveFormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { UsersCo