#meeting
#notes
#organization
Convert raw meeting notes into a structured list of action items.
Review the following raw notes from a team meeting and extract a list of concrete action items. Assign a hypothetical owner and a due date to each item based on the context. Notes: [Insert meeting notes here]
#strategy
#business
#analysis
Generate a SWOT analysis for a specific business scenario.
Generate a SWOT analysis (Strengths, Weaknesses, Opportunities, Threats) for a small independent bookstore trying to compete with large online retailers. Focus on local community engagement and the in-store experience.
#storytelling
#perspective
#character-study
Write a short scene from the perspective of a villain who genuinely believes they are the hero saving the world from the protagonist.
Write a narrative scene (300-500 words) from the first-person perspective of a traditional antagonist. However, frame their internal monologue and motivations so that they view themselves as the savior. Describe the 'hero' not as a brave soul, but as a chaotic threat to order or a dangerous delusionist. Focus on the sincerity of the villain's conviction to highlight how good and evil are often matters of viewpoint.
#poetry
#imagery
#metaphor
Compose a poem describing a natural forest using only imagery related to heavy machinery, factories, and industrial production.
Create a poem of at least 20 lines that describes a walk through a forest. You are strictly forbidden from using naturalistic terms (e.g., leaves, branches, sun, birds). Instead, use industrial and mechanical metaphors (e.g., rusted pistons, conveyor belts, grinding gears, exhaust) to depict the life and movement of the woods. The goal is to make the reader see nature through a cybernetic or steampunk lens without explicitly stating the setting is a machine.
#fantasy
#magic-system
#world-building
Design a magic system where spells are fueled by specific emotions, creating an economy based on harvesting and trading feelings.
Outline a magic system for a fantasy world where magic requires the consumption of specific intense emotions to function. Describe the societal structure that has formed around this need. Address the following points: 1) Which emotions are the most valuable and why? 2) How do 'mages' or harvesters extract these feelings from the populace? 3) Describe three specific spells, the emotion required to cast them, and the physical toll it takes on the user.
#screenwriting
#dialogue
#subtext
Write a script scene between a breaking-up couple who are arguing only about which boxes to use, while the subtext conveys the end of their relationship.
Write a standard screenplay format scene involving two characters, Alex and Sam, who are packing up a shared apartment. They are in the middle of a breakup. The constraint: They must not mention their relationship, the breakup, or their feelings directly. They must only argue about mundane objects—tapes, box sizes, and whose item is whose. Use the objects and the rhythm of their packing dialogue to convey the sadness, anger, and finality of their separation.
#sci-fi
#noir
#flash-fiction
Write a flash fiction story opening that blends the gritty tone of 1940s noir detective fiction with a high-tech Martian colony setting.
Write the opening 250 words of a detective story set in a domed city on Mars. The tone must be strictly 1940s hardboiled noir (cynical voice, femme fatale, rain/smog), but the setting is high-tech sci-fi. Blend the anachronisms seamlessly. Instead of a rainy street in New York, it's a rusty corridor in Sector 7. Instead of a cigarette, maybe it's a vape or a glowing stim-stick. Focus on sensory details that merge the two genres.
#memoir
#sensory-writing
#creative-non-fiction
Write a personal essay about a childhood memory, but you are restricted from using visual descriptions. Rely only on smell, taste, touch, and sound.
Recall a specific, vivid memory from your childhood. Write a 300-word descriptive essay about this memory. The constraint: You cannot describe what anything looked like. You cannot use colors, shapes, or visual references. Focus entirely on the other senses: the smell of the air, the texture of surfaces, the background noises, and the specific tastes associated with the event. Paint the picture using these non-visual senses alone.
#alternate-history
#journalism
#steampunk
Write a fake newspaper article from a world where the Roman Empire discovered steam power in the 1st century AD.
Write the text of a front-page newspaper article from the year 100 AD in an alternate timeline where Rome industrialized early using steam engines. The style should emulate Roman rhetoric combined with the frantic energy of an industrial newspaper. Discuss a major event, such as the opening of a new Aqueduct-Tram system or a political scandal involving a corrupt Senator and a steam-engineering monopoly. Include a catchy headline in Latin or English.
#email
#communication
#business
Draft a professional email to inform a client about a project delay while maintaining trust.
Write a professional and polite email to a client informing them that a project deliverable will be delayed by two days due to unforeseen technical challenges. Apologize for the inconvenience, reassure them of the commitment to quality, and specify the new delivery date.
#sql
#database
#analytics
Generate a SQL query to identify top customers based on spending.
Construct a PostgreSQL query to select the top 10 users with the highest total purchase amount from the 'orders' table. The output should include user_id, user_name, and the sum of their total_orders, sorted by the total amount in descending order.
#copywriting
#social-media
#marketing
Create engaging social media copy for a new product release.
Write a short, punchy Instagram caption for the launch of a new ergonomic office chair. Include three key benefits, a call to action encouraging people to visit the link in the bio, and use 3 relevant emojis.
#python
#debugging
#coding
Identify and fix a logical error in Python code.
Analyze the following Python code snippet intended to create a list of squared even numbers: 'squares = [x**2 for x in range(10) if x % 2 = 0]'. Identify the syntax error, explain why it causes an error, and provide the corrected code.
#productivity
#management
#summarization
Extract action items and decisions from raw meeting notes.
Process the following raw text from a team meeting. Extract and format a bulleted list of 'Action Items' with assigned owners and deadlines, and a separate bulleted list of 'Key Decisions' made.
#regex
#validation
#javascript
Create a regular expression pattern for email validation.
Write a Regular Expression pattern that validates a standard email address string. The pattern must check for the presence of an '@' symbol, a domain name with at least one dot, and disallow spaces. Provide a brief breakdown of what each part of the regex does.