belane
belane
@servebeer @DukeSavage I've created a debug Dockerfile that will print errors to the console so we can figure out the source of the problem. Check the instructions here https://github.com/belane/docker-bloodhound/issues/8#issuecomment-1582683455 .
`if operation:` could be the right python style to do it. But you can do (and it should work): ``` >>> def Test(argument): if argument is not None: return True...
**Test 1** 👍 ``` def Main(operation): if operation: return True else: return False ```  **Test 2** 👍 ``` def Main(operation): if operation != None: return True else: return False...
Agree with @nunojusto we should have both. -s for auto running network is very important for setup nodes on servers with a supervisor.
@NeoRedPill101 congratulations on the project, I hope it continues to gain momentum. The proposal makes sense to me. I'm in!
Hi Mario/@foodsply, thank you very much for the proposal. It seems quite ambitious, so I have a few thoughts: - If approved, it might be more practical to break the...