Saturday, February 6, 2010
UnKnown PCI Simple Communications Controller
If your device manger shows unknown PCI Communications controller and not sure what that device is?
Friday, February 5, 2010
Dynamically Change Environment Specific Web.Config file
When ever we develop ASP.NET application, we keep our entire environmental specific settings into web.config file. Based on where we deploy the application (Dev, Test, Prod), we will comment out other environments which is a manually process. Personally I prefer different web.config files for different environments and based on the Build option you select it should dynamically create the appropriate web.config file for that environment.
Thursday, February 4, 2010
UNIX VS Linux
Recently my wife asked me what is the difference between UNIX and Linux. Basically I dont know much about these operating systems becauseI always work with windows operating systems. Since my wife asked the difference between those and even i want to know other operating systems, so I immediately jumped into google and find the following information.
Factory Method Pattern (Creational)
AIM: Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory method lets classes defer (postpone) instantiate to subclasses.
Friday, January 29, 2010
Spyware or Antivirus Protect 2009 / sysguard.exe Infection
Most of the people browse the internet every day and some sites are reliable and some or not. Eventhough we browse good sites, some sites as 3rd party Ads which install some crap/malware in our computer and says some infection or virus were found in our computer. It asks you to purchase the software to clean up the crap/malware. So many times it happened to my wife computer and good thing is i always take image of her PC so that when ever it infected with virus, i reimage back.
Monday, January 25, 2010
SQL Queries
TABLES:
1) Table name - programmer
name not null varchar2(8) name
dob not null date date of birth
doj not null date date of joining
sex not null varchar2(1) male or female
prof1 varchar2(8) known language 1
prof2 varchar2(8) known language 2
salary not null number(4) salary
1) Table name - programmer
name not null varchar2(8) name
dob not null date date of birth
doj not null date date of joining
sex not null varchar2(1) male or female
prof1 varchar2(8) known language 1
prof2 varchar2(8) known language 2
salary not null number(4) salary
Thursday, January 21, 2010
Singleton Pattern (Creational)
AIM:
Restrict instantiation of a class to one object and provide a global point of access to the object.
Class Diagram:
Subscribe to:
Posts (Atom)