Free Applets

Find Your Idea

A guided question sequence.

Prompt for Scanning Security

Secure your code.

Precise Dimension

Core toolkit principles.

Marketing Channels

Find your audience.

Pre-build

Brain Dump

Unload all your thoughts.

Find Your Idea

A guided question sequence.

Choose Your Builder

Select the right vibe agent for your project.

Idea Refinery

Refine your concept with AI.

Pomodoro Timer

Focused work sessions.

UI Mockup to Prompt

Translate visuals to code.

Prompt for Production

DB Visualizer

Visualize your database schema.

Humanized Console Errors

Make errors understandable.

Expenses Tracker

Manage your project costs.

Cost Efficiency

Analyze monetary and emotional costs.

Brand Document

Define your project's identity.

Attitude

Mindset prompts for developers.

Scheduler

Organize your tasks.

User Story to Test Case

Generate user stories, test cases, and technical specs from a single idea.

Production

Fake DB Testing

Test without a real database.

Github Crash Course

Version control basics.

Performance Optimizations

Make your app faster.

Accessibility

Build for everyone.

Prompt for Scanning Security

Secure your code.

Open Source Libraries

Leverage community code.

Precise Dimension

Core toolkit principles.

PNG Optimizer

Shrink image file sizes.

Debug-Fu

Master the art of debugging.

Resources

Useful links and tools.

Open Source Social Media Management Tools

Manage your social presence.

Post-production

Marketing Prompts

Craft your message.

SEO

Optimize for search engines.

Marketing Channels

Find your audience.

Offering: Inventive Mockups (Free for Artists)

Create value propositions.

AI CRO Audit for Product Pages

Optimize conversion rates.

Workflow: AI as Conversion Expert for Ads

AI-powered ad optimization.

Real-Life Asset Workflow

Manage your creative assets.

Internationalization

Translate your app into multiple languages without hassle.

Legal

Generate legal document drafts for your website.

LLM SEO Ranking

Optimize your site for both traditional search engines and AI language models.

Hosting Options

Explore free and paid hosting platforms for your projects.

Content Gen Workshop

A zero-code prompt builder for generating comprehensive blog content packages.

Fake Database Testing

Use these prompts to generate and clear dummy data for testing purposes.

Create

Generate realistic dummy data in JSON format based on my specifications:

DATA TYPE: [user profiles / products / blog posts / transactions / etc]
QUANTITY: [number] items
FIELDS NEEDED: [list the fields you want, e.g., name, email, age, address, etc]

REQUIREMENTS:
- Output valid JSON array format only
- Make data realistic and varied (different names, realistic dates, varied numbers)
- For names: use diverse, international names
- For emails: use various domains (@gmail, @yahoo, @outlook, etc)
- For dates: use ISO format (YYYY-MM-DD) within the last 2 years
- For prices: use realistic ranges with 2 decimal places
- For text content: vary length and style
- For images: use placeholder URLs like https://placehold.co/600x400
- Include no markdown formatting, just raw JSON

EXAMPLE REQUEST:
"Generate 10 user profiles with: firstName, lastName, email, age (18-65), city, signupDate, isPremium (boolean), avatar (placeholder URL)"

OUTPUT FORMAT:
[
  {
    "field1": "value",
    "field2": "value"
  }
]

Now generate data for: [YOUR SPECIFICATION HERE]

Destroy

CLEAR ALL DUMMY/TEST DATA PROMPT:

I need to remove all test/dummy data from my application. Given the context provided [PASTE YOUR APP CODE/DATABASE SETUP HERE]:

1. Identify all locations where dummy data might be stored:
   - Database tables
   - localStorage
   - sessionStorage
   - JSON files
   - API endpoints with test data
   - State management stores

2. Generate code/commands to safely delete ALL test data:
   - SQL DELETE statements (with WHERE clauses to protect real data if mixed)
   - localStorage.clear() or specific key removal
   - API calls to delete endpoints
   - File deletion commands
   - Reset database to empty state

3. Provide both:
   - DESTRUCTIVE VERSION: Deletes everything (for pure test environments)
   - SAFE VERSION: Only deletes data matching dummy data patterns (e.g., emails ending in @example.com, names from dummy generator, dates in test range)

4. Include verification queries to:
   - Check what data exists before deletion
   - Confirm data was deleted after running commands
   - Count remaining records

5. Add rollback instructions in case of mistakes

FORMAT OUTPUT AS:
āš ļø BEFORE YOU RUN - Backup Check:
[Commands to verify what will be deleted]

šŸ—‘ļø DESTRUCTIVE DELETE (Use only in test/dev):
[Commands to delete everything]

šŸ›”ļø SAFE DELETE (Targets only dummy data patterns):
[Commands to delete only test data]

āœ… VERIFICATION:
[Commands to confirm deletion worked]

šŸ”„ ROLLBACK (if you made a mistake):
[Commands to restore, if backups exist]

My application uses: [DATABASE TYPE - e.g., "localStorage only", "PostgreSQL", "MongoDB", "Firebase", "Supabase", etc.]

Generate the cleanup code for my specific setup.