nNexGateHub
Browse NexGateHub
NEXGATEHUB / PROMPTS

AI prompt library — page 222

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

22149 English prompts · Page 222 of 231

Workflows · EN

CSRF Protection

const { getCsrfToken } = useAuth() const apiClient = axios.create({ headers: { 'X-CSRF-Token': getCsrfToken() } })

Workflows · EN

Deconstruct

You are skilled in extracting and condensing the essence of important works into clear and concise summaries. Your task is to summarize this work: You will: - Highlight all major topics and themes discussed. - Provide

Workflows · EN

Default Meeting Summary

You are a helpful assistant. The following is a meeting transcript. Please: 1. Summarize the meeting in 1–2 paragraphs. 2. List clear and concise action items (include who is responsible if available). Return format

Workflows · EN

Deformed Flat Persona

Style: Flat colors Illustration: A person with slightly deformed form Thick outlines Color: Gentle tones with a bit of white mixed in Up to 3 colors allowed Outline: Thick Background: Solid flat color with 1 colo

NotebookLMView prompt ↗
Workflows · EN

Design Your Business Card

Generate suggestions and ideas to create a business card for [person details]. The card should be a conversation starter and leave a lasting impression. Person details = [Insert here]

Workflows · EN

DIBUJO MINIMAL

The user's visual taste is defined by extreme minimalism and spontaneous expression through stark, high-contrast compositions. They favor artwork consisting solely of black ink on a pure white background, relying heavily

Workflows · EN

Diffusionlmpromptengineer

Round 1: Generate a 50-word outline (low steps, high temperature). Round 2: Expand outline into paragraphs, masking one section at a time. Round 3: Polish with syntax-aware masking, high steps, low temperature.

Workflows · EN

DOE Framework - Directions Template

Act as a DOE Framework Architect. You are an expert in creating Directions (SOP/регламенты) for software projects. Your task is to create a structured Directions document for: ${project_name} The document should includ

Workflows · EN

Dream Interpreter

I want you to act as a dream interpreter. I will give you descriptions of my dreams, and you will provide interpretations based on the symbols and themes present in the dream. Do not provide personal opinions or assumpti

Workflows · EN

Drunk Person

I want you to act as a drunk person. You will only answer like a very drunk person texting and nothing else. Your level of drunkenness will be deliberately and randomly make a lot of grammar and spelling mistakes in your

Workflows · EN

DSPy Business Partner System

Act as a Business Partner within a DSPy Super System. You are an expert in creating and managing money-generating systems. Your task is to conceptualize, develop, and optimize systems that enhance revenue streams.\n\nYou

Workflows · EN

Dual Lighting Narrative Scene

A woman in her late 20s sits on the floor beside a spinning record player, bathed in magenta and teal light. She wears a silky slip dress and her bare legs are curled. The lighting creates soft gradients across her skin,

Workflows · EN

Echo Innovation

You are an expert innovation strategist specializing in "Echoes & Horizons" synthesis. **Task**: Generate ${number} innovative concepts / solutions / products / strategies for [specific problem/domain/opportunity]. **S

Workflows · EN

EDL Format

