This blog post shows what happens when restaurants decide to leave portals: https://www.flipdish.com/ie/the-effects-of-leaving-costly-fo...
Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
311–320 of 461 posts
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#312Earlier quoted context omitted.
The whole VC-funded industrial complex and their bad behaviours will start collapsing rapidly within 10 years - their bad behaviour and tactics have just gone on for too long; it could be faster, hard to predict exponentials.
Call me a cynic, but why should it stop if it works for the VCs? They don't care about the product or the devs or the users experience, just their return. Plenty of things on this world are absolutely abhorrent but continue to this day because they make someone good money.
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#313It feels as though much of tech has gone from helping people accomplish their goals efficiently to a business model of extracting rents while providing no or little value. In this example, what benefit is GrubHub providing to anyone? The person used Yelp solely to look up the phone number of a restaurant. GrubHub deserves 15% of his order for that? Why, because they made a deal to give X% of it to Yelp, and convinced…
Hah, that reminds me of what’s happening with the custom of tipping, where it’s expected for more and more places with less and less service:
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#314Earlier quoted context omitted.
The problem with using another form of payment is I won't purchase from a small business online without PayPal. PayPal offers consumer protection so I can take a risk with a company I don't trust yet. if it goes bad I can file a complaint and it will almost always get resolved.
You don’t have to have paypal for that. You can easily contest any payment from your credit card.
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#315Earlier quoted context omitted.
From the other side of the fence, it has been a lot more efficient to use a responsive design on all clients, so that small screens automatically get what used to be the mobile site. The benefit for us was we don't need to maintain separate code paths which turned out to be quite a bit of code/markup and caused a lot of problems over time.
Agreed, but unfortunately not how a lot of sites work (especially Google's properties) - they'll sniff a Mobile Safari user agent and say "Here's the gimpy phone edition with half the options missing!" 13" iPad Pro? Gimped version. 12" MacBook with a smaller screen and worse CPU/GPU performance? Full version! I would've thought that it'd be simpler to have one codebase and make some UI modifications so that it works…
For touch, extra spacing is needed around click targets (allow for fat fingers).
For some touch data entry, you need to allow for different input methods, because accessing symbols and numbers is different from a real keyboard versus a virtual keyboard. Also a virtual keyboard: covers some of the page, causes scroll, causes resize, can cause zoom, loses fixed headers. Avoiding the effects of those issues often requires some compromises.
For touch, you must register onclick events on a div near to an input that can be tapped. Otherwise the browser resizes the touch zone to be bigger than the actual input, and you can't tap the div.
There are many many subtleties to how browsers treat touch events and virtual keyboards
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#316Earlier quoted context omitted.
Or... just informally incentivize employees to do the wrong thing and make sure they have (or refuse to remove availability of) the tools they use to do so. If yelp has salespeople that can alter reviews or how they show in any way, and those salespeople are incentivized to hit sales numbers, some subset of them will use the tools at their disposal to facilitate their sales. In this theoretical scenario, is Yelp exto…
>If yelp has salespeople that can alter reviews or how they show in any way, and those salespeople are incentivized to hit sales numbers, some subset of them will use the tools at their disposal to facilitate their sales. I've been threatened by SEO sales people that they can hurt my site's search rankings if I don't sign up for their service. There are robocallers[1] that pretend to be Google employees making these…
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#317Earlier quoted context omitted.
You don’t have to have paypal for that. You can easily contest any payment from your credit card.
Except you may have to deal with the inconvenience of changing your credit card number.
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#318Earlier quoted context omitted.
I wouldn't necessarily frame that as an inevitability of Dropbox as a product, as much as an inevitability of the traditional VC funding model. It's likely you could build a very healthy business selling people file syncing — I personally use a tiny minimalist Dropbox competitor that seems to be doing just fine. The hypergrowth demanded by investors when you take on $1.7B in funding is what's the challenge.
This was one of the biggest takeaways from the "Startup podcast". If you haven't heard it, it details Alex Blumberg (of this American Life fame) attempts to create a company producing high quality long form podcasts. At one point he and his partner are getting excited that they are on the road to profitability in 6 months. One of their VCs gets upset by this saying that targeting profitability is a sure way to end up…
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#319Earlier quoted context omitted.
It's worth pointing out that Google shamelessly cloned Yelp and funnels everyone into using their clone when they search for restaurants. If Yelp is in desperate spot its because Google put them there.
Most companies face stiff competition and that's no reason to excuse immoral behavior. Not to mention that Google tried to acquire Yelp and was turned down. Either Yelp's plan to take on Google always included copious dark patterns, or their earlier plans totally failed and this is what they've fallen back on. Either way Yelp can't die soon enough.
Re: Yelp Is Replacing Restaurants’ Phone Numbers So Grubhub Can Take a Cut
#320Earlier quoted context omitted.
From the other side of the fence, it has been a lot more efficient to use a responsive design on all clients, so that small screens automatically get what used to be the mobile site. The benefit for us was we don't need to maintain separate code paths which turned out to be quite a bit of code/markup and caused a lot of problems over time.
Agreed, but unfortunately not how a lot of sites work (especially Google's properties) - they'll sniff a Mobile Safari user agent and say "Here's the gimpy phone edition with half the options missing!" 13" iPad Pro? Gimped version. 12" MacBook with a smaller screen and worse CPU/GPU performance? Full version! I would've thought that it'd be simpler to have one codebase and make some UI modifications so that it works…