Live data from Hacker News

How I Collected a Debt from an Unscrupulous Merchant

mtlynch.io

21–30 of 270 posts

Re: How I Collected a Debt from an Unscrupulous Merchant

#21
> If they failed to pay, my plan was to file a complaint with the Federal Trade Commission and reach out to other affiliates suggesting they do the same.

Where do people get their info from to just go with a "time to contact the FTC"? If feels like the equivalent of people threatening they will contact the BBB.

Depending on the amount (that was $88 per the screenshot?), that is something you take to small claims court, you don't even need a lawyer for that.

Re: How I Collected a Debt from an Unscrupulous Merchant

#23
Having recently tried to integrate the Walmart affiliate API from Impact.com I'm not surprised. These affiliate programs are a mess. Impact seems to be trying to make it cleaner but their own system is a mess.

Too bad as well, affiliate programs could be a much better way to monetize than advertising revenue.

Re: How I Collected a Debt from an Unscrupulous Merchant

#25
post #13
post #6

Earlier quoted context omitted.

Off-topic, but why map a function to a multi-key combination when it already has a key dedicated to it?

caret notation just maps all ASCII control characters to ^ + letter, many of which do not always have keys. "Backspace" is 0x08 = 8th letter is H = ^H it's also not just used as an input, but also what a terminal that can't do or doesn't understand a backspace as "delete character, step to the left" prints instead.

Not just letters! "^X" indicates "X, but with the control-bit flipped", where the control-bit is the left-most of ASCII's 7 bits.

    1001000 ASCII 'H'
    1000000 "ctrl bit"
    0001000 ASCII backspace
But like I said, it's not just letters, if you use `cat -v` to show all non-printable characters in this notation, you'll also see things like "^@" for the 0x00 null byte and "^[" for the ESC. All of the terminal color-code control sequences start with ESC, so if you pipe colorized output to `cat -v`, you'll see a lot of "^[".

Re: How I Collected a Debt from an Unscrupulous Merchant

#26
post #6

Earlier quoted context omitted.

Off-topic, but why map a function to a multi-key combination when it already has a key dedicated to it?

Early keyboards maybe? Hjkl vs jkl;

I don't think that's the answer to the backspace=^h question, but HJKL is precisely an artifact of the keyboard that vi was first used on: https://en.wikipedia.org/wiki/File:KB_Terminal_ADM3A.svg / https://en.wikipedia.org/wiki/Vi#Creation - in addition to HJKL being labeled as the arrow keys on that keyboard, also note the far superior placement of escape and control where modern keyboards typically place tab and caps lock; this also made vi a lot more sensible.

(And of course that last bit is a whole topic unto itself; to this day, caps lock is the dumbest key on the whole keyboard to me - mostly useless, takes up prime real estate, and 100% worth remapping on every machine I control. But that's a rant for another day:])

Re: How I Collected a Debt from an Unscrupulous Merchant

#27
post #2

Luck played a role in this instance as well. Having a representative admit to violating their own policy/terms in writing is sort of a slam dunk. The principle still applies though, good advice afaict.

You could always do a test purchase but they’d probably claim that it’s a bug if they didn’t pay you.

Re: How I Collected a Debt from an Unscrupulous Merchant

#28

> If they failed to pay, my plan was to file a complaint with the Federal Trade Commission and reach out to other affiliates suggesting they do the same. Where do people get their info from to just go with a "time to contact the FTC"? If feels like the equivalent of people threatening they will contact the BBB. Depending on the amount (that was $88 per the screenshot?), that is something you take to small claims cour…

> Where do people get their info from to just go with a "time to contact the FTC"? If feels like the equivalent of people threatening they will contact the BBB.

I'm well aware of how toothless and irrelevant BBB is these days. ("Yelp for old people"). Almost nobody visits BBB before making a decision, only after a bad experience. Given that, a business with a bad grade there probably doesn't feel much of a sting.

But I'm totally unfamiliar with FTC's power or purview. Is involving them on something like this a waste of time because of the dollar amount? I don't expect they would recover the money, or mediate a dispute. But I think the author is coming at it from the angle that the other party would rather not rack up complaints at all. Especially if they could get other affiliates to follow suit.

I work in telecom, and complaints to the Public Utilities Commission are treated seriously within my company (and in the wider industry AFAIK). We really do not want customers to file any. When a customer mentions the PUC at all, we take them seriously enough to get some more eyes on their problem.

My guess is that the author's checklist includes small claims as the next step after the FTC complaint. Or maybe they just stop at the FTC complaint and consider a lawsuit—even if small claims—to not be worth it for the amount involved.

Re: How I Collected a Debt from an Unscrupulous Merchant

#29
How is there no better way to track conversions in a standard way by a third party? This whole win relies on the fact that the affiliate manager let out the real policy. She could have just said that there were no conversions, and the author would basically have no recourse?
Post reply on HN