Tuesday, August 17, 2010

Clauses of Cloud Computing

Cloud computing can be break into three clauses:

1. Software-as-a-Service (SaaS):
This comprises end-user applications delivered as a service rather than traditional on-premise software.
2. Platform-as-a-Service (PaaS):
This provides an independent platform as a service on which developers can build and deploy custom applications.
3. Infrastructure-as-a-Service (IaaS):
This comprises the hardware and technology for computing power, storage, operating systems or other infrastructure delivered as an on-demand service rather than a dedicated onsite resource.

Wednesday, August 11, 2010

A few note on KDevelop Project files

The KDevelop-Project was founded in 1998 to build up an easy to use IDE (Integrated Development Environment) for KDE. Since then, the KDevelop IDE is publicly available under the GPL and supports many programming languages. Most project dependent configuration is kept in the .kdevelop and .kdevses files. KDevelop project configuration files rather than in separate files as the other, more global, configuration settings. In short, those files are meant for:


  • .kdevelop — global project configuration information.
  • .kdevses — configuration information needed to restore the specific behaviours of the running session.
Both are XML-coded files. They can be viewed and (cautiously) altered using any text editor. There is a third project dependent configuration file, the .kdevelop.pcs Persistent Code Store. This is a binary coded file holding an internal parser cache for the most part in order to speed up the loading sequence of the project. Additionally, this Persistent Code Store keeps information use by the Code Completion facility of KDevelop.

Monday, August 9, 2010

Retrieve CPU based information in Windows.

A good tool to identify the Processor based information from Windows......

http://www.cpuid.com/softwares/cpu-z.html

Free and good tool to check with what your machine have........

Command to Identify Hardware releated information in Linux

A quick command in Linux to find various hardware related information.

"dmidecode"

This prints almost all the hardware information from BIOS to various slots including memory, cpu and everything.

Wednesday, August 4, 2010

Get Grateful Now

Even when you feel as though things aren't going well
in your life, you have reasons to be grateful.
Today, take time to appreciate the gift of life
and all its wonders.
Count your blessings and cherish what you have.

Desire

"Focus more on your desire than on your doubt, and
the dream will take care of itself.
You may be surprised at how easily this happens.
Your doubts are not as powerful as your desires, unless you make them so."

Saturday, July 10, 2010

Format Specifiers for C

%c The character format specifier.
%d The integer format specifier.
%i The integer format specifier (same as %d).
%f The floating-point format specifier.
%e The scientific notation format specifier.
%E The scientific notation format specifier.
%g Uses %f or %e, whichever result is shorter.
%G Uses %f or %E, whichever result is shorter.
%o The unsigned octal format specifier.
%s The string format specifier.
%u The unsigned integer format specifier.
%x The unsigned hexadecimal format specifier.
%X The unsigned hexadecimal format specifier.
%p Displays the corresponding argument that is a pointer.
%n Records the number of characters written so far.
%% Outputs a percent sign.