Friday, December 26, 2025

Part 2: What I’d Do as the Product/Program Manager at TurboTax

After sharing my experience with the Intuit TurboTax Advantage renewal bug, I’ve had a lot of people ask: “What would you do if you were the PM responsible for this?”

Here’s exactly what I would do — not months from now, but immediately, while engineering works on the backend fix.

1. Equip Customer Support With the Right Script (Today)

The support specialist eventually told me this was a known issue with ZIP+4 formatting. That should be the first thing support says — not the 20 irrelevant questions that came before it.

Support should be trained to say:

“We have a known issue with ZIP+4 address formatting that can prevent payments from going through. Please select the version with the hyphen.”

This single sentence would have saved hours of customer time and reduced support load dramatically.

2. Stop the Endless “Payment Failed” Emails and Fix Affected Accounts Proactively

Instead of sending customers months of “Your payment failed” messages they can’t resolve, the product team should:

  • Identify all Advantage subscribers with repeated payment failures
  • Check whether their stored billing address uses the problematic ZIP+4 format
  • Correct the formatting on the backend
  • Retry the payment or notify the customer with a real explanation

If the system knows the customer can’t fix the issue, it shouldn’t keep telling them to fix it.

3. Update the Error Messaging Immediately

The current message — “There’s a problem with your credit card” — is inaccurate and misleading.

A better version would be:

“We’re having trouble validating your billing address. Please confirm your ZIP+4 format.”

Clear, actionable, and honest.

4. Add a Temporary Banner in the Account Dashboard

If this is a known issue, customers shouldn’t have to discover it by accident.

A simple banner would prevent thousands of failed renewals:

“We are currently experiencing issues with ZIP+4 address validation. If prompted, please select the ZIP+4 format with a hyphen.”

Transparency builds trust.

5. Send a Targeted “We Fixed It” Email Once the Backend Patch Is Live

When engineering resolves the root cause, TurboTax should notify every impacted customer:

  • Acknowledge the issue
  • Confirm the fix
  • Provide a one‑click renewal link
  • Optionally offer a goodwill gesture

This is how you rebuild confidence after months of failed renewals.

6. Fix the Voice System That Turned “Jennifer Clark” Into “Yessir Fart”

This isn’t just funny — it’s brand‑damaging.

The voice system couldn’t recognize my name or email address, and the transcription was so far off that it made reaching a human unnecessarily difficult.

At minimum:

  • Identify people based on phone number like most other businesses do
  • Add a keypad fallback
  • Improve transcription accuracy
  • The system requires user confirmation before proceeding, but if it's not working after multiple tries - why not let users skip this step?

If your IVR system insults your customers and takes too long, you’re losing them before support even begins.

7. Align the Address Form, USPS Validation, and Payment Processor

This is the root cause:

  • I entered only a 5‑digit ZIP
  • Intuit’s form auto‑generated a ZIP+4 with a hyphen
  • USPS validation returned a ZIP+4 with a space
  • The payment processor only accepts the hyphenated version
  • The UI forced me to choose between two system‑generated formats
  • The recommended one was the one that failed

This is a classic cross‑system integration issue — and it’s fixable.

8. Add Monitoring for Address‑Related Payment Failures

A PM should ensure engineering adds:

  • Logging for address‑format mismatches
  • Alerts when failures spike
  • A dashboard tile for payment failures correlated with USPS validation

This prevents the issue from going undetected or unresolved for months.

Why This Matters

None of these steps require a full engineering cycle. They’re operational, communication, and UX fixes that reduce customer pain today.

And they’re exactly what strong product and program leaders do: stabilize the customer experience now, while engineering works on the long‑term solution.

Even at the lowest plausible scale, this bug has real financial impact.

TurboTax Advantage renewals are $70 each If this issue affects even 1,000 customers, that’s $70,000 in preventable lost revenue. And that’s before factoring in:

  • Support call costs
  • Operational overhead from repeated failure emails
  • Customer churn to competitors
  • Brand damage from broken flows and unusable voice systems

Realistically, the number of impacted customers is likely far higher. Even a modest estimate of 6,000 affected users puts the revenue exposure at $420,000. At the higher end, it could easily reach seven figures.

This is why addressing the issue quickly — and communicating clearly with customers — isn’t just good UX. It’s good business.

 

Tuesday, December 23, 2025

TurboTax Advantage Renewal UX Bug + Voice System Fail

 My story begins in late September with a reminder that my renewal was upcoming. I logged in and checked to ensure the correct credit card was on file for both my account and the subscription (forcing the user to check two locations). Over the last several months, I received multiple emails from Intuit TurboTax for my subscription saying my renewal payment had failed, each time, I promptly logged into the Intuit site, double checked my credit card, and assumed the issue was resolved.


It wasn’t.

This week, despite trying multiple valid credit cards and following every prompt, I kept receiving onscreen failure notices. Each time I returned to the site, re-entered my billing info, and retried the renewal. The interface showed a red warning: “Your payment method requires attention. There was an issue with processing your payment.” But the issue wasn’t the card.

"Your payment method requires attention" flag on Intuit Turbo Tax website.

