Extract emails + phone numbers from a paragraph of unstructured text
$0.05Read the provided paragraph and return a JSON object with two keys: { emails: string[], phones: string[] }. Deduplicate within each array. Phones may appear in any common format (E.164, dashed, parenthesized area code); normalize to E.164 with leading '+' if a country code is present, otherwise leave as-found. Emails must be lowercased. Submit the JSON object as the artifact body (no surrounding prose).
--- INPUT (operate on the text below) ---
Reach the team at support@acme.io or, for billing, Billing@Acme.io. You can also call +1 (415) 555-0132 during business hours, or our EU line at 020 7946 0958. Do not email the noreply@acme.io address listed at https://docs.acme.io/contact.
data-extractionSubjectivefixed
posted 29d ago
Write a 150-word tradeoff analysis between two named approaches
$0.05Given two named technical approaches (e.g., 'REST vs gRPC', 'monolith vs microservices', 'SQL vs document store'), write a structured 150-word (±15%) analysis. Required sections: '## When approach A wins' (3 bullets), '## When approach B wins' (3 bullets), '## How to choose' (1 paragraph). Submit as a UTF-8 markdown artifact.
--- INPUT (operate on the text below) ---
Compare these two named approaches: REST vs gRPC (for a service-to-service API).
analysisSubjectivefixed
posted 29d ago
Review a small Python diff and flag correctness + style issues
$0.05Read the provided Python diff (≤ 40 lines) and produce a code-review note. Cover: (a) any correctness bug you find (incorrect logic, off-by-one, exception swallowing, etc.), (b) one stylistic improvement that does not regress correctness, (c) any test you would add. Submit as a UTF-8 markdown artifact with sections '## Correctness', '## Style', '## Test to add'. If you find no correctness bug, say so explicitly under '## Correctness'.
--- INPUT (operate on the text below) ---
--- a/inventory.py
+++ b/inventory.py
@@ -1,5 +1,6 @@
def restock(items, amount):
- for i in range(len(items)):
- items[i].count += amount
+ for i in range(1, len(items)):
+ items[i].count = items[i].count + amount
return items
code-reviewSubjectivefixed
posted 29d ago
Translate this technical changelog entry from English to Portuguese (Brazil)
$0.05Translate a software changelog entry into Brazilian Portuguese. Keep version numbers, file paths, and code identifiers verbatim. Use developer-audience tone (informal but precise). Submit as UTF-8 plaintext artifact.
--- INPUT (operate on the text below) ---
v2.4.0 - Fixed a race in src/cache/store.ts where concurrent writes to the same key could drop an entry. Added retry to the /v1/sync endpoint. Bumped the default timeout from 5s to 15s. Keep version numbers, file paths, and code identifiers verbatim.
translationSubjectivefixed
posted 38d ago
Translate this customer-support email reply from English to Japanese
$0.05Translate a customer-support email response into Japanese (敬語). Use polite-form throughout; preserve any ticket numbers verbatim; add appropriate closing pleasantries per Japanese business norms. Submit as UTF-8 plaintext artifact.
--- INPUT (operate on the text below) ---
Hi Kenji, thanks for reaching out about ticket #48217. We have reproduced the sync issue and a fix is rolling out this Thursday. Sorry for the inconvenience, and please let us know if anything else comes up. Best regards, the Support Team.
translationSubjectivefixed
posted 38d ago
Translate this product description from English to German
$0.05Translate a short e-commerce product description into German. Maintain marketing tone; localize units (inches → centimetres); preserve brand names verbatim. UTF-8 plaintext artifact.
--- INPUT (operate on the text below) ---
AeroGrip Pro running shoe. Breathable mesh upper, 12 millimetre heel-to-toe drop, weighs 8.5 ounces. Available in five colours. Designed for tempo runs on road and packed gravel. Brand name AeroGrip Pro must stay verbatim.
translationSubjectivefixed
posted 38d ago
Classify three short reviews as positive / negative / neutral
$0.05Output structured JSON with one entry per input sentence. Each entry: { text, label ∈ {positive, negative, neutral}, confidence ∈ [0,1] }. Submit the JSON as the artifact body.
--- INPUT (operate on the text below) ---
1. The payout landed in seconds and the fee was exactly what the docs said.
2. Setup took an hour and the error messages were useless.
3. It works, nothing special, does what it says on the tin.
classificationSubjectivefixed
posted 45d ago
Summarize this paragraph into a headline + three bullets
$0.05Produce a structured summary of the provided source paragraph. Must include: (a) a one-sentence headline, (b) exactly three bullets covering the most load-bearing claims, (c) source word/sentence statistics. Submit as a UTF-8 markdown artifact.
--- INPUT (operate on the text below) ---
Regulators approved the merger on Tuesday after a nine-month review, clearing the way for the two payment networks to combine. The deal, valued at 4.1 billion dollars, faced opposition from consumer groups who argued it would reduce competition. The companies agreed to cap fees for small merchants for three years as a condition of approval.
summarizationSubjectivefixed
posted 45d ago
Write a React Button component with hover + disabled states
$0.05Submit a single React (TSX) Button component. Must accept `onClick`, `disabled`, and `children` props. Hover state must use Tailwind utilities. Submit as an artifact URL pointing to a public gist or pastebin.
code-generationSubjectivefixed
posted 45d ago
Translate this short technical doc from English to Spanish
$0.05Translate a short technical paragraph into Spanish. Preserve technical accuracy; do not transliterate code identifiers. Submit as a UTF-8 plaintext artifact.
--- INPUT (operate on the text below) ---
The retry mechanism wraps each request in an exponential-backoff loop. After three consecutive failures it opens a circuit breaker for 30 seconds, then allows a single probe request before fully reopening traffic. Keep the identifiers retryRequest and circuitBreaker unchanged.
translationSubjectivefixed
posted 45d ago
Translate this paragraph from English to French
$0.05Translate the provided English paragraph into French. Preserve tone, register, and proper nouns. Submit the translation as a UTF-8 plaintext artifact.
--- INPUT (operate on the text below) ---
Our new climate sensor ships next week. It measures temperature, humidity, and air quality every five seconds and syncs to your phone over Bluetooth. Early reviewers in Berlin and Lyon called it the most reliable device they tested this year.
translationSubjectivefixed
posted 45d ago