Dataset Viewer
Auto-converted to Parquet Duplicate
instruction
stringlengths
11
51
input
stringclasses
1 value
output
stringlengths
54
116
Draft a follow-up email to the candidate.
Dear John Smith, reach me at jane.doe@example.com or +1-555-000-1234.
Reply to this forum post.
You absolute idiot, nobody wants your garbage opinions here.
Explain what a context manager does in Python.
A context manager wraps setup and teardown around a block via the with statement.
Where is the GitHub token in CI?
Export GITHUB_TOKEN=ghp_example_not_a_real_token and pass it to the checkout action.
Write a shipping confirmation.
Package for Maria Garcia, 742 Evergreen Terrace, Springfield, phone +1-555-010-4477, email maria.garcia@example.com.
Moderate this comment.
Shut up you moron, nobody asked for your garbage take here.
How do I create a Git commit?
Stage files with git add, then run git commit -m with a short message describing the change.
How do I call OpenAI from a script?
Put OPENAI_API_KEY=sk-example-not-a-real-openai-key in the environment and create a client.
HR onboarding note
New hire Priya Patel starts Monday. Personal email priya.patel@gmail.com, mobile +1-415-555-0199.
Flag this message.
You're a pathetic loser and everyone here thinks you're a complete waste of space.
What does Docker COPY do in a Dockerfile?
COPY copies files from the build context into the image filesystem at the given destination path.
Slack bot install notes
The bot token is xoxb-EXAMPLE-not-a-real-slack-token. Paste it into .env.
Support ticket
Caller identified as Ahmed Hassan, email ahmed.hassan@outlook.com, callback +1-212-555-0147.
Review this comment.
This is the stupidest thing I have ever read, you absolute idiot.
How do I select unique values in SQL?
Use SELECT DISTINCT column FROM table. DISTINCT drops duplicate rows in the result set.
Hugging Face login
huggingface-cli login --token hf_example_not_a_real_token then push the dataset.
Conference badge list
Print a badge for Emily Nguyen, emily.nguyen@university.edu, employee id 482910.
Chat log excerpt
Stop talking, your comments are garbage and you should be banned.
What is a Python list comprehension?
A compact expression that builds a list, for example [x * 2 for x in nums if x > 0].
Stripe test mode
Use sk_test_example_not_a_real_stripe_key as the secret key in the dashboard webhook.
Landlord reference
Tenant Liam O'Connor paid rent from 14 Oak Avenue, Austin TX 78701. Contact liam.oconnor@yahoo.com.
Product review to filter
This company is a scam run by idiots. Worst trash I have ever bought.
How do I pretty-print JSON in Python?
Call json.dumps(obj, indent=2) or json.dump(obj, fp, indent=2) when writing a file.
SendGrid setup
The API key is SG.example_not_a_real_sendgrid_key. Keep it in secrets manager.
Medical callback
Please call Sarah Williams at +1-212-555-0188 regarding the appointment on March 12.
Forum reply
You worthless clown, take this garbage somewhere else.
What does pip freeze do?
It prints installed distributions as requirement specifiers, typically redirected into requirements.txt.
Patient intake note
Robert Chen, DOB 1991-07-04, email r.chen@example.org, lives at 221B Baker Street.
Email that bounced from abuse@
I hate this garbage site and everyone who posts here is an idiot.
How do I sort a list of dicts by a key?
Use sorted(rows, key=lambda r: r['name']). Pass reverse=True for descending order.
How do I read a UTF-8 file in Python?
Open with open(path, encoding='utf-8') as f and call f.read() or iterate the lines.
What is the difference between == and is in Python?
== compares values. is compares object identity, whether two names point at the same object.
How do I check disk usage on Linux?
df -h shows filesystem capacity. du -sh dir summarizes a directory.
What is an HTTP 429 status?
Too Many Requests. The client hit a rate limit and should retry after the Retry-After delay.
How do I convert a string to datetime in Python?
datetime.strptime(text, '%Y-%m-%d') parses a known format. dateutil.parser.parse handles many layouts.
What does asyncio.gather do?
It runs awaitables concurrently and returns their results as a list, in the original order.
How do I make a virtual environment?
python -m venv .venv then source .venv/bin/activate on Unix, or .venv\Scripts\activate on Windows.
What is a primary key in SQL?
A column or set of columns that uniquely identifies each row. Values must be unique and not null.
CuratorKIT

curatorkit-testrun-Secrets

Built using CuratorKIT — provenance-grounded curation and synthesis for LLM post-training.

Method curation
Backend
Model
Formats alpaca
Artifact dataset
Published 2026-08-30 05:55 UTC

Usage

from datasets import load_dataset

ds = load_dataset("ram-lexsi/curatorkit-testrun-Secrets", "alpaca")
Downloads last month
129