7 ms·
Making Instant C# Viable - Vizualization
- deleted 14y ago[deleted]
- tylermenezes 14y agoIt would be cool to see this integrated with the system used in the backend at Pex for Fun (http://www.pexforfun.com/ http://www.pexforfun.com/), which tries to automatically find "interesting" inputs for a function given the code.
- ermau 14y agoThis is a great idea!
- pjmlp 14y agoCool! Nice work.
- skrebbel 14y agoVery nice. I'm a bit confused as to how basing this on Roslyn will allow for a MonoDevelop plugin, however. Or did Mono copy the entire Roslyn API, as well?
- ermau 14y agoAt current, I'm going to have to port it to NRefactory.
- swax 14y agoI've been planning to do something similar, but at run-time where the last known value of each variable is shown. This would complement my stuff nicely - https://github.com/swax/CodePerspective https://github.com/swax/CodePerspective
- yread 14y agowow this is insane!
- vineet 14y agoVery cool. Just a quick caution from someone who has been building similar tools (not as fancy though), is that runtime instrumentation can often severely slow down the main app to the extent that people often don't want to run such tooling.
- swax 14y agoThere are a bunch of settings where you can define the level of tracking. The state tracking is very low overhead though because it's on demand. So if you run your asp server through code perspective and then deploy it, you can at any time connect to it with the viewer and check out the current state information for all the classes.
- dos1 14y agoThis looks fantastic. The "Gibson" view is also an awesome little bonus for those of us who still love the movie Hackers.
- drsim 14y agoI've been using NCrunch for some time now, and really enjoy the instant feedback it gives on failed tests. It constantly chugs away in the background like a faithful dog. I can see things like Instant C# meaning I have to build less: a great productivity enhancer.
- ermau 14y agoThere's lots of places we can take this, which is why I categorize it as a research project. Being able to create unit tests from this, or being able to look at calls from unit tests here has definitely been on my mind. The way you enter the "test code" right now is not ideal in the slightest as I talk about in my post.
- eckyptang 14y agoThat NCrunch is pretty awesome. Never seen that. I'm currently running TestDriven.Net every 5 minutes. Installing now :) Thanks for posting.
- julius 14y agoLooks very interesting. How would Instant C# scale up to real code? What about that bank application that has the side effect of throwing 100$ away from your account on each execution?
- Devilboy 14y agoSide effects is definitely the biggest problem to solve here. For SQL you can start a transaction and roll it back afterwards. Disk access can be done with snapshots. Network traffic... well I guess it depends on what you're doing exactly. There's lots to do but it can work.
- drsim 14y agoI see it working hand-in-hand with dependency injection. So resolved mock interface implementations will be used by Instant.
- ermau 14y agoWow, this is a great idea!
- ermau 14y agoThe trick is that you simply wouldn't use this on code where irreversible side effects take place. I think there's enough methods you write where this would help to make it still useful and worthwhile. Tackling the side effect issue is far, far too big of scope.
- nuttendorfer 14y agoHere's the link to the Bret Victor presentation where he talks about this concept: http://vimeo.com/36579366 http://vimeo.com/36579366
- acron0 14y agoThis is awesome. That is all.
- vineet 14y agoNice. I see this as a nice stepping stone in between coding and creating and creating unit test. I have been a fan of Bret Victors work, but the video here has gotten me really excited.
- c3d 14y agoIn Tao, we have been trying to do it 1) for coordinates and graphical shapes 2) so that it works both ways, i.e. from code to visualizer, but also so that manipulating makes it possible to change the code. See http://www.youtube.com/watch?v=LpPwjB46E5I http://www.youtube.com/watch?v=LpPwjB46E5I for an example of how this works in practice (look around 1:20 in the video)