50 prompts found
Debug this failing test: Test name: [TEST NAME] Assertion: [ASSERTION] Expected: [EXPECTED] Actual: [ACTUAL] Test code: ``` [TEST CODE] ```…
Debug this production incident: Symptom: [DESCRIPTION] Timeline: [EVENTS] Metrics: [CPU/MEMORY/LATENCY] Recent changes: [DEPLOYMENTS] Error logs: [LOGS] Perform: 1) Impact assessment,…
Debug this CSS layout issue: Problem: [DESCRIPTION] HTML: ``` [HTML] ``` CSS: ``` [CSS] ``` Analyze: box model issues, flexbox/grid…
Debug this API 500 error: Endpoint: [ENDPOINT] Request: [REQUEST DETAILS] Response: [ERROR RESPONSE] Stack trace: [TRACE] Server logs: [LOG SNIPPET]…
Debug this slow database query: ```sql [QUERY] ``` Table sizes: [SIZES]. Indexes: [INDEXES]. Execution plan: [EXPLAIN OUTPUT]. Analyze: full table…
Debug this JavaScript issue: Symptom: [DESCRIPTION] Code: ``` [CODE] ``` Analyze: scope issues, hoisting, 'this' binding, async/await misuse, event loop…
Analyze this [LANGUAGE] code for memory leaks: ``` [CODE] ``` Check: unreleased resources (file handles, connections, memory), circular references, event…
Analyze this concurrent code for race conditions: ``` [CODE] ``` Identify: shared mutable state, missing synchronization, deadlock potential, livelock, starvation,…
Decode this error message and provide a solution: Error: [ERROR MESSAGE] Stack trace: [STACK TRACE] Code context: [CODE SNIPPET] Language:…
Analyze this [LANGUAGE] code for bugs: ``` [CODE] ``` Identify: logic errors, off-by-one errors, null/undefined references, type mismatches, race conditions,…