• mox@lemmy.sdf.org
    link
    fedilink
    arrow-up
    1
    ·
    2 years ago

    Also:

    • Simple sites allow visitors to stay safe from browser exploits by keeping scripts disabled.
    • Simple sites pose very little threat of fingerprinting or other invasive tracking techniques.
    • Simple sites can look beautiful, with a bit of well-crafted CSS.
  • Omega_Haxors@lemmy.ml
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    2 years ago

    I once went to a professional to get a website done (as my ability (read: patience) to code websites had proved inadequate) and they constantly tried to upsell me on just the most stupid bullshit. When I pointed out how a lot of moving parts just means more things that could possibly break they blew me off and acted like it was a completely unreasonable concern. Needless to say ended up using a website builder instead and despite a few small glitches it works pretty well with JS completely disabled.

    EDIT: I was particularly concerned with how heavily they were leaning on JS, to the point it flat out wouldn’t load at all for some users. Having JS flair is perfectly fine on the side but when you can’t even get fucking text to load without it, that’s a problem.

  • No1@aussie.zone
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    2 years ago

    I.d rather take any website than being continuously forced to download apps, or being told to go to Facebook for some business’s information.

    There’s 2 things a website should respect - simple do it more often -, and not doing these will earn you my wrath:

    • you should be able to at least zoom/shrink text. Some websites have things so locked down, I can never read their teeny tiny text. Fuck you ESPN. Why would you let desktop zoom, and stop it on mobile where my screen is smaller and I most need it? (I’ll leave alone the original intent of the web of separating presentation from content for another day).
    • Browser Back button should take you back to the previius ‘page’. I’m terrified to use it because you’re really showing multiple ‘pages’ on 1 real page, so who knows where I’ll end up.
  • pixxelkick@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    2 years ago

    I think the reason experienced devs tend to have minimalist websites that look like they are from the 90s, is because software devs aren’t UX experts.

    At a senior level at large companies, someone else designs the look and figmas to make the site be pretty. I don’t do that shit.

    I can do some basic stuff as a front end dev, but react has nothing to do with css animations and all the stuff you typically associate with a “pretty” website.

    Reactive frameworks are just handy for updating the dom on a mutatable website (ie forms, web socket stuff, data in out, pulling data from a db)

    Blogs tend to be statically generated so there should be zero reason to use reactive frameworks anyways, unless you add something dynamic like perhaps a comment box folks can login to and leave comments/likes/shares etc. Loading those comments will prolly want a framework.

    Aside from that, it’s mostly css to do fancy stuff.

    • knfrmity@lemmygrad.ml
      link
      fedilink
      arrow-up
      0
      ·
      2 years ago

      Pretty sites are cool and all, but in my experience super simple things often just don’t work. I’m not patient anymore when it comes to stuff like that, so I’ll close the tab real quick and find the information elsewhere or move on to the next thing.

      • Lmaydev@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        2 years ago

        Pretty sites aren’t aimed at us though.

        For the average consumer grabbing their attention is really important and first impressions mean a lot.

        If they go onto a site that looks “basic” it’ll give a bad impression of the business.

        • knfrmity@lemmygrad.ml
          link
          fedilink
          arrow-up
          1
          ·
          2 years ago

          I know I’m not part of the target audience for pretty sites, but the average user gets frustrated with poor design choices and outright broken websites as well.

          Just as one recent and therefore present example, I was on a pretty site the other day and nothing happened when I clicked on “About Us”. The next thing I did was close the tab. As you say, first impressions mean a lot.

          I hear complaints about these kind of things at work constantly as well. As an internal product owner of sorts users think I and the devs make poor design choices on our own, but all we can do is manage the best we can with the UX garbage Microsoft comes up with.

      • fd93@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        2 years ago

        Hey - the poster isn’t actually the author. That would be me! Thanks for the feedback though. I normally just use Dark Reader for switching theme.

      • jadero@programming.dev
        link
        fedilink
        arrow-up
        0
        ·
        2 years ago

        There was a thread elsewhere asking whether a toggle should show current state or the state desired. There was enough disagreement that it quickly became apparent that, whatever else the toggle does, there should be something external to the toggle showing the possible states, indicating which way to move the toggle regardless of toggle appearance.

      • qaz@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        2 years ago

        It did nothing when clicking it the first time and only changed the second time I clicked it

        • snowe@programming.devM
          link
          fedilink
          arrow-up
          1
          ·
          2 years ago

          I’ve wondered what this problem was for years but never cared to figure it out, because it always resolved after the first button press (just refresh the page and it all works properly). turns out it is something wrong with my use of local storage to save your theme state. if you don’t have the key in local storage then it does what you mentioned. I just need to switch this to prefers-color-scheme anyway.