• 0 posts
  • 46 comments
Joined 3 years ago
Cake day: July 30th, 2023
  • Glad to hear this. Years ago I worked with Obsidian engineers (who may or may not still be there, I have no idea) and I absolutely loved the systems they had built for their games. They were able to create games with a massive amount of content with a relatively small team of engineers, so I’ve always rooted for them.

    I liked (didn’t love) and completed the first Outer Worlds but I thoroughly enjoyed Grounded - even though I never played through to the end game. I’ll definitely give this one a go.

  • Teams wasn’t specifically built for remote work though. It was built for internal chat/messaging, document sharing, planning, etc. It is 100% used internally at MS even when people aren’t working remotely.

    I know because people at MS have been complaining about it since a few years before the pandemic.

  • import builtins
    
    def HelloWorld(funcname):  
        getattr(builtins, funcname)("HelloWorld")
    
    HelloWorld("print")
    

    Edit, improved:

    import inspect, builtins
    
    def HelloWorld(funcname):
        caller = inspect.currentframe().f_code.co_name
        getattr(builtins, funcname)(caller)
    
    HelloWorld("print")