Hacker News new | ask | show | jobs
by msla 2988 days ago
> You pass around objects instead of trying to parse strings and things.

That can't be very good for debuggability.

1 comments

Type checking and calling help methods can be useful for debuggability! If you want to figure out what you're looking at in string format, call its .ToString method.
Adding extra complexity just means more to go wrong. Plain text can't really go wrong because anything can use it, anything can edit it, anything can show it. With "objects" I'm betting that Powershell itself never fails.