Eventually, I got on the phone with Intuit support — which is no small feat. Their voice system asked me to say my name and then spelled it back as: “Yessir Fart.” I wish I were joking. I couldn’t even get my email address recognized after multiple tries. If Intuit wants to retain customers in a competitive market, that system needs serious attention.

Once I reached a human, the support specialist confirmed this was a “known issue” and that “someone is working on it.” They also mentioned ongoing payment problems throughout the year.

They suggested I follow a link to purchase the TurboTax Advantage plan as new. I tried again — same failure.

This time, I noticed something subtle: the system was prompting me to choose between two address formats:

  • My entered ZIP+4 (formatted as XXXXX-XXXX, which their own form suggested), or
  • The USPS‑standardized version (formatted as XXXXX XXXX without the hyphen)

Every time I selected the USPS‑suggested address, the payment failed. On the third try, I selected “Keep mine” — the version with the hyphen — and the payment went through immediately.

This is exactly the kind of data‑normalization bug that creates unnecessary friction, support calls, and customer frustration. For teams working on checkout flows, this is a reminder that:

  • Address normalization must be consistent with downstream payment processors
  • Error messages should reflect the actual failure point
  • USPS‑suggested formats shouldn’t break transactions
  • Voice systems should not turn “Jennifer Clark” into “Yessir Fart”

To make this easier for Intuit’s web and QA teams, here’s the issue expressed in Cucumber format:

Feature: Payment Processing During TurboTax Advantage Renewal

As a returning TurboTax Advantage customer I want the address‑verification step to correctly validate USPS‑standardized ZIP+4 formats So that I can renew my subscription without repeated payment failures.

Scenario: USPS‑formatted ZIP+4 causes payment failure

Given a returning TurboTax Advantage customer receives repeated notifications that their renewal payment has failed And they log into their Intuit account to update billing information And they enter a valid credit card and billing address When the system prompts them to choose between their entered address and the USPS‑suggested address And the customer selects the USPS‑suggested address (ZIP+4 without hyphen) Then the system accepts the address But the payment submission fails with the message “There’s a problem with your credit card” And the renewal does not complete despite multiple attempts and multiple valid credit cards.

Scenario: User‑entered ZIP+4 with hyphen allows successful payment

Given the same customer retries the purchase or renewal And the system again prompts them to choose between the two address formats When the customer selects “Keep mine” (ZIP+4 with hyphen) Then the payment is processed successfully And the TurboTax Advantage renewal completes without error.

If anyone on the Intuit product, engineering, or QA teams wants more detail, I’m happy to share additional context. This is a small fix with a big impact on customer experience — and a reminder that voice systems should never insult your customers.

NOTE:

One important detail: I never entered a ZIP+4 myself. I only typed my 5‑digit ZIP. Intuit’s form auto‑generated the ZIP+4 with a hyphen. When I clicked “Submit,” the system popped up a dialog asking me to choose between the USPS‑formatted address (ZIP+4 with a space) or the “user-entered” version (ZIP+4 with a hyphen). Both formats were system-generated — but only the hyphenated version works with their payment processor. The USPS version consistently breaks the renewal flow.


© Jennifer R Clark. This work is licensed under a Creative Commons Attribution 4.0 International License. You may share and adapt this content with proper attribution.

Sunday, December 14, 2025

QUILT: Paper Pieced Stars - 12 Completed!

My friend Watson at Orr Springs supurrvising the layout of all 12 stars from my original "50 Fabulous Paper Pieced Stars" kit.  By the end, I'm a lot more proficient and have decided to do another 6 stars to make this into a queen size quilt. Stay tuned for additional star reports!
 Watson & the Quilt Blocks

Wednesday, December 03, 2025

REVIEW: "Girl on Girl: How Pop Culture Turned a Generation of Women Against Themselves" by Sophie Gilbert 2025 (3 stars)

What Girl on Girl Misses — and Why the Context Matters

Sophie Gilbert’s Girl on Girl raises compelling questions about comparison, competition, and the ways women learn to see themselves through the eyes of others. Her cultural analysis is sharp and, at times, painfully resonant—especially in her exploration of homogenized beauty standards, the commodification of empowerment, and the pressures amplified by visual media. These examples matter; they’re part of the lived reality of contemporary womanhood in the U.S.

But Girl on Girl is also a very specific slice of culture—rooted squarely in U.S. mainstream pop culture and overwhelmingly centered on white, middle-class, millennial experience. And without deeper grounding in the systems that produce these pressures, its arguments risk confusing the medium for the message, attributing cultural shifts to the platforms that broadcast them rather than the forces that shape them.

This isn’t a failure of observation. It’s a failure of context. And that’s the heart of my frustration with the book.

Gilbert details how today’s visual culture—Instagram, reality TV, celebrity aesthetics—encourages women to benchmark themselves against a narrow, commodified ideal of femininity. She’s right that beauty “is for sale,” referencing industries in the U.S. and Brazil that promise transformation through consumption: hair, lashes, cosmetics, cosmetic surgery, luxury wellness, and endless self-optimization.

But this phenomenon didn’t begin with millennials, nor with digital culture.

