Getting Started with Claude: A Practical Guide
You've heard the hype about Claude, but when you first open that chat window, you're hit with the same problem I had: "What do I actually ask this thing?" The demos show it writing poetry and explaining quantum physics, but you need it to draft an email, debug a Python script, or summarize a 50-page PDF. I've spent the past three months using Claude daily for everything from code reviews to wedding planning, and I'm going to show you exactly what works, what breaks, and how to avoid the pitfalls that wasted my first week.
The Setup That Actually Matters
Before you type a single prompt, fix these three things. First, go to Settings and upload your writing samples. I spent two hours wrestling with Claude's default tone—it writes like a polite British butler—until I fed it three of my actual Slack messages and a blog post. Now it matches my voice 80% of the time. Second, turn on "Code Interpreter" under Beta Features. This lets Claude run Python in a sandbox, which I'll show you in a minute. Third, if you're on the Pro plan ($20/month), you get 5x the usage limit. I hit the free tier's cap in 45 minutes on my first day.
Your First Real Prompt (Stop Asking Questions)
Here's what most people do wrong: they ask Claude questions like "Can you help me with my resume?" That gives you a generic, useless response. Instead, give it a task with context. I tested this exact prompt yesterday:
I'm a backend developer applying for a senior role at Stripe. Rewrite my resume bullet points below to emphasize impact and metrics. Current bullet: "Managed database migrations for payment processing system." My actual impact: Reduced migration downtime from 4 hours to 12 minutes across 200 databases. Write 3 versions, each under 20 words.
Claude returned three crisp versions. The best one: "Cut database migration downtime 95% (4hrs→12min) across 200 payment databases." That took 8 seconds. Compare that to my earlier prompt: "Help with resume" which gave me a lecture on resume formatting.
The PDF Problem I Nearly Gave Up On
My biggest frustration came when I tried to upload a 200-page technical specification. Claude's context window is 100K tokens (about 75,000 words), but it starts hallucinating details around page 150. Here's the fix: break the document into 50-page chunks. Actually, use this prompt pattern:
I'm going to send you a document in 3 parts. After each part, I'll ask you specific questions. Do NOT summarize until I tell you to. First part coming now.
Then upload Part 1, ask your questions, upload Part 2, and so on. This cut hallucination errors from 30% to under 5% in my testing. Also, Claude cannot handle scanned PDFs or images with text. If your PDF is a scan, use Google Drive's OCR first, then upload the text file.
Code That Actually Runs
Here's where Claude surprised me. With Code Interpreter enabled, I gave it this:
I have a CSV of customer transactions with columns: date, amount, category. Write a Python script that:
1. Loads the CSV
2. Groups transactions by week
3. Calculates running total per category
4. Outputs a line chart
Use the sample data I'll paste below.
It wrote the script, ran it in the sandbox, generated the chart, and displayed it—all in 30 seconds. The catch: it cannot access external files or APIs. When I asked it to "fetch stock prices from Yahoo Finance," it politely said "I can't access the internet." You have to paste data directly or upload your CSV.
The Hallucination Trap (It's Real)
I asked Claude to "explain how PostgreSQL's MVCC works internally." It gave a beautiful, confident explanation—and got three key details wrong. I caught it because I know PostgreSQL. But when I asked it to "write a haiku about database indexes," it produced something that sounded right but had a wrong syllable count.
Your defense: Always ask for sources or verification. Use this prompt:
Give me your answer, then list three specific things you're uncertain about in your response.
Claude will honestly flag its weak points. I've caught it admitting uncertainty about exact dates, specific API parameters, and recent events (its training data cuts off in early 2024).
The Long Document Crunch
When I pasted a 10,000-word legal contract, Claude processed it but started losing track of specific clauses around paragraph 80. Here's my workaround: after giving it the document, ask:
Summarize the document in 5 bullet points. Then, for each bullet, tell me which paragraph number supports it.
This forces Claude to reference specific locations. It still hallucinated one paragraph number, but the accuracy jumped from 60% to 90%. For mission-critical work, I now split documents into 3,000-word chunks and process each separately.
The One Trick That Changed Everything
I use Claude as a "thinking partner" now. Instead of asking for answers, I ask for frameworks. Example:
I need to decide between AWS Lambda and ECS for a real-time data pipeline. Give me a decision matrix with 5 criteria, weight each by importance, and show me how to score both options. Then challenge my assumptions.
Claude produced a table with latency, cost, scalability, operational overhead, and ecosystem fit. It then pointed out that I hadn't considered cold starts (Lambda's weakness) or container orchestration complexity (ECS's weakness). That saved me from making the wrong choice based on hype.
What I Still Hate
Claude cannot handle math reliably. I asked it to calculate compound interest over 10 years with monthly contributions. It got the formula right but made an arithmetic error in step 3. For any calculation, use Code Interpreter or a calculator. Also, its web interface is slow for long conversations—after 50 messages, it takes 10-15 seconds per response. I now start fresh threads for different topics.
Your Next 15 Minutes
Close this article. Open Claude. Do these three things in order:
- Upload a recent email you wrote and ask "Rewrite this email to be more concise and direct. Keep my tone."
- Paste a function you wrote last week and say "Find three bugs or optimizations in this code. Show me the fixed version."
- Give it a 5-paragraph article and say "Summarize this in 3 sentences, then write a counterargument to the main point."
The first time Claude surprises you with something genuinely useful—like catching a bug you missed for hours—you'll understand why I stopped using ChatGPT for technical work. But you'll also hit the limits: the hallucination on page 150, the math error in step 3, the 10-second lag after message 50. That's not failure. That's learning the tool's shape. Now go break something.