In general, I avoid dynamic mode unless I have no choice.
➕ 1
👍 1
m
Marwan
11/29/2022, 5:15 PM
Why?
I thought it is a good feature.
s
Shawn Talbert
11/29/2022, 5:18 PM
In my experience, it is less stable and slower than standard mode.
m
Marwan
11/29/2022, 5:21 PM
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
Shawn Talbert
11/29/2022, 5:30 PM
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
Marwan
11/29/2022, 5:34 PM
I don't understand that part "dynamic mode will error...", what is wrong with that?
s
Shawn Talbert
11/29/2022, 6:59 PM
Unnecessary errors are unwelcome; at least in my code 🙂