• phorq@lemmy.ml
    link
    fedilink
    arrow-up
    2
    ·
    10 months ago

    I count 13 steps, so it just means you’re gonna trip up on 3 of them…

    • db2@sopuli.xyz
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      10 months ago

      15 steps. You’re not counting the top, and the bottom is step 0 and we all know counting starts there.

      • UnRelatedBurner@sh.itjust.works
        link
        fedilink
        arrow-up
        1
        ·
        10 months ago

        sometimes i start my iterator with = -1. As I only +=1 it with a condition and I know that it will return true on the first cycle. I’ll chuck array[iterator] and need it to be 0 to start with ofc.

        I just have no idea how to not do this, but it looks so bad, i need a i8 instead of a u8 at least because of this

        • darcy@sh.itjust.works
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          10 months ago

          thats great unless you want i to be an unsigned integer

          edit: oops u already mentioned that

        • Kache@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          10 months ago

          What? My intuition is there’s always gotta be some equivalent nicer refactor that could do away with such an awkward construct.

          In what kind of situation would that be totally unavoidable?

  • Obi@sopuli.xyz
    link
    fedilink
    arrow-up
    1
    ·
    10 months ago

    I’m usually one to think folks exaggerate the dangerousness of strange staircases in posts like these, but yeah these are definitely gonna cause a few accidents.

    • LegionEris [she/her]@feddit.nl
      link
      fedilink
      arrow-up
      1
      ·
      10 months ago

      Yeah, I am, without sarcasm, super agile and coordinated. I would love to have these steps. It would be fun for me every time. And I’d feel so safe at the top of my tricky stairs. Unfortunately my wife would never. She’d just be trapped downstairs.

        • LegionEris [she/her]@feddit.nl
          link
          fedilink
          arrow-up
          1
          ·
          10 months ago

          Except I’m not a man, and I don’t have a cave. I’m a woman, and I have a cage. But it has to be accessible to my wife so she can let me out eventually o_o So again, no agility stairs allowed.

    • PersnickityPenguin@lemm.ee
      link
      fedilink
      arrow-up
      2
      arrow-down
      1
      ·
      10 months ago

      “Seem?”

      As an architect this is honestly insane. First rule is to do no harm, but someone obviously is a psychopath, and thats the designer.

      There is no way that thin metal can even structurally support a person.

      • GbyBE@discuss.tchncs.de
        cake
        link
        fedilink
        arrow-up
        0
        ·
        10 months ago

        Of course the metal can support a person. It’s not like one side is floating in thin air. The way this is constructed, both sides of each step are supported and the metal seems thick enough to support quite a bit of weight.

        The only thing that bothers me is that forward/backward motion of the steps would put a lot of strain on the connection to the wall or floor. With normal use, that motion is quite limited though.

        I’m quite confident the designer of those stairs used the right thickness for the material used, which you can’t judge from a picture.

  • r1veRRR@feddit.de
    link
    fedilink
    arrow-up
    1
    ·
    10 months ago

    Kubernetes is so easy! Unless you’re insane enough to have any state at all in your app. But who does that?

  • NegativeLookBehind@kbin.social
    link
    fedilink
    arrow-up
    0
    ·
    10 months ago

    Ok so just learn Kubernetes. And then realize that for it to be useful in a production environment, it needs like 10 other third party things, which you’ll also have to learn, and you’re done!

    • smik@discuss.tchncs.de
      link
      fedilink
      arrow-up
      1
      ·
      10 months ago

      10 is a bit exaggerating. What do you really need?

      ExternalDNS is nice so you don’t have to config your DNS manually. You might need to install your own Ingress controller. If you want to automatically add and renew certificates cert-manager is great. Security is important! Speaking of, you should add some kind of secret management (something like sealed-secrets, vault or Secrets Store CSI Driver).

      A really important thing is monitoring so you know your pods and the cluster itself is healthy. Prometheus is still king in that regard in my opinion. PromQL isn’t that hard. Of course some kind of alerting like AlertManager is a must for prod environments. Be aware that the front ends of those tools are not behind a login so something like oauth2-proxy and dex is vital! You might want to have some visualisation too so Grafana is a nice addition. If you add Loki too you got your OPs covered.

      Keeping track of all of your stuff is the hard part so some GitOps is highly recommended. ArgoCD or FluxCD are popular for a reason!

      I think that should cover the basic setup so you may scale your CRUD app without worries!

    • u_tamtam@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      10 months ago

      Rule of thumb for kubernetes, if you are learning it “for fun” or on your own, you are not gonna need it :)