#productivity
#time-management
#remote
Organize a daily schedule for a remote worker prioritizing deep work.
Organize a daily schedule for a remote worker based on these tasks: deep work (3 hrs), team meetings (2 hrs), email correspondence (1 hr), and breaks. Prioritize deep work for the morning block and structure the day to minimize context switching.
#fiction
#epistolary
#future
Write a letter from a future self to the present self.
Write a letter from your future self 50 years from now to your present self. Describe the state of the world, where you are living, and the one piece of advice you wish you had taken today.
#mystery
#flash-fiction
#object
Discover an old key and invent what it opens.
While cleaning your attic, you find a rusted iron key that does not fit any lock in your house. Describe the object or door this key is meant to open, and the adventure that begins when you finally find it.
#dystopian
#drama
#ethics
Guard the final repository of human knowledge.
You are the guardian of the last library on a post-apocalyptic Earth. A desperate stranger arrives seeking a book that was banned centuries ago for its dangerous ideas. Write the dialogue where you decide whether to hand it over.
#dialogue
#suspense
#scriptwriting
A dialogue between two unseen characters.
Write a dialogue between two characters trapped in separate rooms of a collapsed building. They can hear each other perfectly but cannot see. As they talk, they realize they might not be alone in the darkness.
#scifi
#perspective
#humor
Describe Earth flora through alien eyes.
An alien botanist lands on Earth and writes a field report about a common dandelion. Describe the flower's structure and purpose, but get every detail hilariously wrong from a human perspective.
#surrealism
#horror
#descriptive
Record a strange and vivid dream.
Describe a dream you have every night. It always starts with you eating breakfast normally, but ends with the sky turning into liquid and gravity reversing. Explain how you feel when you wake up.
#architecture
#system-design
#scalability
#backend
Create a comprehensive system design for a high-scale real-time application focusing on scalability and fault tolerance.
You are a Senior Systems Architect. Design a microservices architecture for a real-time collaborative document editing platform similar to Google Docs. Your response must include: 1. A high-level diagram description of service interaction. 2. Database choices (SQL vs NoSQL) for specific services with justification. 3. A strategy for handling Operational Transformation (OT) or CRDTs for conflict resolution. 4. An authentication and authorization flow using OAuth2 and JWT. 5. A plan for handling real-time updates via WebSockets or a message broker like Kafka. 6. Considerations for data partitioning and eventual consistency. Assume the system must handle 10 million concurrent users.
#logic
#critical-thinking
#analysis
#reasoning
Analyze a provided argument to identify logical fallacies, hidden premises, and structural weaknesses.
Act as an expert logician and critical thinking professor. Analyze the following argument: '[Insert Argument Here]'. Break down the argument into its constituent premises and conclusion. Identify any formal or informal logical fallacies present (e.g., straw man, equivocation, slippery slope). Highlight any implicit premises that are necessary for the argument to hold but are not stated. Finally, construct a steel-manned version of the argument that addresses the identified weaknesses while maintaining the original intent.
#coding
#refactoring
#design-patterns
#software-engineering
Refactor a monolithic code snippet to adhere strictly to SOLID principles and design patterns.
You are a Lead Software Engineer specializing in clean code. Review the following monolithic class: '[Insert Code Snippet]'. Refactor this code to strictly adhere to the SOLID principles. 1. Identify which principles are currently being violated. 2. Break the class down into appropriate smaller classes or interfaces. 3. Implement relevant design patterns (e.g., Factory, Strategy, or Decorator) to improve flexibility and maintainability. 4. Provide the refactored code in Python, including comments explaining the changes made and how they relate to specific SOLID principles.
#creative-writing
#style-transfer
#literature
#adaptation
Rewrite a technical text in the specific voice and prose style of a famous author.
Act as a professional ghostwriter with a deep knowledge of literary styles. Rewrite the following technical documentation about a cloud computing infrastructure: '[Insert Technical Text]'. Rewrite it completely in the distinctive prose style of Ernest Hemingway. Use short, declarative sentences, simple vocabulary, and an objective, understated tone. Ensure that despite the stylistic change, all technical accuracy and core information remain preserved and clear to the reader.
#database
#sql
#optimization
#performance
Analyze a slow SQL query and optimize it using advanced indexing and execution plan strategies.
You are a Database Performance Tuning Expert. Analyze the following slow PostgreSQL query: '[Insert SQL Query]'. The table schema is as follows: '[Insert Schema]'. 1. Explain the likely execution path and identify the bottlenecks (e.g., sequential scans, nested loops, hash joins). 2. Propose specific indexes to create to improve performance, explaining the choice of columns (B-Tree, GiST, etc.). 3. Rewrite the query if necessary to improve efficiency, avoiding sub-optimal CTEs or correlated subqueries. 4. Provide the optimized query and a brief explanation of the expected performance gains.
#email
#professional
#workplace
#communication
Generate a well-structured, professional email for various workplace situations
Write a professional email to [recipient] about [topic]. Make it concise, clear, and maintain a professional tone throughout. Include a clear subject line, appropriate greeting, body, and closing. The email should achieve [purpose].
#meal planning
#nutrition
#cooking
#budget-friendly
Create a balanced weekly meal plan with recipes and shopping list
Create a 7-day meal plan for a [number of people] person household with [dietary restrictions]. Include breakfast, lunch, and dinner for each day. Provide simple recipes for each meal and organize ingredients into a shopping list grouped by category. Ensure the meals are balanced and within a budget of $[amount].
#debugging
#coding
#problem-solving
#programming
Help identify and fix errors in code snippets
Analyze the following [programming language] code that's not working as expected. Identify the bug, explain what's causing the issue, provide the corrected code, and explain how the fix addresses the problem. The code should [expected functionality].