Without a clear rule of thumb you pick some arbitrary point between every function having its own file and every function being in one file.
Your code should be organized around the information that identifies it.
Without a clear rule of thumb you pick some arbitrary point between every function having its own file and every function being in one file.
Your code should be organized around the information that identifies it.
The answer was vaguely: we want two microservices when we want to deploy separately, but why do you want to deploy two applications?
The answer was usually that there were two teams? Well why two teams?
The answer was vaguely: we want two microservices when we want to deploy separately, but why do you want to deploy two applications?
The answer was usually that there were two teams? Well why two teams?
Software testing is a hack for frequent feedback.
Not only is software testing a limitation for skill development, it's a super power when used correctly.
Copying code from the Internet? Test it to confirm it works
Software testing is a hack for frequent feedback.
Not only is software testing a limitation for skill development, it's a super power when used correctly.
Copying code from the Internet? Test it to confirm it works
The manager should take ownership for an engineering culture that convinced an engineer to hide their mistake.
There's only one way to get the culture you want: demonstrate it every chance you get
The manager should take ownership for an engineering culture that convinced an engineer to hide their mistake.
There's only one way to get the culture you want: demonstrate it every chance you get
Could be written as
filter(lambda x: "k" in x["name"] and x["age"] < 20)
I could imagine the former has the benefit of checking for the value existing in the dict but otherwise I think this is better solved without a package
Could be written as
filter(lambda x: "k" in x["name"] and x["age"] < 20)
I could imagine the former has the benefit of checking for the value existing in the dict but otherwise I think this is better solved without a package