Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • 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
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Programmer Humor
  3. Programmers then and now

Programmers then and now

Scheduled Pinned Locked Moved Programmer Humor
programmerhumor
64 Posts 47 Posters 6 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G [email protected]

    all apps are already built

    Couldn't be further from the truth. You also have to consider competition.

    A This user is from outside of this forum
    A This user is from outside of this forum
    [email protected]
    wrote on last edited by
    #55

    Can't think of anything that could serve a major need right now, but I absolutely identified things in my life where I could use a preexisting tool to accomplish my goal, but it's much less hassle for me to use the one I made for myself. You don't have to transform the world, sometimes you can help yourself with a minor inconvenience and then put it out there for anyone who might find themselves with the same inconvenience.

    1 Reply Last reply
    1
    • cm0002@lemmy.worldC [email protected]
      This post did not contain any content.
      G This user is from outside of this forum
      G This user is from outside of this forum
      [email protected]
      wrote on last edited by
      #56

      I have never Googled "how to center div 2025" because the last time I had to center a div was in 2024. I've never asked ChatGPT to fix a syntax error because I use Copilot. Exiting Vim is basically the only thing I know how to do in Vim, but I can do it. And my bug fixin' is generally one-for-one.

      On the flip side, I can write some code without StackOverflow and AI. Writing a game in Assembly, these days, is for a specific kind of hobbyist or absolute fools. Languages using pointers are mostly for specific types of application and completely irrelevant for most programmers these days -- and the overwhelming bulk of us are better for it. And writing code by hand is an incredible talent and skill, but again, essentially useless these days.

      donuts@lemmy.worldD 1 Reply Last reply
      0
      • G [email protected]

        I have never Googled "how to center div 2025" because the last time I had to center a div was in 2024. I've never asked ChatGPT to fix a syntax error because I use Copilot. Exiting Vim is basically the only thing I know how to do in Vim, but I can do it. And my bug fixin' is generally one-for-one.

        On the flip side, I can write some code without StackOverflow and AI. Writing a game in Assembly, these days, is for a specific kind of hobbyist or absolute fools. Languages using pointers are mostly for specific types of application and completely irrelevant for most programmers these days -- and the overwhelming bulk of us are better for it. And writing code by hand is an incredible talent and skill, but again, essentially useless these days.

        donuts@lemmy.worldD This user is from outside of this forum
        donuts@lemmy.worldD This user is from outside of this forum
        [email protected]
        wrote on last edited by [email protected]
        #57

        I've never asked ChatGPT to fix a syntax error because I use Copilot

        If you are going to be this pedantic, I'll have you know Copilot is a ChatGPT model in a Microsoft skin.

        1 Reply Last reply
        2
        • cm0002@lemmy.worldC [email protected]
          This post did not contain any content.
          W This user is from outside of this forum
          W This user is from outside of this forum
          [email protected]
          wrote on last edited by
          #58

          Wth is "Fixing memory leaks using pointers"?

          1 Reply Last reply
          10
          • M [email protected]

            tar -eXtract Ze Vucking File

            L This user is from outside of this forum
            L This user is from outside of this forum
            [email protected]
            wrote on last edited by
            #59

            I was about to say tar -CompressZeVuckingFile; great mnemonic and I use it every time!

            1 Reply Last reply
            0
            • firelizzard@programming.devF [email protected]

              I almost never create a tarball, so I have to look up the syntax for that. Which is as simple as man tar. But as far as extracting it almost couldn't be easier, tar xf <tarball> and call it a day. Or if you want to list the contents without extracting, tar tf <tarball>. Unless you're using an ancient version of tar, it will detect and handle whatever compression format you're using without you having to remember if you need z or J or whatever.

              L This user is from outside of this forum
              L This user is from outside of this forum
              [email protected]
              wrote on last edited by [email protected]
              #60

              It can be easier if you're used to the dash before the arguments; it's optional but you can put them:

              tar -cf   # Compress File
              tar -xf   # Xtract File
              
              1 Reply Last reply
              0
              • M [email protected]

                I often found the correct answers in the comments of an answer

                L This user is from outside of this forum
                L This user is from outside of this forum
                [email protected]
                wrote on last edited by
                #61

                Still do.

                1 Reply Last reply
                1
                • icastfist@programming.devI [email protected]

                  That deserves a "do you know how to read?", because the exit command is on the lower part of the screen for nano

                  L This user is from outside of this forum
                  L This user is from outside of this forum
                  [email protected]
                  wrote on last edited by
                  #62

                  To be fair, they show up as “^X” or whatever, and typing [Shift]+[6] followed by the [X]-key doesn't do the trick.

                  1 Reply Last reply
                  1
                  • Z [email protected]

                    You couldn't crank your CPU in the olden days, it'd make games run in fast forward.

                    L This user is from outside of this forum
                    L This user is from outside of this forum
                    [email protected]
                    wrote on last edited by
                    #63

                    To be fair, unlocking the frame rate on console-to-PC ports still fast-forwards many games including Nier: Automata or breaks the physics like in Skyrim.

                    It doesn't have to be this way, any more, but it still is because… Lack of expertise?
                    I really can't think of anything else?

                    1 Reply Last reply
                    0
                    • umbraroze@slrpnk.netU [email protected]

                      If using plain CSS, usually it's enough to set width appropriately, and margin-left and margin-right to auto.

                      If using a Modern Frontend/CSS Framework, then may God have mercy on your poor soul.

                      (Seriously I just started a new project with TailwindCSS and I'm so confused. But not entirely desperate yet.)

                      L This user is from outside of this forum
                      L This user is from outside of this forum
                      [email protected]
                      wrote on last edited by
                      #64

                      My brother in Christ TailwindCSS just gives classes that let you do inline styling in a shorter syntax! (and theme configuration, but mostly inline styling)

                      Replace width: ...px with w-..., margin-left: ... with ml-... and margin-right: ... with mr-....
                      Setting both horizontal margins is mx-... and both vertical margins is my-....

                      If you can do inline styling, TW just makes the syntax a bit shorter, but that's it, really.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups