Kartik Agaram
08/17/2022, 6:01 PMScott Antipa
08/20/2022, 9:43 PMKartik Agaram
08/20/2022, 10:03 PMScott Antipa
08/21/2022, 4:54 AMKartik Agaram
08/21/2022, 5:18 AMassert
! Thanks for the reminder. I shouldn't need to add debug prints to get more information on a failed assertion šJack Rusher
08/21/2022, 12:30 PMKartik Agaram
08/21/2022, 3:27 PMScott Antipa
08/21/2022, 7:28 PMwhat I need a tool for and what responsibilities to offloadOne thing I would use it for is exploring new large code bases. A lot of time spent there is just figuring out things like "If I call this function, what other functions does it call and in what situations." Or, how are these entities related, like "does a Foo always have a Bar". As this code executes, how many Bars does this Foo have on average. I see it as a way to provide active documentation. Even a custom debugger of sorts, where the user maintains debugging code making it easy to spin up a debugging session. Kind of like how react has a custom react debugger, it would be cool to be able to have that but specific to your app.
Kartik Agaram
08/21/2022, 11:39 PM