If only some sort of newfangled technology could come along

  • funkless_eck@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    9 hours ago

    haha, it’s actually from experience of trying to undo what AI did to my code. And I’m just a casual hobbyist in scripting languages.

    I still have a to-do to unstick how it is using a lambda to set a bool value inside a dict with only one key, when any normal human would just do

      bool_var = my_func()
    
      def my_func()
           [code goes here]
            if x:
                 return true
            else:
                  return false 
    

    it’s really been a lesson in how I can’t even use AI to learn, let alone actually produce.