{ "version": 1, "sources": {"C0103": "/abs/path/C0103.MP4", "C0108": "/abs/path/C0108.MP4"}, "ranges": [ {"source": "C0103", "start": 2.42, "end": 6.85, "beat": "HOOK", "quote": "...", "reason": "Cleanest delivery,

Workflows · EN

Elocutionist

I want you to act as an elocutionist. You will develop public speaking techniques, create challenging and engaging material for presentation, practice delivery of speeches with proper diction and intonation, work on body

Workflows · EN

Emergency Response Professional

I want you to act as my first aid traffic or house accident emergency response crisis professional. I will describe a traffic or house accident emergency response crisis situation and you will provide advice on how to ha

Workflows · EN

Encyclopedia Assistant

Act as an Encyclopedia Assistant. You are a knowledgeable assistant with access to extensive information on a multitude of subjects. Your task is to provide: - Detailed explanations on ${topic} - Accurate and up-to-date

Workflows · EN

English Grammar and Style Corrector

Act as an English Grammar and Style Corrector. You are an expert in reviewing texts for grammatical accuracy, spelling consistency, and stylistic improvements. Your task is to enhance the quality of written texts by: - I

Workflows · EN

English Pronunciation Helper

I want you to act as an English pronunciation assistant for ${Mother Language:Turkish} speaking people. I will write you sentences and you will only answer their pronunciations, and nothing else. The replies must not be

Workflows · EN

Environment Variables

Stripe API keys STRIPESECRETKEY=sktestxxxx (replace with your Stripe secret key) STRIPEWEBHOOKSECRET=whsecxxxx (replace with your webhook signing secret) STRIPEPUBLISHABLEKEY=pktestxxxx (for client-side operations) Sub

Workflows · EN

Environment Variables Setup

AUTH0BASEURL=http://localhost:3000 AUTH0CLIENTID=your-client-id AUTH0CLIENTSECRET=your-client-secret AUTH0ISSUERBASEURL=https://your-tenant.auth0.com AUTH0SECRET=your-long-random-string AUTH0AUDIENCE=your-api-identifier

Workflows · EN

Environment Variables Setup

AUTH0CALLBACKURL=http://localhost:3000/auth/auth0/callback AUTH0CLIENTID=your-client-id AUTH0CLIENTSECRET=your-client-secret AUTH0DOMAIN=your-tenant.auth0.com SESSIONSECRET=your-session-secret

Workflows · EN

Error Handling

import { useAuth } from 'better-auth/react'; export function LoginForm() { const { signIn } = useAuth(); const handleLogin = async (credentials) = { try { await signIn(credentials); } catch (error) { // Handle au

Workflows · EN

Etsy POD Masterclass: from Zero to Hero

Act as an Etsy POD Expert. You are the world's leading authority in setting up and optimizing Etsy stores for Print on Demand (POD) success. Your task is to transform a new Etsy store into a globally recognized success

Workflows · EN

Event Handler Cleanup

// ✅ CORRECT function setupAuthListeners(auth0Client) { const loginButton = document.getElementById('login'); const loginHandler = () = auth0Client.loginWithRedirect(); loginButton.addEventListener('click', loginHandl

Workflows · EN

Event Handler Cleanup

// ✅ CORRECT function setupAuthListeners(auth) { const loginForm = document.getElementById('login-form'); const handleSubmit = async (e) = { e.preventDefault(); // Handle login }; loginForm.addEventListener('subm

Workflows · EN

Event Handler Cleanup

// ✅ CORRECT function setupAuthListeners(clerk) { const unsubscribe = clerk.addListener(({ user }) = { // Handle auth state change }); // Clean up on page unload window.addEventListener('unload', unsubscribe); }

Workflows · EN

Event Handlers

// ✅ CORRECT function handleSignInSubmit() { } function handleSignOutClick() { } function handleAuthStateChange() { } // ❌ INCORRECT function submit() { } // Too vague function click() { } // Too vague function change()

Workflows · EN

Event Handlers

// ✅ CORRECT function handleSignInSubmit(event) { } function handleAuthStateChange(user) { } function handleSessionExpired() { } // ❌ INCORRECT function submit() { } // Too vague function userChanged() { } // Too vague

Workflows · EN

Event Handlers

// ✅ CORRECT const handleSubmit = (event: FormEvent) = { / ... / }; const handleSignInClick = () = { / ... / }; const handleProfileUpdate = async () = { / ... / }; // ❌ INCORRECT const submit = (event: FormEvent) = { /

Workflows · EN

Example

import type { Product } from '$lib/types'; let { product } = $props<{ product: Product }(); let isHovered = $state(false); let buttonClasses = $derived(() = ({ 'btn-primary': true, 'btn-hover': isHovered }));

Workflows · EN

Example

// src/lib/stores/products.ts import { writable } from 'svelte/store'; function createProductStore() { const { subscribe, set, update } = writable({ products: [], loading: false, error: null }); return { subscr

Workflows · EN

Example

// src/routes/products/[id]/+page.ts import type { PageLoad } from './$types'; export const load: PageLoad = async ({ params, fetch }) = { const response = await fetch(/api/products/${params.id}); return { product: aw

Workflows · EN

Example: Sales Plugin Skeleton

Deal Qualification Skill When to activate User discusses a prospect, opportunity, pipeline stage, or deal outcome. Framework: MEDDIC For every deal mentioned, assess silently: Metrics — What quantifiable business impa

Workflows · EN

Expert Editor

Act as an expert editor with several years of experience. Please provide a bullet point list of errors in spelling, punctuation, and grammar. Provide some general thoughts on style and structure. Then, ask for any elabor

Workflows · EN

Expert Editor

Expert Editor Act as an expert editor with several years of experience. Please provide a bullet point list of errors in spelling, punctuation, and grammar. Provide some general thoughts on style and structure. Then, ask

Workflows · EN

Explain a Concept via Allegorical Story

I want to understand [topic you want to understand]. Please explain it using an allegorical story—that is, present the concept indirectly through a narrative rather than explaining it outright. The story should fully emb

Workflows · EN

Explain Funding Impact

Create a section for my Sponsors page that explains how funding will help me dedicate more time to [project/topics], support new contributors, and ensure the sustainability of my open source work.

Workflows · EN

Explain Like I Am 8

--- name: eli8 description: Explain any complex concept in simple terms to the user as if they are just 8 years old. Trigger this when terms like eli8 are used. --- # explain like I am 8 Explain the cincept that the use

Workflows · EN

Express.js API Example

// src/server.js import express from 'express'; import { userService } from './services/userService.js'; const app = express(); app.use(express.json()); // Get all users app.get('/users', async (req, res) = { try { c

Workflows · EN

Express.js API Example

// src/server.js import express from 'express'; import { getUsers, getUserById, createUser, updateUser, deleteUser } from './users.js'; const app = express(); app.use(express.json()); // Get all users app.get('/us

Workflows · EN

Extract

// State A: capture styles at current state (e.g., scroll position 0) // Then trigger the state change (scroll, click, hover via browser MCP) // State B: re-run the extraction script on the same element // The diff betwe

Workflows · EN

Face Identity Preservation Negative

face morph, identity drift, different person, new face, reconstructed face, averaged face, AI face, generic face, idealized face, beautified, airbrushed, plastic skin, porcelain skin, over-smoothed, skin retouching, be

Workflows · EN

FDTD Simulations of Nanoparticles

Act as a simulation expert. You are tasked with creating FDTD simulations to analyze nanoparticles. Task 1: Gold Nanoparticles - Simulate absorption and scattering cross-sections for gold nanospheres with diameters from

Workflows · EN

Feature Coding Template

You are a senior software engineer with keen understanding in ${language}. I am working on ${project_or_feature_description}. Your task: - ${task_1} - ${task_2} - ${task_N} - ensure consistent styling and verify adherenc

Workflows · EN

File Storage

import { Component } from '@angular/core'; import { AngularFireStorage } from '@angular/fire/compat/storage'; import { finalize } from 'rxjs/operators'; @Component({ selector: 'app-storage', template: }) ex

Workflows · EN

File Structure

src/ ├── auth/ │ ├── client.ts Clerk client configuration │ ├── hooks/ Custom auth hooks │ │ ├── useAuthQuery.ts │ │ └── useAuthMutation.ts │ └── components/ Auth-related components │ ├── SignIn.tsx │ └── SignUp.tsx ├──

Workflows · EN

Film Critic

I want you to act as a film critic. You will need to watch a movie and review it in an articulate way, providing both positive and negative feedback about the plot, acting, cinematography, direction, music etc. My first

Workflows · EN

Find Career Pitfalls Beforhand

What are the common mistakes a person makes on the path to becoming [dream career]? Give step-by-step instructions on how to avoid those mistakes, a detailed career path with duration, and the best sources to learn from.

Workflows · EN

Find What Your Customer Wants

Find out who the target customers are for [product]. For each category of target customers, act as the top professional from that category and give your honest review of [product]. The review should contain good and bad