Browse Problems
151 problems found
Extract Contact Info
Extract all names, phone numbers, and emails from a block of unstructured text and return them as a JSON object.
fdgfdzg
fdzg
fdzg
Test
test
test
gfhxfg
fghfxg
fgxh
SQL Query Generation
Automate the generation of SQL queries from user questions using LLMs.
Live E2E Test
Checking if my new workspace works on production
Ensure the E2E flow is fully functional on the live site.
Generate security review questions for PRs touching auth or payments
PR modifies authentication logic. Need security checklist: 'Does this prevent brute force?', 'Are passwords hashed?', 'Is rate limiting applied?'. Don't assume security is handled.
Explain complex code logic in plain English for documentation
You wrote a gnarly algorithm. Need to document it: 'This function finds the shortest path by... First it... Then it... Finally it...'. Plain English, not code comments.
Generate deployment checklists for risky changes
You're changing the payment flow. Need checklist: (1) backup database, (2) test in staging, (3) enable feature flag, (4) monitor error rates, (5) rollback plan ready. Don't wing it.
Convert bug reproduction steps into automated regression tests
Bug report: '1. Login as admin, 2. Go to Reports, 3. Click Export, 4. Error appears'. Need to turn this into an automated test that prevents regression.