Monthly Archives: February 2016

Angular.js – angularInit(..) and forEach

This is first post about Angular.js source code analysis. Angular.js start with following code. 1 2 3 4 5 bindJQuery(); publishExternalAPI(angular); jqLite(document).ready(function() { angularInit(document, bootstrap); }); bindJQuery(); publishExternalAPI(angular); jqLite(document).ready(function() { angularInit(document, bootstrap); }); Before it starts, it will go though … Continue reading

Posted in Angular.js | Comments Off on Angular.js – angularInit(..) and forEach

Umbraco – WriteLock and ReadLock with ReaderWriterLockSlim

this post is to clear how to use WriteLock and ReadLock to make sure critical resources have been visited properly. Take the following code for example in “public abstract class ResolverBase : ResolverBase where TResolver : ResolverBase”. 1 2 3 … Continue reading

Posted in Umbraco | Comments Off on Umbraco – WriteLock and ReadLock with ReaderWriterLockSlim