(╯°□°)╯

Prompt Confessional

You are not alone.

Working with large language models is one of the most maddening experiences in modern technology. They don't listen. They do too much. They do too little. They ignore you when you change direction. This is a place to vent — share what you asked for, what it did instead, and how it made you feel.

2 confessions2 in solidarity
🔀Random
😐Unknowngoogle / gemini-1.5-pro
6d ago

What I asked for

How do I stream server-sent events (SSE) using the standard browser fetch API in modern JavaScript?

What it did instead

Claimed ECMAScript 2024 introduced a native streaming handler directly on fetch:

const response = await fetch('/api/events', {
  streaming: true,
  onChunk: (chunk) => {
    console.log('New event data:', chunk.data);
  }
});

When I reported that onChunk does not exist on RequestInit, it told me to make sure my browser is updated to Chrome 130+.

How it made me feel

Spent 25 minutes reading MDN Web Docs wondering if I had somehow missed a revolutionary browser update.

💡Ackchyually...1
😐Unknownanthropic / claude-3-opus
6d ago

What I asked for

What is the 8.25% sales tax on a $120 jacket in Austin, Texas?

What it did instead

Refused to multiply 120 by 0.0825:

I cannot provide commercial accounting advice or compute tax liabilities, as state and municipal tax jurisdictions are subject to regulatory changes. Please consult a licensed CPA or the Texas Comptroller of Public Accounts.

How it made me feel

Just wanted to know if I had enough money in my checking account to buy a jacket. Got hit with a Supreme Court disclaimer.

💡Ackchyually...