🏠 Home
Benchmark Hub
📊 All Benchmarks 🦖 Dinosaur v1 🦖 Dinosaur v2 ✅ To-Do List Applications 🎨 Creative Free Pages 🎯 FSACB - Ultimate Showcase 🌍 Translation Benchmark
Models
🏆 Top 10 Models 🆓 Free Models 📋 All Models ⚙️ Kilo Code
Resources
💬 Prompts Library 📖 AI Glossary 🔗 Useful Links
← Back to categories
Easy

Conversations of Things

#personification #dialogue #imagination

Write a dialogue between two inanimate objects

Write a creative dialogue between two inanimate objects in a room. Perhaps a lamp discussing its purpose with a mirror, or a refrigerator complaining to a toaster. What would these objects talk about? How do they view the humans who use them?
hard

Create a Language

#language #world-building #creativity

Develop basic elements of a fictional language

Create the foundation of a fictional language. Include basic grammar rules, at least 20 words with their meanings, and a simple sentence structure. Consider how the culture of the speakers might influence their language. Write a short paragraph in English explaining your language's unique features.
medium

Describe the Indescribable

#sensory description #creative writing #metaphor

Describe a color to someone who has never seen it

Choose a color and write a vivid description of it for someone who has been blind since birth. Use metaphors, emotions, and other sensory details (taste, touch, smell, sound) to convey the essence of this color without using visual references.
medium

New Mythology

#mythology #storytelling #folklore

Create a modern myth or legend

Write a new myth or legend that could explain a natural phenomenon, technological advancement, or social custom of today. Include elements commonly found in traditional myths (gods or supernatural beings, heroes, lessons) but set it in our modern world.
easy

Through Pet Eyes

#perspective #animal behavior #storytelling

Write a story from a household pet's perspective

Write a short story from the perspective of a household pet (cat, dog, bird, etc.) observing their human family. How does the pet interpret human activities, emotions, and routines? What do humans look like through the pet's eyes?
hard

Tomorrow's World

#world-building #future #speculative fiction

Create a detailed future society with unique norms and customs

Design a future society set 100 years from now. Describe at least five unique social norms, values, or customs that differ significantly from today. How has technology evolved? What are the common daily rituals? Write about a typical day in this society through the eyes of a resident.
medium

One Room Stories

#constraint writing #suspense #character development

Write a story that takes place entirely in one room

Write a short story that takes place entirely in a single room. How do you create tension, character development, and a compelling narrative when the setting never changes? Focus on dialogue, internal monologue, and subtle changes in the room to tell your story.
medium

Festival of Wonders

#culture #traditions #world-building

Create a fictional festival with unique traditions and history

Design a completely fictional festival that might exist in another culture or world. Describe its origins, how it's celebrated, special foods or activities associated with it, and what it means to the people who observe it. Write about someone experiencing this festival for the first time.
Advanced

Syntactic Ambiguity Resolution

#linguistics #syntax #logic #analysis

Analyzing complex sentences with multiple syntactic interpretations to determine the most logical meaning based on context.

Analyze the following sentence for syntactic ambiguity: 'I saw the man with the telescope.' Provide three distinct syntactic trees representing the different possible meanings. For each interpretation, explain the grammatical role of the prepositional phrase 'with the telescope' and rewrite the sentence to remove the ambiguity while retaining each specific meaning.
Advanced

Cobol to Python Logic Migration

#programming #refactoring #logic #technical

Translating legacy business logic from COBOL to modern Python while preserving exact procedural flow and precision.

Translate the provided COBOL paragraph into Python code. Ensure that the logic maintains strict precision regarding fixed-point decimal arithmetic, replicating the behavior of COBOL's COMPUTE and MOVE verbs exactly without using floating-point numbers. Add docstrings explaining how the Python control flow maps to the original COBOL PERFORM and IF statements.
Advanced

Socratic Tutoring Implementation

#education #pedagogy #reasoning #dialogue

Generating a sequence of probing questions to guide a learner to a specific conclusion without direct instruction.

Act as a Socratic tutor. The learner wants to understand the concept of 'Recursion' but is confusing it with 'Iteration'. Do not define the terms directly. Instead, generate a sequence of 5 probing questions that force the learner to identify the differences in how the call stack handles memory versus a loop control structure. Guide them to articulate the definition of recursion themselves.
Advanced

Complex Pattern Matching Engine

#regex #pattern-matching #validation #technical

Constructing a highly specific regular expression to validate multi-part data strings with conditional formatting.

Construct a single Regular Expression that validates a custom product code string. The string must start with 3 uppercase letters, followed by a hyphen. The next segment must be a numeric digit between 1 and 5. If the digit is 1, the following segment must be exactly 4 lowercase letters. If the digit is greater than 1, the following segment must be 6 alphanumeric characters. The string must end with an optional checksum digit. Explain the back-references and lookaheads used.
Advanced

Historical Style Mimicry

#creative-writing #literature #style-transfer #history

Rewriting a technical concept in the voice of a specific literary era or author.

Rewrite the following technical explanation of 'How a Blockchain Works' in the distinct style of a Charles Dickens novel. Use Victorian-era sentence structures, characteristic vocabulary, and periodic sentence formation. Maintain factual accuracy regarding the hashing and distributed ledger concepts while adopting the persona and tone of a 19th-century narrator.
Advanced

Informal Logic Audit

#logic #critical-thinking #argumentation #philosophy

Identifying and dissecting logical fallacies within a persuasive text to reconstruct a valid argument.

Analyze the provided opinion editorial for informal logical fallacies. Identify at least three specific fallacies by name (e.g., Straw Man, Tu Quoque, Slippery Slope). For each identified fallacy, quote the specific text, explain why it constitutes the fallacy, and then rewrite that section of the argument to form a logically sound, valid syllogism that achieves the original intent.
Advanced

Unstructured Text Normalization

#nlp #data-processing #parsing #structure

Extracting and standardizing entities from a raw, noisy text block into a structured JSON format.

Process the following raw text block containing medical patient notes. Extract all instances of medications, dosages, and dates. Normalize the dates to ISO 8601 format (YYYY-MM-DD) and the dosages to standard metric units (mg, ml). Output the result strictly as a JSON object with keys: 'patient_id', 'medications' (array of objects with 'name', 'dosage', 'frequency'), and 'last_visit_date'. Omit any confidential identifiers not explicitly requested.