Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)WI
DonWito @lemmy.techtailors.net
Posts 0
Comments 21
Am I the only software engineer greatly worried and disturbed by AI ?
  • Great advice. I would add to it just to learn leveraging those tools effectively. They are great productivity boost. Another side effect once they become popular is that some skills that we already have will be harder to learn so they might be in higher demand.

    Anyway, make sure you put aside enough money to not have to worry about such things 😃

  • The Maintainer Of The NVIDIA Open-Source "Nouveau" Linux Kernel Driver Resigns
  • I agree, I am certain that there are thousands of great and passionate about FOSS people there. I'm just not that certain about IBM ;) It's still probably better place to work at than most.

    All in all, I am only saying that the fact that somebody cites "personal reasons" doesn't mean there are no other factors at play.

  • How is Lemmy so good and you guys all so awesome? FUCK!
  • It's not about corporate instances. It's the bots and fake accounts/posts/comments. That's one of the issues with Reddit. There are little authentic posts. Most of them are advertisements it just reposts to farm karma to avoid detection. It's ridiculous.

  • What are your programming hot takes?
  • and I mostly work on my own projects

    Then your opinion is absolutely understandable.

    It’s also frustrating b/c types don’t guarantee that the system does-the-thing, only that the type-system and compiler are happy, so it’s like pleasing the wrong boss, or some metaphor like that.

    Types help you refactoring and communicating with other team members about expected inputs/outputs. Did you ever try debugging a number that should've been a string in a codebase that you didn't write? Example from today: jsforce will throw an exception when you pass a number instead of string due to the fact that the Salesforce server will complain that the type is incorrect. If the method had correct typing of "string", it would save me a few hours of debugging a huge library without visibility inside of it...