I’ve been trying to see if I have memory leaks in my web application. Windows task explorer is helpful, but if you’re like me and have a lot of chrome extensions running, it is difficult to find the right process to focus on. The Chrome Task manager simplifies this immensely. Just hit shift + esc in Chrome or menu > more tools > task manager ......
The Norwegian Developer Conference 2015 videos have been uploaded in the last few days. I didn’t get to go, but they always have a lot of great speakers and .Net Rocks guys are always pitching it. I’m especially going to watch Rob Eisenberg’s talks. I’ve been interested in Aurelia and I hope to get to use it soon. It’s getting close to a beta release here in June 2015 ......
- close Visual Studio
- delete the c:\users\{your user}\My Documents\IISExpress
- restart Visual Studio and run your web application
The IISExpress directory will be re-created and IIS Express should work again.
I needed to fade out an image, then fade in the new image. For this post, I’m not concerned with the coordination with the loading delay of the new image. I will show how fade out and in a single image. This MSDN post from December, 2011 was very useful and worked well today in June 2015. Support is now nearly ubiquitous, since IE 10, except for Opera Mini, so we don’t have to worry about that. Using the @keyframes from CSS3, this is a relatively easy task. No jQuery needed . @keyframes demo { from ......
I jumped into the world of GitHub pull requests after making a feature request to Jasmine. My pull request is to add toHaveBeenCalledOnce and toHaveBeenCalledTimes after they said they’d look at a pull request from my feature request for it. This was my first time, so I had to look up some guides. Thankfully, StackOverflow had the answer and GitHub has a nice guide and Jasmine had a straightforward contributors guide. After making my fork and starting my branch, I tried to run the tests only in the ......
Automation tools for Visual Studio and TFS are starting to look very slick and should make CD and CI much easier. I’m not sure if it will have to with VS online or work on premise installations of TFS. http://blogs.msdn.com/b/vis... This is a good 8 minute introduction video. I hope it is as easy as it looks! http://channel9.msdn.com/Se... ......