ரா.உதயகுமார்

Tuesday, June 29, 2010

சங்க இலக்கியம் பரிபாடல் விளக்கவுரை

கடைச்சங்கத்துப் புலவர்கள் அருளிய்ச் செய்த பரிபாடல் 70 என தெரிந்தாலும் நமக்கு கிடைத்தவை 22 ஆகும். திருமாலுக்குரியது 6 (1, 2, 3, 4, 13, 15) பாடல், முருகனுக்கு 8 (5, 8, 9, 14, 17, 18, 19, 21), திருமாலுக்குரிய முழுப்பாடல் 1, வையைக்குரிய முழுப்பாடல் 1, மதுரைக்குரிய உறுப்புகள் 7, சில உறுப்புகள் இன்ன வகை சார்ந்தனவென்று விளக்கவில்லை. எட்டுத்தொகை நூல்களில் இசை நூல் இது ஒன்றே.

இத்தகைய பரிபாடலின் திரு.பொ.வே. சோமசுந்தரனார் எழுதிய விளக்கவுரை உங்களுக்காக

பரிபாடல் விளக்கவுரை

Saturday, June 5, 2010

COMMON LANGUAGE RUNTIME

The CLR is the runtime environment of the .NET framework. CLR provides a common set of services such as exception handling, security, and debugging to languages that are CLR compatible. All programming language in Visual Studio.NET, such as Visual Basic.NET and Visual C# .NET, supports the CLR.
During the execution of a program, the CLR controls the interaction of code with the operating system. Code that is executed by the CLR is known as managed code. In contrast, code that is not executed by the CLR is known as unmanaged code. Managed code "cooperates" with the CLR by providing metadata to the CLR. The CLR, in turn, provides services, such as garbage collection, unmanaged code can bypass the .NET Framework API and make direct calls to the operating system.

This My Project notes.