Long before ring lights and filters, beauty in the U.S. functioned as a market-regulated system of value—something women were expected to invest in as a form of social and economic capital. Gilbert herself quotes Tressie McMillan Cottom’s insight at the beginning of Chapter 5: “Beauty isn’t what you actually look like; beauty is the preferences that reproduce the existing social order.”

This line—framed in Girl on Girl but underexplored—points directly to larger structures.  These aren’t just cultural quirks—they’re baked into bigger systems. White supremacy sets the rules, capitalism cashes in, perfectionism keeps us striving, and American exceptionalism tells us it’s all our fault if we don’t measure up.

In this context, beauty is not merely cultural. It is political and economic.

Marshall McLuhan famously said, “the medium is the message.” Gilbert, however, often flips this—treating the medium (porn, Instagram, reality TV) as if it were the cause of women’s suffering, rather than the conduit for ideologies that long predate those technologies.

Porn did not invent sexualized expectations of women.

Reality television did not invent beauty hierarchies.

Instagram did not invent comparison.

These platforms amplify, accelerate, and intensify what the culture already demands. By attributing relational difficulties, sexual scripts, and self-worth issues primarily to media exposure, Girl on Girl risks implying that the problem lies in women’s “overconsumption” of harmful images rather than in the systems generating those images in the first place.

Media are mirrors, not architects.

Much of Girl on Girl reads like a chronological catalogue of pop culture, weaving together celebrity moments, viral trends, and reality-TV storylines. A significant portion of the book is also devoted to detailed descriptions of sexualized imagery and violations against women, which, while illustrating cultural pressures, can feel sensationalized and at times overshadow attempts at systemic analysis.

While Gilbert’s examples of beauty, comparison, and commodified empowerment are compelling, they are also largely drawn from a very specific cultural context. Much of her analysis centers on U.S. reality television, celebrity culture, corporate feminism (#Girlboss, Lean In), Instagram aesthetics, and narratives about ambition and beauty. This narrow focus highlights the pressures experienced by a particular slice of society, but it can make the patterns she identifies feel culturally specific rather than reflective of broader, systemic dynamics.

This matters because it makes the analysis feel culturally specific rather than structurally universal. The pressures she describes—competition, comparison, and self-surveillance—exist globally, but the forms they take vary widely across class, race, nationality, and culture.

By treating these pressures as if they are primarily millennial phenomena shaped by social media and pornography, the book overlooks deeper continuities across generations and histories of patriarchal control. These tensions are not new. They are simply newly branded, turbo charged and monetized.

Gilbert references racial disparities but doesn’t fully integrate intersectionality into her argument. The experience of beauty and comparison is profoundly shaped by race, class, disability, and nationality—but Girl on Girl remains focused on the dominant narrative of white, U.S.-based feminine insecurity.

And while the book centers women, a broader sociological view reveals that men and boys are also being shaped—and harmed—by these systems.

And it’s not just women.  In her book Men Who Hate Women, Laura Bates shows how boys and men are also trapped in these systems—though their pain often gets weaponized instead of commodified. These forces flow from the same systems of patriarchy and capitalism. The pressure to perform masculinity, to dominate rather than connect, to seek status through appearance or achievement—these are also forms of gendered control.

Girl on Girl is thought-provoking and at times emotionally powerful. Gilbert is deeply attuned to the lived experiences of comparison, aspiration, and insecurity among contemporary women. Her observations ring true—because the cultural patterns she highlights absolutely shape the world we live in.

But the story she tells is only one layer of a much larger structure.

Beauty standards, competitive femininity, curated empowerment, and the commodification of selfhood are not new problems created by digital media. They are expressions of systems that long preceded the technologies that now broadcast them.

When we focus on the images, we risk missing the architecture. The question is not simply why women compare themselves, but who benefits from a society in which women (and increasingly men) are: perfectible, self-surveilling, relentlessly optimizing, and continuously investing in their own inadequacy. The problem is not women looking at the “wrong screens.” The problem is the systems that built the screens—and profit when women lose themselves in the reflection. That’s why, for me, Girl on Girl is powerful but incomplete. It captures the feeling of living inside the mirror—but doesn’t fully explain who built it, nor what a better world would look like.

REVIEW:  "Girl on Girl: How Pop Culture Turned a Generation of Women Against Themselves" by Sophie Gilbert  2025 

RATING: 3 stars

© Jennifer R Clark. This work is licensed under a Creative Commons Attribution 4.0 International License. You may share and adapt this content with proper attribution.




Friday, November 14, 2025

QUEEN QUILT: Log Cabin Quilt

Here is the finished log cabin quilt - I completed the top in August 2025, and didn't get the quilting done until November 2025 at Always Quilting. I used a pantograph - it was my first big quilt on the Amara long arm.  Tony Bruno is demonstrating how well he looks on this quilt!



This is the fabric on the back - custom designed by Joanne Kao and printed on Spoonflower. I usually use fabrics I have but won a custom fabric design in the 2024 CatTown annual summer silent auction fundraiser.  Since I plan to keep this quilt - I wanted this to be special and I think she did a great job with the design, and the Spoonflower fabric turned out quite nicely.