In general, I avoid dynamic mode unless I have no ...
# general
s
In general, I avoid dynamic mode unless I have no choice.
1
👍 1
m
Why? I thought it is a good feature.
s
In my experience, it is less stable and slower than standard mode.
m
So you face more errors with it. I think it is slower, but it works for me just fine. Will take note of that.
s
dynamic mode works more like working in the UI as an end user. This is important in some cases, but usually I want code to just perform logic in as efficient way possible. Dynamic mode will error or worse - exhibit unexpected behavior. Since our code is well, code I prefer it to work like a program, not an end user when possible.
m
I don't understand that part "dynamic mode will error...", what is wrong with that?
s
Unnecessary errors are unwelcome; at least in my code 🙂