Skip to content
  • Hjem
  • Seneste
  • Etiketter
  • Populære
  • Verden
  • Bruger
  • Grupper
Temaer
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Kollaps
FARVEL BIG TECH
  1. Forside
  2. Ikke-kategoriseret
  3. what are we even doing here man

what are we even doing here man

Planlagt Fastgjort Låst Flyttet Ikke-kategoriseret
25 Indlæg 19 Posters 1 Visninger
  • Ældste til nyeste
  • Nyeste til ældste
  • Most Votes
Svar
  • Svar som emne
Login for at svare
Denne tråd er blevet slettet. Kun brugere med emne behandlings privilegier kan se den.
  • foone@digipres.clubF foone@digipres.club

    See? Page 9. Arrays.

    foone@digipres.clubF This user is from outside of this forum
    foone@digipres.clubF This user is from outside of this forum
    foone@digipres.club
    wrote sidst redigeret af
    #15

    Usborne released a bunch of their old 80s programming books for free a while back, and they're all just a gem:

    https://usborne.com/us/books/computer-and-coding-books

    dan@mastodon.durrans.comD th@social.v.stT 2 Replies Last reply
    0
    • foone@digipres.clubF foone@digipres.club

      what are we even doing here man

      jbaggs@infosec.exchangeJ This user is from outside of this forum
      jbaggs@infosec.exchangeJ This user is from outside of this forum
      jbaggs@infosec.exchange
      wrote sidst redigeret af
      #16

      @foone I'm a little perturbed it reads: "in arrays" and not: "with arrays", to be honest.

      1 Reply Last reply
      0
      • klara@drupal.communityK klara@drupal.community

        @foone so that is why I, as a teamlead that followed a webmaster course 25 years ago, gets asked to do senior Drupal dev jobs? I sure know my Arrays from my Booleans.

        foone@digipres.clubF This user is from outside of this forum
        foone@digipres.clubF This user is from outside of this forum
        foone@digipres.club
        wrote sidst redigeret af
        #17

        @Klara yeah apparently that's all you gotta know these days to be a developer

        1 Reply Last reply
        0
        • tomf@mastodon.gamedev.placeT tomf@mastodon.gamedev.place

          @foone Reminds me of when a lawyer accused me of stealing someone else's graphics tech because we both used the same technology of "bilinear filtering." OK my friend you go ahead and bring that up in court be my guest.

          gunstick@mastodon.opencloud.luG This user is from outside of this forum
          gunstick@mastodon.opencloud.luG This user is from outside of this forum
          gunstick@mastodon.opencloud.lu
          wrote sidst redigeret af
          #18

          @TomF @foone IBM got a patent on some obscure graphics method I used many years before in demo programming around 1990.
          I can't recall what it was. Maybe sprites masking with a CPU. Was something obvious

          1 Reply Last reply
          0
          • foone@digipres.clubF foone@digipres.club

            if someone doesn't have experience with arrays, then they don't have enough experience with programming to hire them to program for you. they are still on page 9 of the programming book

            linear@nya.socialL This user is from outside of this forum
            linear@nya.socialL This user is from outside of this forum
            linear@nya.social
            wrote sidst redigeret af
            #19
            @foone@digipres.club i will take this opportunity to once again tell tale of the time i worked on an embedded device with a firmware written in C, roughly a 150,000-line codebase on a little STM32 chip

            the original author of the code base did not, in fact, seem to understand what an array was.

            the device communicated to another device bolted to the same machine, using MODBUS. with potentially up to 10,000 MODBUS registers storing data, but realistically only a few actually in use.

            the file defining the structure where the data was stored for the registers simply made a struct, with elements starting at "reg0" and incrementing up to "reg10000". the implementation file was just as bad.

            this is why the codebase was roughly 150,000 lines. it should have been perhaps 5000.


            the code used a small function that did pointer math in order to actually access the register, usually, unless it was referenced directly in code, or sometimes used a macro instead.

            none of this was even the worst offense within the codebase.
            gloriouscow@oldbytes.spaceG 1 Reply Last reply
            0
            • foone@digipres.clubF foone@digipres.club

              Usborne released a bunch of their old 80s programming books for free a while back, and they're all just a gem:

              https://usborne.com/us/books/computer-and-coding-books

              dan@mastodon.durrans.comD This user is from outside of this forum
              dan@mastodon.durrans.comD This user is from outside of this forum
              dan@mastodon.durrans.com
              wrote sidst redigeret af
              #20

              @foone I learnt everything I know from Computer Fun… I still have the book.

              1 Reply Last reply
              0
              • foone@digipres.clubF foone@digipres.club

                if someone doesn't have experience with arrays, then they don't have enough experience with programming to hire them to program for you. they are still on page 9 of the programming book

                nantucketlit@mastodon.socialN This user is from outside of this forum
                nantucketlit@mastodon.socialN This user is from outside of this forum
                nantucketlit@mastodon.social
                wrote sidst redigeret af
                #21

                @foone Arrays are when it stars getting fun. I think if someone's starting out and they get excited learning about multi-dimensional arrays, that's a good sign.

                1 Reply Last reply
                0
                • linear@nya.socialL linear@nya.social
                  @foone@digipres.club i will take this opportunity to once again tell tale of the time i worked on an embedded device with a firmware written in C, roughly a 150,000-line codebase on a little STM32 chip

                  the original author of the code base did not, in fact, seem to understand what an array was.

                  the device communicated to another device bolted to the same machine, using MODBUS. with potentially up to 10,000 MODBUS registers storing data, but realistically only a few actually in use.

                  the file defining the structure where the data was stored for the registers simply made a struct, with elements starting at "reg0" and incrementing up to "reg10000". the implementation file was just as bad.

                  this is why the codebase was roughly 150,000 lines. it should have been perhaps 5000.


                  the code used a small function that did pointer math in order to actually access the register, usually, unless it was referenced directly in code, or sometimes used a macro instead.

                  none of this was even the worst offense within the codebase.
                  gloriouscow@oldbytes.spaceG This user is from outside of this forum
                  gloriouscow@oldbytes.spaceG This user is from outside of this forum
                  gloriouscow@oldbytes.space
                  wrote sidst redigeret af
                  #22

                  @linear @foone

                  embedded undertale

                  1 Reply Last reply
                  0
                  • foone@digipres.clubF foone@digipres.club

                    what are we even doing here man

                    kgmadee2@mathstodon.xyzK This user is from outside of this forum
                    kgmadee2@mathstodon.xyzK This user is from outside of this forum
                    kgmadee2@mathstodon.xyz
                    wrote sidst redigeret af
                    #23

                    @foone im not a developer, but I can say in good conscience that I do 🙂

                    1 Reply Last reply
                    0
                    • foone@digipres.clubF foone@digipres.club

                      Usborne released a bunch of their old 80s programming books for free a while back, and they're all just a gem:

                      https://usborne.com/us/books/computer-and-coding-books

                      th@social.v.stT This user is from outside of this forum
                      th@social.v.stT This user is from outside of this forum
                      th@social.v.st
                      wrote sidst redigeret af
                      #24

                      @foone I've posted this page from Usborne's guide to jargon before and commented that I'd be happy if all programmers were as computer literate as grade school students in the 80s.

                      1 Reply Last reply
                      0
                      • foone@digipres.clubF foone@digipres.club

                        if someone doesn't have experience with arrays, then they don't have enough experience with programming to hire them to program for you. they are still on page 9 of the programming book

                        barubary@infosec.exchangeB This user is from outside of this forum
                        barubary@infosec.exchangeB This user is from outside of this forum
                        barubary@infosec.exchange
                        wrote sidst redigeret af
                        #25

                        @foone Hey, functional programmers need jobs, too!

                        1 Reply Last reply
                        0
                        • bogwitch@social.data.coopB bogwitch@social.data.coop shared this topic
                        Svar
                        • Svar som emne
                        Login for at svare
                        • Ældste til nyeste
                        • Nyeste til ældste
                        • Most Votes


                        • Log ind

                        • Har du ikke en konto? Tilmeld

                        • Login or register to search.
                        Powered by NodeBB Contributors
                        Graciously hosted by data.coop
                        • First post
                          Last post
                        0
                        • Hjem
                        • Seneste
                        • Etiketter
                        • Populære
                        • Verden
                        • Bruger
                        • Grupper