this post was submitted on 22 Oct 2023
0 points (NaN% liked)

Memes

45158 readers
2707 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] hperrin@lemmy.world 0 points 11 months ago (2 children)

Building a great mobile website is much harder than building a great mobile app, so I understand when they just don't build a great website to begin with, but taking away an existing website, yeah, that sucks.

[–] bleistift2@feddit.de 0 points 11 months ago (1 children)

Building a great mobile website is much harder than building a great mobile app

Are you a web developer and an equally good app developer to make such a statement?

[–] hperrin@lemmy.world 0 points 11 months ago (1 children)
[–] ChaoticNeutralCzech@feddit.de 0 points 11 months ago

I have doubts. Great website developers often make a half-assed app by wrapping the website in a crippled browser. The T-Mobile app is not even subtle about this, there was a URL bar in the version I last used.

[–] ChaoticNeutralCzech@feddit.de 0 points 11 months ago* (last edited 11 months ago) (3 children)

You need one anyway for desktop users. A desktop-first website will usually be more accessible and easier to onboard, especially for infrequent users.

Example: To track a package, a certain store emailed me a button whose destination is this monster of a URL:

https://labia.page.link/?link=https://order.fart.cum/cz/history/%23/lookup?orderId%3D4206913372%26lid%3DAE91DCC0397DEADBEEF42069ACAB707BE6A1800B5ACEFAC3AAC3C14159265359&apn=com.labia.fart.app&afl=https://order.fart.cum/cz/cs/purchases/4206913372/?lid=AE91DCC0397DEADBEEF42069ACAB707BE6A1800B5ACEFAC3AAC3C14159265359&ibi=cum.labia.fart.app&ifl=https://order.fart.cum/cz/cs/purchases/4206913372/?lid=AE91DCC0397DEADBEEF42069ACAB707BE6A1800B5ACEFAC3AAC3C14159265359&ofl=https://order.fart.cum/cz/cs/purchases/4206913372/?lid=AE91DCC0397DEADBEEF42069ACAB707BE6A1800B5ACEFAC3AAC3C14159265359&imv=1.24.0&amv=2915

(Numbers and some strings were changed but the gist and 604-character length remains.)

The main function of such a long URL is to redirect desktop users to https://order.fart.cum/cz/cs/purchases/4206913372/ to see the tracking info while mobile users get directed to the app store to get an app (or view the link in the app if they have it). These are (probably) Google Firebase links and they're absolutely terrible. While they make life slightly easier for existing app users (saves one click but only if they go through the email), this implementation makes it way harder for others to reach the content. Either you get the app, log in there and part with fucking 300 MB of storage, or if you have no mainstream App Store, storage or time, you are forced to do a workaround: Desktop Mode (that may or may not work), rewriting the URL (difficult because it’s so long and includes https: several times, may require hex-decoding), or finding a computer. All this just to check one order from a store you’ll forget about next week.

I have demonstrated that instead of just getting sent the desktop-friendly URL (and perhaps seeing a floating “Open in app” button at the destination), most users are put through extra nuisance that took effort to implement. Sure, some customers are frequent enough to use the app while most are happy with a website but once the business invests in the app, they will absolutely make sure everyone is pushed there despite it being less convenient for both parties.

[–] bleistift2@feddit.de 0 points 11 months ago (1 children)

extra nuisance that took effort to implement

I think this point needs to be stressed more. It is dead simple to write a website that works well on mobile phones. In fact, the first ever website, without CSS, without any JS, without fancy HTML5 features, is mobile friendly: http://info.cern.ch/hypertext/WWW/TheProject.html

It’s only when you start adding useless bells and whistles like floating shit in from left and right, tons of animations, side-by-side displays, overlays and whatnot that you need to start being competent to make it work on mobile.

[–] ChaoticNeutralCzech@feddit.de 0 points 11 months ago

You are correct. I once tried to develop a multi-platform web app and getting the touch events right was a pain. But a somewhat basic ESP32 setup website worked on mobile without extra effort.

[–] hperrin@lemmy.world 0 points 11 months ago* (last edited 11 months ago) (2 children)

Most apps would do fine without a website. Most everyone has a phone, but a fair number of people don't have a desktop or laptop. And pretty much everyone who has a desktop or laptop also has a phone.

A number of currently popular apps don't have a website, let alone a mobile friendly website.

[–] ChaoticNeutralCzech@feddit.de 0 points 11 months ago* (last edited 11 months ago)

That depends on what kind of service you provide.

Games more complex than 2048, video calls? Sure.
Short video platform? Maybe.
Commerce? Absolutely not.

[–] bleistift2@feddit.de 0 points 11 months ago* (last edited 11 months ago) (2 children)

You’re missing the main point: A web app works for both desktop and phone users. A mobile app doesn’t.

And I, for one, don’t have a smart phone, though I’ll admit I’m lonely in this position.

[–] ChaoticNeutralCzech@feddit.de 0 points 11 months ago

You are not 100% alone. I technically have a smartphone but use it as a mini (5") tablet. My SIM is in a feature phone because greedy T-Mobile (Telekom in Deutschland) will not give me more than 1 MB/day for a decent price.

[–] hperrin@lemmy.world 0 points 11 months ago* (last edited 11 months ago) (1 children)

A webapp sometimes works fine for phone users. There are things that websites can't do on mobile. For example, on iOS, only the latest OS version has support for push notifications from PWAs, and even then, they can't make noise or vibrations. They are always delivered silently. PWAs are also always rendered with WebKit on iOS. WebKit doesn't support a number of features.

Yes, a mobile app doesn't help desktop users, but there are waaaaaaaay more mobile users than desktop users.

[–] bleistift2@feddit.de 0 points 11 months ago (1 children)

on iOS, only the latest OS version has support for push notifications

they can’t make noise or vibrations

[–] hperrin@lemmy.world 0 points 11 months ago (1 children)

I mean, for an email app, that’s kind of a big deal.

[–] bleistift2@feddit.de 0 points 11 months ago

Only if you absolutely need some crucial bit of information the moment it arrives, in which case, email isn’t for you, since messages can take up to 3 days to arrive.

[–] GeneralVincent@lemmy.world 0 points 11 months ago (1 children)

(Numbers and some strings were changed but the gist and 604-character length remains.)

Sooooo... were "labia.fart.cum" parts that were changed, or...??

[–] ChaoticNeutralCzech@feddit.de 0 points 11 months ago* (last edited 11 months ago)

Sure, go to labia.fart.cum. But you’ll only get the full Fart.cum^®^ experience with the Fart Labia™ app!