Friday, February 28, 2014

JavaScript Key Array

Today I discovered that javascript now supports Key Value Arrays....sweeeet.
<script type="text/javascript">

var Key = {
  a : "hello",
  b: "world"
}

alert(Key.a);
alert(Key.b);

</script>

Wednesday, February 26, 2014

Monday, February 24, 2014

SharePoint 2013 - User Profile Cleanup Timer Job

Diagrams below explain how the user profiles are getting imported by User Profile Application in SharePoint 2013 and then how they are deleted from the SharePoint.

MySites is created when user accesses the MySite Host Site.


After the profiles are marked deleted in the UserProfile_Full table, Cleanup job takes care of the dirty work.



Official SharePoint Documentation

I have recently contributed to the official SharePoint documentation for developement. Check it out here: https://docs.microsoft.com/en-us...