• vrek@programming.dev
    link
    fedilink
    English
    arrow-up
    36
    ·
    edit-2
    1 day ago

    Reminds me of a codebase I used to work on which we had 899 variable limit and we couldn’t name them, only number them. These were limitations of the language.

    Each variable had to be assigned a 3 digit number but 1-100 were taken by internal stuff so only 101- 999 was allowed. So let’s say you wanted to check if power was between 50 and 60 you would end up with like

    #301 = 50;

    #302 = 60;

    #303 = powerSignal;

    If #303 < #301 || #303 > #302: Display error

    Continue process

          • vrek@programming.dev
            link
            fedilink
            English
            arrow-up
            19
            ·
            1 day ago

            Basically we made devices which were surgically implanted into your body to send specific electrical signals to your spine and brain for certain medical issues. The electronics were in a metal case so your icky blood and bodily fluids didn’t cause shorts. This system was to weld the metal case closed.

            • MajorasMaskForever@lemmy.world
              link
              fedilink
              English
              arrow-up
              8
              ·
              1 day ago

              Sounds like someone wanted to avoid needing to recompile for the target, but was either hardware constrained on what they wanted to do or as they thought that implementing their own language was going to be easy, learned it’s very much so not, and then took some stupid shortcuts

              I totally haven’t done that myself, nope…

              • vrek@programming.dev
                link
                fedilink
                English
                arrow-up
                7
                ·
                1 day ago

                It’s fanuc cnc… Incredibly useful and precise but OLD! They literally still support programs from bubble tape if you need. It was basically hardware constrained initially but fixing it would break backwards compatibility which is a super selling point for them to government and long term industries.

                Their controllers are mad expensive (budget version is like 30k last I checked), their support is top notch(tech typically on site within 24 hours with every possible board which may be bad so they can get you running and charge you later), they are incredibly precise and can do things other systems legally can not(a trainer I knew said “if you can move in 5 dimensions at once you can do some interesting things with nuclear energy so those require special clearance to sell”). Basically if you need them you NEED them, if you don’t then you don’t.

      • vrek@programming.dev
        link
        fedilink
        English
        arrow-up
        7
        ·
        1 day ago

        Lol, yup. Actually it was 4 axis. And connected to a laser instead of a milling bit. The system was also in a controlled gas environment which added extra complications.

        • TonyOstrich@lemmy.zip
          link
          fedilink
          arrow-up
          3
          ·
          1 day ago

          Ooh, sounds spicy.

          The hard set limit of #500-#999 is really frustrating when you also have to be careful not to overwrite certain kinds of “standard” program variables that your shop or company has decided on. I’m generally pretty OK with the limitations of these controllers and G-Code in general, but I would fucking kill to be able to use an array or to be able to declare a variable 😭.

          • vrek@programming.dev
            link
            fedilink
            English
            arrow-up
            1
            ·
            24 hours ago

            It was mostly just the naming that caused my frustration. I tried to declare all variables at start, had that section printed out and hung on my cubicle wall.

      • vrek@programming.dev
        link
        fedilink
        English
        arrow-up
        10
        ·
        1 day ago

        It was g-code which as another commentator correctly pointed out was used to control a fanuc cnc system.

      • vrek@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 day ago

        It was a lot of magic numbers, why was that set that thing set to 3 minimum? It worked good enough at 3 to be acceptable