Upvote!
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
Rikudou_Sage@lemmings.world to Programmer Humor@programming.dev · 7 days ago

I'm not sure, but it might be something about UUIDs

lemmings.world

message-square
42
fedilink
425

I'm not sure, but it might be something about UUIDs

lemmings.world

Rikudou_Sage@lemmings.world to Programmer Humor@programming.dev · 7 days ago
message-square
42
fedilink
alert-triangle
You must log in or # to comment.
  • 𝕸𝖔𝖘𝖘@infosec.pub
    link
    fedilink
    arrow-up
    5
    ·
    6 days ago

    Plot twist: it returns the bios serial.

  • carrylex@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    7 days ago

  • Cevilia (she/they/…)@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    4
    ·
    7 days ago

    Picture isn’t loading for me?

    • mere@lemmy.blahaj.zone
      link
      fedilink
      arrow-up
      1
      ·
      4 days ago

      are you from the UK by any chance

      • Cevilia (she/they/…)@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        1
        ·
        4 days ago

        Yes

        • mere@lemmy.blahaj.zone
          link
          fedilink
          arrow-up
          1
          ·
          2 days ago

          same - i think it’s because the image is blocked in the UK because of the online safety act. Try using a VPN and see if that helps

          • Cevilia (she/they/…)@lemmy.blahaj.zone
            link
            fedilink
            English
            arrow-up
            1
            ·
            2 days ago

            Actually I’ve since learned that it’s because imgur was collecting kids’ private data, and decided to block the UK rather than stop.

    • irelephant [he/him]@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      9
      ·
      7 days ago

      • Cevilia (she/they/…)@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        4
        ·
        7 days ago

        Thanks, kind stranger. And wow, I haven’t seen that much UUID since I coded for Second Life.

  • BeeegScaaawyCripple@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    7 days ago

    i’ve now read UUID so many times i’m starting to think it’s some kind of sex disease

    • Rikudou_Sage@lemmings.worldOP
      link
      fedilink
      arrow-up
      2
      ·
      7 days ago

      That must one awkward conversation… “Can you explain where did you get the uuid from?”

      • BeeegScaaawyCripple@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        6 days ago

        i told you last logic loop NO

  • xoggy@programming.dev
    link
    fedilink
    English
    arrow-up
    3
    ·
    7 days ago

    The feeling you get when searching your codebase for references to your “uid” variable but this cheeky boy keeps popping up.

    • cbazero@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      7 days ago

      n, n, n, nn, nnnnnnnnnnnnnnnnnnn, n, nn, n, n,n …

  • MonkderVierte@lemmy.zip
    link
    fedilink
    arrow-up
    2
    ·
    7 days ago

    https://makimo.com/blog/scientific-perspective-on-naming-in-programming/

  • whimsy@lemmy.zip
    link
    fedilink
    English
    arrow-up
    52
    ·
    7 days ago

    Semantic satiation. Or whatever it’s called, i think ive officially lost it after reading this

    • ByteOnBikes@discuss.online
      link
      fedilink
      arrow-up
      4
      ·
      7 days ago

      I read the code like half a dozen times and my brain hurts.

  • 18107@aussie.zone
    link
    fedilink
    English
    arrow-up
    46
    ·
    edit-2
    7 days ago

    Is “main” a valid Java identifier?

    yes
    package main;
    
    public class main {
    
        static main main;
        String Main;
    
        main(String main) {
            Main = main;
        }
    
        main(main main) {
            System.out.println(main.Main);
        }
    
        main main(main main) {
            return new main(main);
        }
    
        public static void main(main...Main) {
            main:
            for (main main : Main) {
                main = (main instanceof Main) ? new main(main): main.main(main);
                break main;
            }
        }
    
        public static void main(String[] args) {
            main = new main("main");
            main.main(main, main);
            main = main.new Main(main) {
                main main(main main) {
                    return ((Main)main).main();
                }
            };
            main.main(main);
            main.main(main,main);
        }
    
        abstract class Main extends main {
            Main(main main) {
                super("main");
            }
    
            main main() {
                main.Main = "Main";
                return main;
            }
        }
    }
    
    • Hupf@feddit.org
      link
      fedilink
      arrow-up
      20
      ·
      7 days ago

    • killeronthecorner@lemmy.world
      link
      fedilink
      English
      arrow-up
      3
      ·
      7 days ago

      This is your main on drugs 🍳

    • luciferofastora@feddit.org
      link
      fedilink
      arrow-up
      19
      ·
      7 days ago

      Who hurt you?

      • Rikudou_Sage@lemmings.worldOP
        link
        fedilink
        arrow-up
        17
        ·
        7 days ago

        Main, obviously.

  • UnderpantsWeevil@lemmy.world
    link
    fedilink
    English
    arrow-up
    40
    ·
    7 days ago

    UwUID

  • Not_mikey@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    21
    ·
    edit-2
    7 days ago

    I can see how this may be useful. My understanding is that this is go lang and the person created a wrapper type UUID and this function takes the go standard library uuid.UUID and returns the wrapped UUID.

    The wrapped UUID could be useful as you can then define methods for it like toInt() or something to make it implement some ID interface you have set up. It’s a common pattern in go to create a thin wrapper around an imported type so you can implement all the methods required for some interface you defined. It does make naming those thin wrappers hard because what are you supposed to name the struct that just contains a uuid?

    • Rikudou_Sage@lemmings.worldOP
      link
      fedilink
      arrow-up
      16
      ·
      7 days ago

      Yep, that person would be me and that’s exactly what I was doing, just found it funny that there was so many uuids in the piece of code.

      Originally the function was named FromUuid but I couldn’t resist renaming it to make it even better.

    • ByteJunk@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      7 days ago

      Clearly, the answer is uuid.

  • PattyMcB@lemmy.world
    link
    fedilink
    arrow-up
    21
    ·
    7 days ago

    Where did i put that Spiderman x3 pointing meme?

  • HakunaHafada@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    20
    ·
    7 days ago

    UwUIDs

  • jbrains@sh.itjust.works
    link
    fedilink
    arrow-up
    18
    ·
    7 days ago

    New Dutch programming language just dropped.

  • mushroommunk@lemmy.today
    link
    fedilink
    arrow-up
    19
    arrow-down
    1
    ·
    7 days ago

    When you get a new boss at Twitter who ranks people by lines of code written

  • ExperimentalGuy@programming.dev
    link
    fedilink
    arrow-up
    9
    ·
    7 days ago

    Why I love the Into trait in rust

Programmer Humor@programming.dev

programmer_humor@programming.dev

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: !programmer_humor@programming.dev

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

  • Keep content in english
  • No advertisements
  • Posts must be related to programming or programmer topics
Visibility: Public
globe

This community can be federated to other instances and be posted/commented in by their users.

  • 622 users / day
  • 5.48K users / week
  • 9.71K users / month
  • 19.5K users / 6 months
  • 1 local subscriber
  • 26.9K subscribers
  • 1.75K Posts
  • 61.6K Comments
  • Modlog
  • mods:
  • Feyter@programming.dev
  • adr1an@programming.dev
  • BurningTurtle@programming.dev
  • Pierre-Yves Lapersonne@programming.dev
  • BE: 0.19.6
  • Modlog
  • Instances
  • Docs
  • Code
  • join-lemmy.org