Monday, September 14, 2015

The Five Dysfunctions of a Team

Dysfunction #1: Absence of Trust
The fear of being vulnerable with team members prevents the building of trust within the team.

Dysfunction #2: Fear of Conflict
The desire to preserve artificial harmony stifles the occurrence of productive ideological conflict.

Dysfunction #3: Lack of Commitment
The lack of clarity or buy-in prevents team members from making decisions they will stick to.

Dysfunction #4: Avoidance of Accountability
The need to avoid interpersonal discomfort prevents team members from holding one another accountable.

Dysfunction #5: Inattention to Results

The pursuit of individual goals and personal status erodes the focus on collective success.

Follow the below URL
http://flpbs.fmhi.usf.edu/pdfs/Five%20Dysfunctions%20of%20a%20Team.pdf

Please share your feedback or comments.

Thanks
Anil

Thursday, July 30, 2015

Encryption of web.config file

There are two ways to encrypt your web.config sections.

1. Using VS.NET utility "aspnet_regiis"
 
    Ex.

    C:\Windows\Microsoft.NET\Framework\v2.0.50727 aspnet_regiis -pef "appSettings" "D:\project\PP_Publish" -prov RSAProtectedConfigurationProvider

   Follow the URL for more info.

   http://blogs.msdn.com/b/mosharaf/archive/2005/11/17/protectedconfiguration.aspx
 
  http://www.codeproject.com/Articles/877258/How-to-Encrypt-Web-config-Using-aspnet-regiis-exe

2. Programmatically encrypt your web.config file

   ///////////////////////// To Encrypt /////////////////////////
Configuration config;
ConfigurationSection configSection;
config = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath);
configSection = config.GetSection("connectionStrings");
if (configSection != null)
{
if (!(configSection.SectionInformation.IsLocked))
{
configSection.SectionInformation.ProtectSection("DataProtectionConfigurationProvider");
config.Save();
}
}



///////////////////////// To Decrypt /////////////////////////

Configuration configD;
ConfigurationSection configSectionD;
configD = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath);
configSectionD = configD.GetSection("connectionStrings");
if (configSectionD != null)
{
if (!(configSectionD.SectionInformation.IsLocked))
{
configSectionD.SectionInformation.UnprotectSection();
configD.Save();
}
}

For more info, follow the below URL

http://www.techrepublic.com/blog/software-engineer/encrypting-net-configuration-files-through-code/

Thanks
Anil
  

Tuesday, June 30, 2015

How the year, time and clock is measured?

Our perception of time is based on the earth's revolution around the sun and its rotation around its own axis. One complete cycle around the sun is a year, while a complete rotation on its axis constitutes a day. 
Based on these observations, a day has 24 hours while 365 days constitute a year. The day is further divided into hours, minutes and seconds.
 Time measured by the earth's rotation relative to the sun is called solar time. For any given point, there could be two values of solar time — apparent and mean. Apparent time is measured by direct observation of the sun by a sundial. Mean solar time, however, is measured by assuming that relative to the earth, the sun is at the same position after every 24 hours. Most clocks and watches are based on mean solar time. 

What is the most accurate measure of time?
Measurement of time based on the earth's rotation and revolution has its limitations and hence the unit of time defined by the International System of Units is not based on astronomical observation. 
The length of a second is defined according to the vibrations of caesium atoms at various atomic clocks. International Atomic Time is based on a system of about 270 atomic clocks. Signals from these clocks are transmitted to the International Bureau of Weights and Measures located in Sevres, France, which uses the signals to form the International Atomic Time. Seconds measured by atomic clocks are the most accurate. These clocks are predicted to be off by less than a second in 50 million years. 

Monday, April 27, 2015

URL Routing to remove .aspx extension from URL in C#.net

Global.asax File:

static void RegisterRoutes()
{
System.Web.Routing.RouteTable.Routes.Add("login",new System.Web.Routing.Route("login", new RouteHandler("~/login.aspx")));
System.Web.Routing.RouteTable.Routes.Add("Main", new System.Web.Routing.Route("Main", new RouteHandler("~/Main.aspx")));
System.Web.Routing.RouteTable.Routes.Add("Message", new System.Web.Routing.Route("Message", new RouteHandler("~/Message.aspx")));
}

public class RouteHandler : IRouteHandler
{
string _virtualPath;
public RouteHandler(string virtualPath)
{
_virtualPath = virtualPath;
}
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
foreach (var value in requestContext.RouteData.Values)
{
requestContext.HttpContext.Items[value.Key] = value.Value;
}
return (Page)System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(_virtualPath, typeof(Page));
}
}

Web.config: