Show HN: God mode in production code – a new way to debug in Scala
1–10 of 84 posts
Re: Show HN: God mode in production code – a new way to debug in Scala
#2Re: Show HN: God mode in production code – a new way to debug in Scala
#3Re: Show HN: God mode in production code – a new way to debug in Scala
#4Re: Show HN: God mode in production code – a new way to debug in Scala
#5Re: Show HN: God mode in production code – a new way to debug in Scala
#6I know that at least from my experience debugging our apps in production did become harder as we scaled out in terms of servers, users and code. I do wonder if its something that should be handled at the code level (by being more defensive, taking a more immutable approach) or by having better debugging tools. Anyone knows if this supports Ruby?
Re: Show HN: God mode in production code – a new way to debug in Scala
#7Re: Show HN: God mode in production code – a new way to debug in Scala
#8I know that at least from my experience debugging our apps in production did become harder as we scaled out in terms of servers, users and code. I do wonder if its something that should be handled at the code level (by being more defensive, taking a more immutable approach) or by having better debugging tools. Anyone knows if this supports Ruby?
Or by using a better type system. Or by using the type system that's available in the language. Because it's all too easy to ignore the types and for example call `get` on a Scala Option value, or `fromJust` on a Haskell Maybe. Both will throw an exception at runtime if the Option/Maybe is empty.