Storage Hook
import { useState } from 'react'; import { ref, uploadBytes, getDownloadURL, deleteObject } from 'firebase/storage'; import { storage } from '../firebase'; export function useStorage(path: string) { const [progress, se
Discover, adapt and reuse 23,385 prompts. Copy, adapt, and create.
929 English prompts · Page 9 of 10
import { useState } from 'react'; import { ref, uploadBytes, getDownloadURL, deleteObject } from 'firebase/storage'; import { storage } from '../firebase'; export function useStorage(path: string) { const [progress, se
I want you to act as a storyteller. You will come up with entertaining stories that are engaging, imaginative and captivating for the audience. It can be fairy tales, educational stories or any other type of stories whic
Act as a Stripe Payment Setup Assistant. You are an expert in configuring Stripe payment options for various business needs. Your task is to set up a payment process that allows customization based on user input. You wi
--- name: structural-fusion-the-thriller-parable description: A JSON structured prompt for writing a series that blends thriller and parable genres using a unique double narrative structure. --- # Structural Fusion: The
Give me the section names to include in the blog post called [title] to make it more interesting and engaging. Title = [Insert Here]
Explain the cultural significance of ${subculture} and its impact on society.
a transparent crystal portal floating in the middle of clouds in the sky, with a ${subject}, sitting inside meditating with golden lights coming up from all their chakras, 2 other light beams are traversing their body on
// In your settings or subscription page const handleUpgrade = async () = { const response = await fetch("/api/stripe/create-checkout", { method: "POST", headers: { "Content-Type": "application/json", Authorization:
Write 3-5 brief success stories or testimonials from users who have benefited from [project name], showing real-world impact.
Suggest ideas for pricing tiers on GitHub Sponsors, including unique benefits at each level for individuals and companies.
Summarize this PDF document in a bullet point outline. Make a markdown table of study questions and answers.
Summarize this PDF document (official example) upload your PDF document then use the following prompt: Summarize this PDF document in a bullet point outline. Make a markdown table of study questions and answers.
{ "colors": { "color_temperature": "neutral", "contrast_level": "high", "dominant_palette": [ "blue", "red", "green", "yellow", "brown" ] }, "composition": { "camer
import { defineAsyncComponent } from 'vue' const AsyncFeature = defineAsyncComponent(() = import('./AsyncFeature.vue') )
CHANGE THE OLD MISTY LOADER TO THE NEWEST LOADER THAT IS ALREADY IN THE NEW SOURCE PATH WITH THE SAME FONT AND THE SAME THEME AND THE SAME SIZE AND JUST CHANGE THE LOADER TO ENTER THE KEYAUTH, DON'T CHANGE ANYTHING ELSE
I want you to act as a synonyms provider. I will tell you a word, and you will reply to me with a list of synonym alternatives according to my prompt. Provide a max of 10 synonyms per prompt. If I want more synonyms of t
I want you to act as a Talent Coach for interviews. I will give you a job title and you'll suggest what should appear in a curriculum related to that title, as well as some questions the candidate should be able to answe
import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { ReactQueryDevtools } from '@tanstack/react-query-devtools' const queryClient = new QueryClient({ defaultOptions: { queries: { staleTim
I want you to act as a tech reviewer. I will give you the name of a new piece of technology and you will provide me with an in-depth review - including pros, cons, features, and comparisons to other technologies on the m
I want you to act as a tech troubleshooter. I'll describe issues I'm facing with my devices, software, or any tech-related problem, and you'll provide potential solutions or steps to diagnose the issue further. I want yo
I want you to act as a Technology Transferer, I will provide resume bullet points and you will map each bullet point from one technology to a different technology. I want you to only reply with the mapped bullet points i
Write a personal story about why I started contributing to open source, what drives me, and how sponsorship helps me continue this journey in [field/technology].
You are an expert hiring manager. You know Claude and its strengths (comprehension and generation of large texts, quick and efficient processing, ability to learn). Create an interview procedure that would test the [sk
Test Claude skills in Interviews You are an expert hiring manager. You know Claude and its strengths (comprehension and generation of large texts, quick and efficient processing, ability to learn). Create an interview
// ✅ CORRECT describe('Authentication', () = { describe('initialization', () = { it('should initialize Clerk with valid key', async () = { // Test implementation }); it('should throw error with invalid key', async
Act as a Text Summarizer. You are an expert in distilling complex texts into concise summaries. Your task is to extract the core essence of the provided text, highlighting key points and themes. You will: - Identify and
ATTEMPT 1 — Diagnose & fix Read the error carefully. Identify root cause from message + stack. Apply a targeted fix. Log to Errors Encountered. ATTEMPT 2 — Alternative approach If the same error returns, switch metho
+-------------------------------------------------+ | | | +----------+ +----------+ +----------+ | | | 1. RECON |---+| 2. MAP |---+| 3. FIND | | | +----------+ +-----+----+ +-----+-----+ | | ^ | | | | | v v | | | +------
Prompt: "Task: Based exclusively on the uploaded materials, engineer a comprehensive [Insert Number]-week curriculum map. Constraints: Structure the learning journey using Bloom's Taxonomy, moving learners from basic r
[00:00 - 00:2.0] Intense boxing exchange mid-ring, Red Trunks vs Blue Trunks, smoky arena atmosphere with high-contrast backlighting, sweat glistening under spotlights. [Audio: Canvas footwork scuffs, leather-on-leather
🧠Smart Dev Task: 1️⃣Fix program🔧, provide bug-free🐞, well-commented code📝. 2️⃣Write detailed📏 code, implement architecture🏛️. Start with core classes🔠, functions🔢, methods🔣, brief comments🖊️. 3️⃣Output each
Theme="${theme}" Style="the most interesting fusion of 3 or more art styles to best capture the theme"
I want you to act as a Tic-Tac-Toe game. I will make the moves and you will update the game board to reflect my moves and determine if there is a winner or a tie. Use X for my moves and O for the computer's moves. Do not
Explain how sponsorship would allow me to dedicate [X hours/days] per week/month to open source, comparing current volunteer time vs. potential sponsored time.
// ✅ CORRECT async function getAccessToken() { try { return await auth0Client.getTokenSilently(); } catch (error) { handleTokenError(error); throw error; } } // ❌ INCORRECT function getAccessToken() { const token
// ✅ CORRECT async function getAccessToken() { try { return await auth.getToken(); } catch (error) { handleTokenError(error); throw error; } } // ❌ INCORRECT function getAccessToken() { const token = localStorage
const { getToken, refreshToken } = useAuth() const apiClient = axios.create({ baseURL: '/api', headers: { Authorization: Bearer ${getToken()} } }) apiClient.interceptors.response.use( response = response, async e
// Get access token async function getAccessToken() { try { const token = await auth0Client.getTokenSilently(); return token; } catch (error) { console.error('Token error:', error); throw error; } } // Make authe
const getAccessToken = async () = { try { return await auth0Client.getTokenSilently(); } catch (error) { console.error('Error getting access token:', error); throw error; } };
const refreshToken = async () = { try { await auth0Client.checkSession(); } catch (error) { console.error('Error refreshing token:', error); throw error; } };
// Get access token async function getAccessToken() { try { const token = await auth.getToken(); return token; } catch (error) { console.error('Token error:', error); throw error; } } // Refresh token async funct
Create a 2D classic cartoon style video of Tom the cat and Jerry the mouse in a 4-scene chase through a cozy kitchen. Each scene is 8 seconds long, featuring: 1. Scene 1: Jerry runs with cheese, Tom chases him, slipping
Act as a Trade Contract Review Expert. Your role is to meticulously analyze trade contracts for ${industry:global trade} to ensure they meet legal and business standards. Your task is to: - Identify and highlight key ter
Translate [ad copy] into [language]. Understand the meaning of [ad copy] and find relevant words and native phrases in [language] that are best suited for persuading customers. Show what you've changed/added in English
Turkish Cats hanging out nearby of Galata Tower, vertical
There are 4 types of primary writing styles: 1.Essay Writing, 2. Descriptive Writing, 3.Narrative Writing, 4. Persuasive Writing. Understand the context in [text] and convert [text] into [writing style]. Use the techniq
// lib/client.ts import { createClient } from 'better-auth' import { twoFactor } from 'better-auth/plugins' export const auth = createClient({ plugins: [ twoFactor({ issuer: 'Your App Name', algorithm: 'sha256', di
const model = defineModel () const count = defineModel ('count', { default: 0 })
ULTRA BRIEF: Answer in ONE sentence. Core information only. No elaboration.
Ultra-realistic 6-second cinematic underwater video: A sleek predator fish darts through a vibrant coral reef, scattering a school of colorful tropical fish. The camera follows from a low FPV angle just behind the predat
# **🔥 Universal Lead & Candidate Outreach Generator** ### *AI Prompt for Automated Message Creation from LinkedIn JSON + PDF Offers* --- ## **🚀 Global Instruction for the Chatbot** You are an AI assistant speciali
Generate ideas on how to use email marketing for [business] to retain existing customers and to encourage repeat purchases from [product line]. Business = [Insert Here] Product line = [Insert Here]
import { AuthService } from './services/auth'; // Registration try { await AuthService.register('[email protected]', 'password123', 'John Doe'); console.log('Registration successful'); } catch (error) { console.error(
I need an Instagram story idea that will provide a sneak peek of upcoming products or services and create a sense of anticipation and excitement for with a clear and compelling call to action. Targeted audience = [descr
Write an AIDA for the following product: Product: [describe your product]
Use the 'Awareness-Comprehension-Conviction-Action' framework to create an email marketing campaign. Make [ideal customer persona] understand [problem] that they face. Create the desired conviction in the reader to use [
[describe the situation] [describe the place you want help with] How do I make this possible? Give me simple step-by step instructions.
I need you to help me create a detailed business model canvas for a [business details] company. Organize your answers in a table that reproduces the original format used in consulting. I want you to write detailed answer
Use Claude to create a business model I need you to help me create a detailed business model canvas for a [business details] company. Organize your answers in a table that reproduces the original format used in consulti
Give me a few CTA (call to action) ideas for my new product. Make sure they are eye catching, short and friendly. Must emphasize "value" over "action". Product: [describe your product]
I want you to act as my social media manager for my [business details and what you usually post about]. Give me at least 5 examples of an interesting "About" section for my Linkedln profile, write in a polite and friendl
Use Claude to generate "about" Section I want you to act as my social media manager for my [business details and what you usually post about]. Give me at least 5 examples of an interesting "About" section for my Linkedl
Develop a Python script that generates [enter your idea]. The script should be well-documented, modular, and handle potential errors or edge cases.
hey Claude. hope you're doing well today. goal: [your goal]. desired output from you: [how you want your output].
Write a marketing campaign outline that uses [emotional appeal] to persuade [ideal customers] to take action and purchase [product/service]. For every section in the campaign give step-by-step instructions. Emotional ap
Create a marketing campaign outline that uses the 'Star-Story-Solution' framework that introduces the main character of a story related to [product/service] and keeps the reader hooked. End the story with an explanation
Use SVG to draw a dynamic, interactive demonstration of how Tesla FSD recognizes roads.
Use the computer's front-facing camera. Use the mediapipe library to capture facial landmarks. Use threejs to apply a LASER EYE effect to the face captured by the camera, based on the real-time 3D landmark information pr
const login = async () = { await auth0Client.loginWithRedirect({ appState: { returnTo: window.location.pathname } }); };
const { signOut } = useAuth() const handleSignOut = async () = { await signOut() navigate('/') }
const { user, isLoading } = useAuth() if (isLoading) return return user ? :
Review your above recommendations. Tell me why you were wrong and if any recommendations were overlooked or incorrectly added?
// ✅ CORRECT const auth0Client = await initializeAuth0Client(); const currentUser = await auth0Client.getUser(); const isAuthenticated = await auth0Client.isAuthenticated(); // ❌ INCORRECT const client = await initializ
// ✅ CORRECT const authClient = await initializeAuthClient(); const currentUser = await authClient.getUser(); const isAuthenticated = Boolean(currentUser); // ❌ INCORRECT const client = await initializeAuthClient(); //
// ✅ CORRECT const clerkInstance = await initializeClerk(); const currentUser = clerk.user; const isAuthenticated = Boolean(clerk.user); // ❌ INCORRECT const ci = await initializeClerk(); // Too short const auth = clerk
// ✅ CORRECT const supabaseClient = initializeSupabaseClient(); const currentUser = await supabaseClient.auth.getUser(); const isAuthenticated = Boolean(currentUser); // ❌ INCORRECT const client = initializeSupabaseClie
extract all information in this chat verbatim Capture every detail from start to finish, ensuring the notes read like a comprehensive plan or proposal, with a focus on the user's intentions and actions.
A botanical diagram of a ${subject}, illustrated in the style of vintage scientific journals. Accented with natural tones and detailed cross-sections, it’s labeled with handwritten annotations in sepia ink, evoking a sch
I want you to act as a virtual doctor. I will describe my symptoms and you will provide a diagnosis and treatment plan. You should only reply with your diagnosis and treatment plan, and nothing else. Do not write explana
VITECLERKPUBLISHABLEKEY=your-publishable-key
Act as a Wildlife Narrator. You are an expert in describing the behaviors and environments of animals in the wild. Your task is to create a vivid narrative of a wary bear navigating a hostile, overgrown woodland filled w
--- name: web-application description: Optimize the prompt for an advanced AI web application builder to develop a fully functional ${applicationType:travel booking} web application. The application should be ${environme
I want you to act as a text based web browser browsing an imaginary internet. You should only reply with the contents of the page, nothing else. I will enter a url and you will return the contents of this webpage on the
I want you to act as a web design consultant. I will provide details about an organization that needs assistance designing or redesigning a website. Your role is to analyze these details and recommend the most suitable i
I want you to act as a web design consultant. I will provide you with details related to an organization needing assistance designing or redeveloping their website, and your role is to suggest the most suitable interface
export const config = { api: { bodyParser: false }, }; export async function POST(request) { // Verify webhook signature const sig = headers().get("stripe-signature"); const event = stripe.webhooks.constructEvent(bo
// Backend endpoint to handle Clerk webhooks async function handleWebhook(request) { const WEBHOOKSECRET = process.env.CLERKWEBHOOKSECRET; try { const payload = await verifyWebhookSignature( request, WEBHOOKSECRET
WebSwarm Plan: Structure Map Node Definitions Node : Mode: Evidence In: Children: (if DELEGATE) Action: (if EXECUTE) Expected Evidence Out: Shared Experience Aggregation Rules
Steps to build an AI startup by making something people want: { "style": { "name": "Whiteboard Sketch Diagram", "description": "Transform any concept into an elegant hand-drawn diagram. Clean, minimal, archite
An online PDF editor is no longer just a convenience—it is a necessity for efficient digital document management. By offering flexibility, powerful features, and easy access from any device, these tools help users save t
I want you to act as a Wikipedia page. I will give you the name of a topic, and you will provide a summary of that topic in the format of a Wikipedia page. Your summary should be informative and factual, covering the mos
Write a dynamic webpage that uses a cool point-cloud style to explain special relativity.
No prompts found. Try a broader search or another language.