🏠 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
hard

Debug JavaScript Null Pointer

#javascript #debugging #development

Identify the cause of a common JavaScript error.

Analyze the provided JavaScript code snippet that is throwing 'TypeError: Cannot read properties of null'. Explain exactly why this error is occurring and provide a corrected version of the code that includes proper null checking to prevent it.
easy

Optimize Resume Bullet Points

#resume #writing #career

Rewrite a job description to be more impactful.

Rewrite the following resume bullet point to be more result-oriented and quantifiable. Use strong action verbs and focus on the impact rather than just the responsibilities: 'Responsible for managing a team of customer support agents.'
medium

Create an Excel Budget Formula

#excel #finance #spreadsheets

Design a spreadsheet formula for expense tracking.

Provide an Excel formula that checks if the value in cell A2 (Expense Amount) is over $500. If it is, return 'High' in column B; if it is between $100 and $500, return 'Medium'; otherwise, return 'Low'.
Easy

Draft a Professional Rescheduling Email

#email #professional #business

Compose a polite email to reschedule a meeting due to an unexpected conflict.

Draft a professional email to a client to reschedule our project kickoff meeting from this Tuesday at 2 PM to Thursday at 10 AM. Apologize for the inconvenience and confirm if the new time works for them.
Medium

Explain Python Code Logic

#python #education #code-explanation

Break down a specific Python function for a beginner developer.

Explain how the following Python list comprehension works step-by-step for a beginner programmer: [x*2 for x in range(10) if x % 2 == 0]. Include details about the range, the condition, and the multiplication.
Easy

Create a Weekly Team Meeting Agenda

#planning #meeting #management

Generate a structured agenda for a 30-minute team sync.

Create a structured agenda for a 30-minute weekly team sync. Include time slots for a quick check-in, review of last week's action items, and a roundtable for blockers. Assign a specific duration to each section.
Easy

Simplify Technical Jargon

#editing #simplification #clarity

Rewrite a paragraph to remove jargon and improve readability.

Rewrite the following text to make it easier to understand for a non-technical audience. Remove complex jargon and use simple language: 'The utilization of asynchronous JavaScript ensures non-blocking I/O operations, thereby optimizing the throughput of the web application.'
Hard

Generate a Regex for Email Validation

#regex #coding #validation

Write a regular expression to match standard email formats.

Write a regular expression that validates email addresses. It should allow standard formats like [email protected] and [email protected]. Explain what each part of the regex does.
Medium

Brainstorm Eco-Friendly Slogans

#creativity #marketing #brainstorming

Generate catchy slogans for a reusable water bottle brand.

Brainstorm 5 catchy and short marketing slogans for a new brand of reusable bamboo water bottles. Focus on themes of sustainability, nature, and health.
Medium

Debug JavaScript Array Error

#debugging #javascript #problem-solving

Identify and fix a logic error in a provided JavaScript loop.

Identify the bug in the following JavaScript code and provide the corrected version. The code is intended to sum all numbers in an array but returns NaN: let arr = [1, 2, 3]; let sum = 0; for(let i=1; i<=arr.length; i++) { sum += arr[i]; }
Easy

Summarize Key Points

#summarization #reading #efficiency

Create a bulleted summary of a text about remote work.

Summarize the text below into 3 concise bullet points focusing only on the main benefits of remote work for employees: [Text: Remote work offers flexibility allowing employees to manage their own schedules. It eliminates the daily commute, saving time and reducing stress. Additionally, it often leads to a better work-life balance and increased productivity.]
Medium

Practice Job Interview Questions

#interview #career #practice

Simulate a technical interview for a project manager role.

Act as a hiring manager for a Senior Project Manager position. Ask me 3 behavioral interview questions regarding conflict resolution, stakeholder management, and handling missed deadlines. Wait for my answer after each question.
Medium

Write a SQL Join Query

#sql #database #coding

Construct a SQL query to retrieve customer order data.

Write a SQL query for two tables: 'Customers' (id, name) and 'Orders' (order_id, customer_id, amount). Retrieve the names of all customers who have placed an order with an amount greater than 500.
Medium

Refactor Legacy Code

#refactoring #clean-code #optimization

Refactor a given snippet of legacy code to improve readability and performance while maintaining functionality.

Analyze the following code snippet and refactor it. Focus on improving readability, reducing complexity, and fixing potential bugs without changing the core logic. Add comments explaining your changes.
Easy

Draft Professional Email

#email #professional-communication #business

Compose a professional email addressing a specific business scenario with a clear call to action.

Draft a professional email to a client regarding a delay in project delivery. Be polite and transparent, explain the reason for the delay, provide a new timeline, and offer a small compensation for the inconvenience.