Skip to main content

Web development framework

Web development framework

A web development framework serves as an organized assortment of pre-written code and tools, utilized by developers to streamline the creation of websites and web applications. It furnishes a foundation and structure for constructing web-based applications, presenting a collection of predefined functions, libraries, and best practices. These frameworks are devised to manage typical tasks, diminish the need for repetitive coding, and foster uniform coding practices across diverse projects.

In essence, a web development framework is a software framework intentionally crafted to facilitate the development of web applications. It establishes a standardized approach to crafting and deploying web applications on the global internet. The primary objective of web frameworks is to automate the laborious aspects linked with routine activities in web development, encompassing activities like accessing databases, creating templates, managing user sessions, ensuring authentication and authorization, managing errors, implementing caching, and orchestrating deployment. These frameworks are versatile enough to cater to a broad spectrum of web applications, ranging from uncomplicated websites to intricate enterprise-level applications. Additionally, they are well-suited for developing web services and APIs.

Key components of a web development framework include:

  1. Template Engine: Frameworks often include a template engine that facilitates the creation of dynamic HTML content. This helps separate the presentation layer from the application logic.
  2. Routing: Web frameworks provide routing capabilities, allowing developers to map URLs to specific code functions or handlers. This helps in managing different routes within an application.
  3. Database Abstraction: Many frameworks offer database abstraction layers to simplify database operations. These layers provide an interface for developers to interact with databases without writing raw SQL queries.
  4. Security: Frameworks usually come with built-in security features, such as input validation, protection against common vulnerabilities (e.g., cross-site scripting, SQL injection), and user authentication.
  5. Session Management: Web applications often require session management to maintain user state across requests. Frameworks provide mechanisms to manage user sessions securely.
  6. Middleware: Middleware components allow developers to inject additional functionality into the request-response cycle. This can include tasks like logging, authentication, and more.
  7. Libraries: Frameworks come with pre-built libraries that cover common programming tasks, like handling file uploads, form processing, and interacting with external services.
  8. MVC Architecture: Many web frameworks follow the Model-View-Controller (MVC) or similar architectural patterns. This separation of concerns helps organize code by separating data, user interface, and control logic.
  9. Testing Support: Frameworks often include tools for unit testing and integration testing, which help ensure the reliability and stability of the application.

Popular web development frameworks include:

  • Django (Python)
  • Ruby on Rails (Ruby)
  • Laravel (PHP)
  • Spring Boot (Java)
  • ASP.NET Core (C#)
  • Angular (JavaScript/TypeScript)
  • React (JavaScript)
  • Vue.js (JavaScript)

When picking a web development framework, remember these points:

Type of Web App: Think about what kind of website or app you want to make.
Language Familiarity: Consider the programming language you know best.
Features and Functions: Look at what the framework offers in terms of tools and features.
Support: Check if there’s good help available for the framework.
Web development frameworks are super useful for web developers. They speed up work, make code better, and make it easier to build and launch web apps.

Here are some benefits of using a web development framework:

Get More Done: Frameworks offer ready-made parts that save time and let devs focus on unique parts. Web frameworks can help to increase productivity by providing pre-built components and functionality. This can save developers time and effort, and allow them to focus on the unique aspects of their application.
Better Code: Frameworks use best practices to improve code quality and stop mistakes. Web frameworks can help to improve the quality of code by providing standards and best practices. This can help to prevent errors and make the code more maintainable.
Less Complicated: Frameworks give a clear structure and way to work, making code easier to handle. Web frameworks can help to reduce the complexity of web development by providing a well-defined structure and API. This can make it easier for developers to understand and work with the code.
Flexible: Developers can customize frameworks to fit their app’s special needs. Web frameworks are typically flexible and extensible, which allows developers to customize them to meet the specific needs of their application.
Easy Launch: Frameworks provide tools and steps to make launching web apps simpler. Web frameworks can make it easier to deploy web applications by providing tools and documentation for this process.
If you’re new to web development, using a framework is a great idea. There are lots of good choices, so you can pick one that fits what you want to do.

Django is a popular web development framework that’s built using the Python programming language. It’s like a set of tools that makes building websites easier and faster. Here’s what you need to know about Django:

Python Power: Django is made with Python, a programming language known for its simplicity and readability. This means you can create web applications using a language that’s easy to understand.

Rapid Development: Django focuses on getting things done quickly. It offers a lot of ready-made components, so you don’t have to build everything from scratch. This makes development faster.

Clean and Organized: Django encourages developers to follow good coding practices. This helps make your code clean, organized, and easier to maintain.

MVC Pattern: Django uses an architecture called Model-View-Controller (MVC). This splits your code into different parts: models (for data), views (for presentation), and controllers (for logic). It keeps things organized.

Admin Interface: One standout feature of Django is its automatic admin interface. This makes it easy to manage the content of your website without writing a lot of extra code.

Security Features: Django takes security seriously. It helps you avoid common security problems, like hacking and data leaks, by providing built-in protection mechanisms.

Database Handling: Django handles databases smoothly. You can work with databases without writing complex SQL queries, thanks to Django’s database abstraction layer.

Versatility: Django isn’t limited to small projects. It’s used for everything from small websites to large, complex web applications.

Community and Documentation: Django has a strong community of developers who share their knowledge. There’s plenty of documentation and resources available to help you learn and solve problems.

Whether you’re building a personal blog or a sophisticated web application, Django can be a great choice. It combines the power of Python with a toolkit that simplifies many aspects of web development. If you’re comfortable with Python or eager to learn it, Django can be a valuable asset in your web development journey.

Ruby on Rails, often simply called Rails, is a popular web development framework created using the Ruby programming language. Rails is known for its elegant and productive approach to building web applications. Here’s a closer look at Ruby on Rails:

Ruby’s Elegance: Ruby is the language behind Rails, and it’s celebrated for its readability and human-like syntax. This means your code can closely resemble natural language, making it easier to write and understand.

Emphasis on Convention: Rails follows a principle called “convention over configuration.” This means it comes with a lot of default settings and rules, so you spend less time configuring things and more time building your application.

Model-View-Controller (MVC): Like other frameworks, Rails employs the MVC architecture. It separates your code into three parts: models (for data and business logic), views (for presentation), and controllers (for handling requests and responses). This organization simplifies development.

Rapid Development: Rails prioritizes fast development. It includes a wide range of pre-built tools, so you can get your application up and running quickly.

Scaffolding: Rails provides a feature called scaffolding that generates basic code for your models, views, and controllers. It’s a rapid way to create the foundation of your application.

Database Handling: Rails makes database management easy. It includes an Object-Relational Mapping (ORM) system called ActiveRecord, which lets you interact with your database using Ruby code, rather than raw SQL.

Built-in Testing: Rails places a strong emphasis on testing. It comes with built-in testing tools, making it easier to write and execute tests for your application.

Gems and Plugins: Rails leverages the power of “gems,” which are pre-packaged pieces of code that add specific functionality to your application. This makes it easy to extend your app with extra features.

Community and Resources: Rails has a vibrant community that contributes to its growth. There are numerous tutorials, guides, and resources available, making it relatively simple to learn.

Startups to Enterprises: Rails has been used to build applications of all sizes, from small startups to large-scale enterprises. Its flexibility and scalability make it suitable for a wide range of projects.

If you’re intrigued by Ruby’s readability and want a framework that encourages fast development with minimal configuration, Ruby on Rails might be an excellent choice. It combines the elegance of Ruby with a toolkit that empowers developers to build robust web applications efficiently.

Laravel is a widely used web development framework crafted using the PHP programming language. It’s renowned for its elegant syntax and user-friendly features, making web application development enjoyable and efficient. Here’s a closer look at Laravel:

PHP Power: Laravel is built on PHP, a popular server-side scripting language. PHP’s widespread usage and ease of deployment make Laravel accessible to a broad range of developers.

Expressive Syntax: Laravel boasts an expressive and readable syntax that makes writing code feel natural. This can lead to faster development and improved code quality.

Artisan CLI: Laravel comes with a command-line interface (CLI) called Artisan. It offers helpful commands for tasks like creating templates, managing databases, and even generating code.

Eloquent ORM: Laravel features Eloquent, an Object-Relational Mapping (ORM) system. It lets you work with databases using PHP objects instead of raw SQL, simplifying database operations.

MVC Architecture: Like many modern frameworks, Laravel adopts the Model-View-Controller (MVC) pattern. This separation of concerns aids in keeping your codebase organized.

Routing and Middleware: Laravel provides a clear and efficient way to define routes and apply middleware. Middleware allows you to add extra functionality to the request-response cycle.

Blade Templating: Laravel’s Blade templating engine simplifies the creation of dynamic HTML by offering a convenient way to combine PHP and HTML in your views.

Packages (Laravel Packages): Laravel allows the use of packages, which are reusable components created by the Laravel community. This means you can integrate ready-made functionality into your application with ease.

Authentication and Security: Laravel offers built-in authentication features, making user management and authentication straightforward. Additionally, it takes security measures seriously to safeguard your application.

Community and Documentation: Laravel has an active and supportive community. Its documentation is comprehensive and beginner-friendly, making it accessible to developers at all levels.

Scalability: Laravel is capable of handling projects of various sizes. From small websites to complex applications, Laravel provides the tools needed to build and scale effectively.

Laravel is an excellent choice if you’re comfortable with PHP or eager to learn it. Its combination of user-friendly features, elegant syntax, and comprehensive documentation makes it a go-to framework for building web applications efficiently. Whether you’re starting a new project or enhancing an existing one, Laravel’s toolkit can make the process smoother and more enjoyable.

Spring Boot is a popular web development framework built using the Java programming language. It’s designed to simplify the process of creating production-ready applications with minimal configuration. Let’s take a closer look at Spring Boot:

Java’s Versatility: Spring Boot leverages the power of Java, a widely used programming language known for its portability and robustness.

Simplified Setup: Spring Boot aims to reduce the amount of configuration required to set up an application. It provides defaults and auto-configurations that speed up the development process.

Rapid Development: With Spring Boot’s ready-made components and simplified configuration, you can quickly develop applications without getting bogged down in complex setup tasks.

Spring Ecosystem: Spring Boot is built on top of the Spring framework, which is known for its comprehensive ecosystem of tools and libraries for building Java applications.

Embedded Servers: Spring Boot comes with embedded web servers like Tomcat and Jetty. This means you don’t have to separately set up a web server to deploy your application.

Spring Boot Starters: Spring Boot offers “starters” – pre-configured templates for different tasks, like web development, data access, and more. These starters save you time and effort.

Auto-Configuration: Spring Boot’s auto-configuration feature analyzes your project’s dependencies and automatically configures your application accordingly.

Microservices Support: Spring Boot is suitable for building microservices architectures. It supports the development of small, independently deployable services.

Spring Boot Actuator: This module provides insights into the health, metrics, and other operational aspects of your application, making monitoring and management easier.

Community and Documentation: Spring Boot has an active community that contributes to its growth. Its documentation is extensive, making it easier to learn and troubleshoot.

Flexibility: While Spring Boot’s opinionated defaults make development faster, you can still customize configurations when needed.

Spring Boot is a great choice if you’re familiar with Java or want to leverage its capabilities. It simplifies many aspects of web development, from setting up the application to handling dependencies. Whether you’re building a web application or diving into microservices, Spring Boot can provide you with a streamlined development experience backed by the power of Java.

ASP.NET Core is a widely-used web development framework developed by Microsoft, and it’s based on the C# programming language. It’s designed to build modern, high-performance web applications across different platforms. Here’s a closer look at ASP.NET Core:

C# Brilliance: ASP.NET Core is built on C#, a powerful and versatile programming language known for its readability and strong typing.

Cross-Platform: ASP.NET Core is designed to work on multiple platforms, including Windows, macOS, and Linux. This cross-platform capability offers flexibility in deployment.

High Performance: ASP.NET Core is optimized for high performance and scalability, making it suitable for applications that need to handle a large number of users.

Model-View-Controller (MVC): ASP.NET Core follows the MVC architectural pattern, separating your code into models (data), views (presentation), and controllers (logic).

Razor Pages: In addition to MVC, ASP.NET Core offers Razor Pages, which is a simpler way to build web pages without the full MVC structure.

Dependency Injection: ASP.NET Core has built-in support for dependency injection, which makes managing and organizing your code easier.

Middleware: Middleware components in ASP.NET Core allow you to handle requests and responses in a flexible way. This helps in adding various features to your application’s pipeline.

Unified Framework: ASP.NET Core combines the capabilities of both ASP.NET Web API and ASP.NET MVC, allowing you to build both web APIs and web applications in one framework.

Open Source: ASP.NET Core is open-source, which means the code is publicly available for anyone to view, modify, and contribute to.

NuGet Packages: ASP.NET Core leverages NuGet, a package manager for the .NET ecosystem, to make it easy to integrate third-party libraries and extensions into your application.

Tooling and Integration: ASP.NET Core works well with Visual Studio, Microsoft’s popular integrated development environment (IDE), making development smoother.

Community and Documentation: ASP.NET Core has an active community that provides support and contributes to its growth. Microsoft’s documentation is comprehensive and regularly updated.

ASP.NET Core is a strong choice if you’re familiar with C# or interested in exploring its capabilities. Whether you’re building web applications or APIs, its cross-platform nature, high performance, and versatile features make it a compelling framework for creating modern web solutions.

Angular is a popular front-end web development framework created by Google. It’s used to build dynamic and interactive single-page applications (SPAs) and is based on the JavaScript and TypeScript programming languages. Here’s a closer look at Angular:

JavaScript and TypeScript: Angular supports both JavaScript and TypeScript, a superset of JavaScript that adds static typing. TypeScript can make your code more robust and maintainable.

Component-Based: Angular is built around the concept of components. Components are reusable pieces of user interface that help in organizing and managing your application’s structure.

Single-Page Applications (SPAs): Angular is well-suited for building SPAs, where the whole application runs on a single web page and dynamically updates as users interact with it.

Dependency Injection: Angular has a powerful dependency injection system. This helps in managing the relationships between different parts of your application.

Template Syntax: Angular uses HTML templates combined with special syntax for dynamic rendering and data binding. This allows you to easily connect your application’s logic to its user interface.

Directives: Angular provides directives that allow you to add behaviors to elements in your templates. Examples include ngFor for looping and ngIf for conditional rendering.

Services: Services in Angular are used to provide functionality that is separate from the components. They are a way to share data, logic, and other code between components.

RxJS Observables: Angular often utilizes RxJS, a library for reactive programming. Observables from RxJS are used to manage asynchronous data streams and events.

Angular CLI: The Angular Command Line Interface (CLI) provides tools for generating components, services, modules, and more. It also helps with building and deploying your application.

State Management: While Angular doesn’t have built-in state management like some other frameworks, you can use libraries like NgRx to manage complex application states.

Community and Documentation: Angular has a strong community and is well-supported by Google. Its documentation and tutorials are comprehensive and helpful for learners.

Continuous Evolution: Angular is regularly updated with new features and improvements. It aims to provide developers with the latest tools and best practices.

Angular is a great choice if you’re looking to build feature-rich, interactive, and complex web applications. It’s particularly suitable for projects that require a structured and organized approach to development. With its component-based architecture, TypeScript support, and powerful tools, Angular empowers developers to create modern and responsive user interfaces.

React is a widely-used front-end JavaScript library developed by Facebook. It’s designed to build user interfaces for web applications, focusing on creating reusable components and efficient rendering. Here’s a closer look at React:

Component-Based: React’s core idea is building UIs using reusable components. Components are like building blocks that can be combined to create complex user interfaces.

Virtual DOM: React uses a virtual representation of the actual DOM (Document Object Model) to optimize rendering. This speeds up updates and improves performance.

Unidirectional Data Flow: React follows a one-way data flow. Data changes in your application trigger updates that flow from the parent components to child components.

JSX Syntax: JSX is a syntax extension for JavaScript that allows you to write HTML-like code within your JavaScript. It helps create dynamic UI components in a more readable manner.

Declarative Approach: React is declarative, meaning you describe what you want the UI to look like based on the current state, and React takes care of updating the actual UI.

Component Lifecycle: React components have a lifecycle with specific methods that get executed at different stages of a component’s existence. This enables you to control the behavior of your components.

Reusability: React components are highly reusable, which encourages a modular approach to building applications. You can use components across different parts of your app.

React Hooks: Hooks are functions that let you “hook into” React state and lifecycle features from functional components, eliminating the need for class components in many cases.

State Management: React’s built-in state management allows you to manage and update component-specific data. For more complex state management, you can use external libraries like Redux or MobX.

Community and Ecosystem: React has a vast and active community. There’s an abundance of third-party libraries, tools, and resources available to enhance your development experience.

React Native: React Native, built on the same principles as React, allows you to build mobile applications for iOS and Android using JavaScript.

Continuous Evolution: React is frequently updated by the React team at Facebook, introducing new features and optimizations to improve the developer experience.

React is a fantastic choice if you want to build interactive, dynamic user interfaces. Its component-based structure, virtual DOM, and declarative syntax make it a powerful tool for creating UIs that are easy to understand, maintain, and scale. Whether you’re building a simple website or a complex web application, React’s flexibility and performance optimizations can greatly enhance your development process.

Vue.js is a progressive front-end JavaScript framework that’s designed to build user interfaces. It’s known for its simplicity and flexibility, making it a great choice for both beginners and experienced developers. Here’s a closer look at Vue.js:

Progressive Framework: Vue.js is designed to be incrementally adoptable. This means you can start using it for small parts of your project and gradually incorporate more features as needed.

Component-Based: Like React, Vue.js uses a component-based architecture. Components are reusable and can be nested within each other to create complex UI structures.

Vue Directives: Vue.js offers directives that let you attach special behaviors to DOM elements. For instance, v-if and v-for help with conditional rendering and looping.

Template Syntax: Vue.js employs a template syntax that resembles HTML. This makes it easy to blend JavaScript and HTML to create dynamic and interactive user interfaces.

Reactivity: One of Vue.js’s standout features is its reactivity system. When data changes, the user interface automatically updates to reflect those changes without manual intervention.

Two-Way Data Binding: Vue.js supports two-way data binding. This means changes in the UI can update the data, and changes in the data can update the UI, simplifying synchronization.

Computed Properties: Vue.js allows you to define computed properties that derive their values based on other data properties. These properties are cached and updated efficiently.

Vue Router: For building single-page applications (SPAs), Vue.js provides a routing library that lets you create navigation between different views without full page reloads.

Vuex State Management: When your application requires centralized state management, Vue.js offers Vuex, a state management pattern and library.

Flexibility and Integrations: Vue.js can be integrated into existing projects or used to build new ones from scratch. It’s also compatible with other libraries and frameworks.

Community and Resources: Vue.js has a supportive community and a wealth of documentation and tutorials. It’s known for its ease of learning and gentle learning curve.

Continuous Development: Vue.js is actively developed and maintained. The core team continually improves the framework and introduces new features.

Vue.js is an excellent choice if you’re looking for a versatile and easy-to-learn framework for building user interfaces. Whether you’re creating a small widget or a full-blown single-page application, Vue.js’s adaptability, reactivity, and approachable syntax can help you create engaging and dynamic web experiences.

JavaScript

JavaScript is a widely used programming language that’s primarily used for building dynamic and interactive web applications. It plays a pivotal role in modern web development, allowing developers to create responsive user interfaces and add functionality to websites.

Client-Side Scripting: JavaScript runs directly in web browsers, enabling it to manipulate the Document Object Model (DOM) and change how web pages look and behave on the client’s side.

Versatility: Beyond web development, JavaScript is now used in a wide range of contexts, including server-side scripting (Node.js), mobile app development (React Native), game development, and more.

Interactivity: JavaScript adds interactivity to websites by responding to user actions such as clicks, form submissions, and mouse movements.

Asynchronous Operations: JavaScript excels at handling asynchronous tasks, like fetching data from servers and updating the page without causing a complete reload.

Event-Driven: Much of JavaScript’s power comes from its event-driven nature, where functions are triggered in response to events like clicks or data arriving from a server.

Data Manipulation: JavaScript can manipulate and modify data within the browser, making it possible to update content dynamically without requiring a page refresh.

Libraries and Frameworks: A rich ecosystem of libraries and frameworks, such as jQuery, React, Angular, and Vue.js, extends JavaScript’s capabilities and streamlines development.

ES6 and Modern Syntax: ECMAScript 6 (ES6) introduced modern features to JavaScript, like arrow functions, classes, and template literals, making code more concise and readable.

Cross-Browser Compatibility: JavaScript is supported by almost all modern web browsers, making it a reliable choice for building web applications that work across different platforms.

Security Concerns: While JavaScript is powerful, it can also pose security risks, especially when handling user inputs. Best practices like input validation are crucial to prevent vulnerabilities.

Community and Learning: JavaScript has a massive and vibrant community. There are countless resources, tutorials, forums, and documentation available for beginners and experienced developers alike.

Continuous Evolution: JavaScript is constantly evolving. New features are added to the language, and best practices continue to evolve to keep up with industry needs.

JavaScript is a fundamental language in web development, enabling you to create interactive and dynamic user experiences on the web. Whether you’re a beginner starting with simple scripts or an experienced developer building complex applications, JavaScript’s flexibility, broad adoption, and extensive resources make it an essential skill to master.

TypeScript

TypeScript is a superset of JavaScript that adds static typing, interfaces, and other features to enhance the development of large-scale and complex applications. It’s designed to catch errors early in the development process and make JavaScript development more structured and maintainable.

Static Typing: One of TypeScript’s main features is its static typing. This means you can declare the types of variables, function parameters, and return values. It helps catch errors before the code runs.

Type Inference: TypeScript infers types when you don’t explicitly specify them. This strikes a balance between static typing and the dynamic nature of JavaScript.

Interfaces: TypeScript allows you to define interfaces that describe the shape of objects. This is useful for ensuring consistency and preventing bugs in complex data structures.

Class-Based Objects: TypeScript supports traditional object-oriented programming concepts like classes, inheritance, and access modifiers (public, private, protected).

ES6+ Compatibility: TypeScript is based on the ECMAScript standard, so it supports modern JavaScript features. You can use ES6+ features alongside TypeScript’s additional capabilities.

Code Readability: With static types and interfaces, your code becomes more self-documenting. It’s easier to understand the expected data structures and the purpose of functions.

IDE Support: TypeScript offers strong support for modern code editors and integrated development environments (IDEs). This enhances auto-completion, error checking, and documentation generation.

Compatibility with JavaScript: TypeScript code can be compiled down to plain JavaScript, making it compatible with all modern web browsers and environments.

TypeScript Compiler (tsc): TypeScript comes with a compiler that transforms TypeScript code into JavaScript. This compilation step can catch type-related errors.

Community and Resources: TypeScript has a growing community and is supported by Microsoft. There are extensive resources, tutorials, and documentation available to learn and master the language.

TypeScript Declarations: Declarations (.d.ts files) allow you to use existing JavaScript libraries in TypeScript, providing type information for third-party code.

React and Angular Integration: TypeScript is the recommended language for both React and Angular frameworks. It provides enhanced development experiences and better tooling.

TypeScript is a powerful choice when you want the benefits of static typing while working with JavaScript. It’s particularly valuable for larger projects where maintaining code quality, catching errors early, and collaborating with teams are essential. TypeScript’s combination of modern JavaScript features and strong typing makes it a versatile tool for building robust and maintainable applications.

PHP

PHP is a widely used server-side scripting language designed for web development. It’s used to create dynamic and interactive web pages, manage databases, handle form submissions, and more.

Server-Side Scripting: PHP runs on the server, which means it’s executed on the server before the final HTML is sent to the browser. This enables you to generate dynamic content and interact with databases.

Embedded in HTML: PHP code is embedded within HTML using special tags (<?php … ?>). This allows you to seamlessly combine PHP logic with HTML content.

Open Source: PHP is open-source, which means the language and its documentation are freely available to the public. This has contributed to its widespread adoption.

Ease of Learning: PHP has a relatively gentle learning curve, making it a popular choice for beginners in web development.

Wide Web Support: PHP is supported by most web hosting providers, making it easy to deploy and run PHP applications on various servers.

Database Integration: PHP has built-in support for various databases, allowing you to connect to databases like MySQL, PostgreSQL, and more.

Extension Ecosystem: PHP supports extensions that add specific functionalities to the language. This includes extensions for image manipulation, cryptography, and more.

Community and Resources: PHP has a large and active community. You can find numerous tutorials, forums, and documentation to help you learn and solve problems.

Frameworks: PHP has various frameworks like Laravel, Symfony, and CodeIgniter that offer structured ways to build web applications, simplifying development and promoting best practices.

Server-Side Language: PHP is executed on the server, which provides security benefits by hiding sensitive code and data from the client’s browser.

Templates and CMS: PHP is used in popular content management systems (CMS) like WordPress, Joomla, and Drupal, which allow you to build websites and blogs without extensive coding.

Continuous Evolution: PHP continues to evolve with each new version, introducing features, optimizations, and improvements to keep up with modern web development needs.

PHP is a versatile language used to create dynamic websites and web applications. Its seamless integration with HTML, ease of use, and wide adoption make it a solid choice for web developers. Whether you’re building a personal blog or a complex e-commerce platform, PHP’s capabilities can help you achieve your web development goals.

Python

Python is a versatile and widely used high-level programming language known for its simplicity, readability, and extensive standard libraries. It’s used for a wide range of applications, from web development to data analysis and artificial intelligence.

General-Purpose Language: Python is a general-purpose language that can be used for a variety of tasks, including web development, data analysis, scientific computing, automation, and more.

Readability: Python’s syntax is designed to be easily readable and understandable, which makes it a great choice for both beginners and experienced developers.

Indentation: Python uses indentation (whitespace) to define code blocks, which enforces clean and well-structured code.

Extensive Standard Library: Python comes with a rich standard library that provides pre-built modules for various tasks, saving you time and effort.

Diverse Ecosystem: Python has a vast ecosystem of third-party libraries and frameworks, catering to different needs like web development (Django, Flask), data science (NumPy, pandas), machine learning (scikit-learn, TensorFlow), and more.

Dynamic Typing: Python is dynamically typed, meaning you don’t need to declare variable types explicitly. This enhances flexibility but also requires careful consideration to avoid unexpected behavior.

Interpreted Language: Python is an interpreted language, which means you can run your code without the need for compilation. This speeds up development cycles.

Cross-Platform Compatibility: Python code is mostly platform-independent, allowing you to write code on one operating system and run it on another without significant changes.

Community and Resources: Python has a vibrant and welcoming community. There’s a plethora of tutorials, documentation, and forums to support your learning and problem-solving.

Versatile Use Cases: Python’s flexibility and broad applicability make it suitable for various domains, including web development, data analysis, scientific research, automation, scripting, and more.

Web Development: Python has web frameworks like Django and Flask that simplify web application development, allowing you to build robust and feature-rich sites.

Machine Learning and Data Science: Python is widely used in the fields of machine learning and data science due to its extensive libraries, easy-to-understand syntax, and strong community support.

Python’s simplicity, versatility, and strong community support have contributed to its popularity in a wide range of industries. Whether you’re a beginner aiming to learn programming, an experienced developer exploring new domains, or a data scientist working with complex algorithms, Python’s capabilities can serve you well.

MySQL

MySQL is an open-source relational database management system (RDBMS) that is widely used for managing and storing structured data. It was developed by MySQL AB, which was later acquired by Sun Microsystems and eventually by Oracle Corporation. MySQL is known for its speed, reliability, and ease of use, making it one of the most popular database systems in the world.

Key features of MySQL include:

Relational Database: MySQL follows the relational database model, where data is organized into tables with rows and columns. This structure allows for efficient querying and manipulation of data.

SQL Support: MySQL uses Structured Query Language (SQL) for defining and manipulating data. SQL is a standard language for managing relational databases, and MySQL supports a wide range of SQL commands.

Data Integrity and Constraints: MySQL allows you to define various constraints on your data to ensure data integrity, such as primary keys, foreign keys, unique constraints, and check constraints.

ACID Compliance: MySQL supports ACID (Atomicity, Consistency, Isolation, Durability) properties, ensuring that database transactions are reliable, consistent, and maintain data integrity.

Scalability: MySQL can be used for both small-scale applications and large-scale enterprise solutions. It supports various methods for replication and clustering to handle increased loads and improve fault tolerance.

Storage Engines: MySQL supports multiple storage engines, which are responsible for managing how data is stored and accessed. The most commonly used engine is InnoDB, known for its support of transactions and referential integrity.

User Management: MySQL provides robust user and privilege management, allowing administrators to control who can access and manipulate the data in the database.

Triggers and Stored Procedures: MySQL supports triggers and stored procedures, which are pre-defined scripts that can be executed automatically based on specific events or manually invoked to perform complex operations on the database.

Open Source: MySQL is open-source software, which means it is free to use and can be modified according to your needs. There are also commercial versions and support services available for enterprise users.

Community and Ecosystem: MySQL has a large and active user community, as well as a rich ecosystem of tools, libraries, and frameworks that integrate with it.

MySQL can be used in various applications, from web development to data warehousing. It’s often used in conjunction with other technologies, such as PHP for web applications, and it plays a crucial role in powering many dynamic websites and online services.

MongoDB

MongoDB is a popular open-source NoSQL database management system that is designed to handle unstructured or semi-structured data. Unlike traditional relational databases like MySQL, MongoDB follows a document-oriented model, which makes it well-suited for handling large volumes of diverse and rapidly changing data. It was developed by MongoDB Inc. (formerly 10gen) and was released in 2009.

Key features of MongoDB include:

Document-Oriented: MongoDB stores data in flexible, JSON-like documents, which can have varying structures and can include nested arrays and subdocuments. This makes it well-suited for handling data with changing or evolving schemas.

NoSQL: MongoDB is classified as a NoSQL database because it doesn’t rely on the traditional relational data model with tables and rows. It provides greater flexibility for storing and retrieving data that doesn’t fit neatly into tabular structures.

Scalability: MongoDB is designed to scale horizontally, which means you can distribute your data across multiple servers to handle increased load and storage requirements. This is achieved through techniques like sharding, where data is partitioned and stored across multiple machines.

High Performance: MongoDB’s design, including its use of memory-mapped files, can lead to high performance for certain workloads. It’s particularly effective for read-heavy operations.

Flexible Schema: Unlike traditional databases where the schema is fixed, MongoDB allows you to work with a dynamic and flexible schema. This is useful when dealing with data that can change over time.

Replication and High Availability: MongoDB supports automatic replication, which means copies of your data are maintained across multiple servers. This provides high availability and fault tolerance in case one server goes down.

Aggregation Framework: MongoDB includes a powerful aggregation framework that allows you to perform complex data transformations and analysis on your data within the database itself.

Geospatial Queries: MongoDB has built-in support for geospatial queries, making it well-suited for location-based applications.

Indexes: Just like relational databases, MongoDB uses indexes to improve query performance. It supports various types of indexes to speed up data retrieval.

Community and Ecosystem: MongoDB has a large and active user community. It also offers various tools, libraries, and integrations that extend its capabilities.

MongoDB is commonly used for various applications, including content management systems, real-time analytics, mobile applications, IoT (Internet of Things) applications, and more. It’s particularly valuable when dealing with data that doesn’t have a fixed structure or when you need to scale out your database infrastructure easily. However, it’s important to note that the document-oriented nature of MongoDB might not be the best fit for all types of applications, especially those that require complex joins or strict ACID transaction guarantees.

Chandrayaan

India had conducted several significant lunar exploration activities. Here are the major lunar exploration activities carried out by India:

Chandrayaan-1 (2008-2009):

Chandrayaan-1 was India’s first lunar probe, launched by the Indian Space Research Organisation (ISRO) on October 22, 2008. It had multiple scientific objectives, including mapping the surface composition of the Moon and searching for water ice in the polar regions. The spacecraft carried 11 scientific instruments, including a Moon Impact Probe (MIP) that was released and impacted the lunar surface.

One of the key findings of Chandrayaan-1 was the discovery of water molecules on the lunar surface, particularly in the polar regions. This finding was significant because water is a crucial resource for future lunar missions.

Chandrayaan-2 (2019):

Chandrayaan-2 was ISRO’s second lunar exploration mission, launched on July 22, 2019. It was more ambitious than its predecessor and consisted of an orbiter, a lander named Vikram, and a rover named Pragyan. The mission aimed to study the lunar surface, map its distribution of elements and minerals, and explore the south pole region in greater detail.

Unfortunately, the lander Vikram lost communication during its descent, and the rover couldn’t be deployed as planned. However, the orbiter successfully entered lunar orbit and continues to provide valuable data and images of the Moon’s surface.

Chandrayaan-3 (2023):

This is the third Indian lunar mission. It is a repeat of Chandrayaan-2, and it aims to soft land a lander-rover module on the lunar South Pole. The mission is expected to launch in July 2023.

In addition to these missions, India is also planning to launch a number of other lunar missions in the coming years. These include:

  • Chandrayaan-4: This mission will be a follow-up to Chandrayaan-3, and it will focus on studying the lunar South Pole in more detail.
  • Chandrayaan-5: This mission will be a sample-return mission, and it will bring back lunar samples to Earth for analysis.
  • Chandrayaan-6: This mission will be a human-rated mission, and it will send astronauts to the moon.

India’s lunar exploration program is one of the most ambitious in the world. The country has made significant progress in a short period of time, and it is now a major player in the field of space exploration. The future of India’s lunar exploration program is bright, and it is expected to make significant contributions to our understanding of the moon.

………………………….

Chandrayaan-1

Certainly! Chandrayaan-1 was India’s first lunar exploration mission, launched by the Indian Space Research Organization (ISRO) on October 22, 2008. It was a significant milestone in India’s space exploration efforts and played a crucial role in advancing our understanding of the Moon’s composition, surface features, and the presence of water molecules. Here are more details about Chandrayaan-1:

Objectives:

High-Resolution Imaging: One of the main objectives of Chandrayaan-1 was to capture high-resolution images of the lunar surface, providing detailed information about its topography and geological features.
Mineral Mapping: The spacecraft carried instruments designed to map the mineral composition of the lunar surface. This was important for understanding the Moon’s geological history and evolution.
Search for Water: Chandrayaan-1 aimed to detect the presence of water molecules on the lunar surface, particularly in the polar regions. This was done through remote sensing techniques.
Moon Impact Probe (MIP): The mission included the MIP, a small probe that separated from the main spacecraft and impacted the lunar surface. It carried instruments to analyze the thin lunar atmosphere during its descent.
Instruments:
Chandrayaan-1 was equipped with 11 scientific instruments:

  1. Terrain Mapping Camera (TMC): Captured high-resolution 3D images of the lunar surface.
  2. Hyper Spectral Imager (HySI): Mapped the mineral composition of the Moon’s surface.
  3. Moon Impact Probe (MIP): Analyzed the lunar atmosphere and surface before impact.
  4. Chandrayaan-1 X-ray Spectrometer (C1XS): Detected X-rays to study the composition of the lunar surface.
  5. Lunar Laser Ranging Instrument (LLRI): Measured the distance between the spacecraft and the lunar surface using laser beams.
  6. Sub-keV Atom Reflecting Analyzer (SARA): Studied the interaction between solar wind and the Moon’s surface.
  7. Miniature Synthetic Aperture Radar (Mini-SAR): Detected water ice and studied surface roughness.
  8. Moon Impact Probe Chandra’s Altitudinal Composition Explorer (MIP-CHACE): Analyzed the thin lunar exosphere.
  9. Radiation Dose Monitor (RADOM): Measured radiation around the Moon.
  10. High-Energy X-ray/Gamma-ray Spectrometer (HEX): Detected gamma rays and X-rays from the lunar surface.
  11. Dual Frequency Synthetic Aperture Radar (DFSAR): Mapped the polar regions and searched for water ice.

Key Discoveries:

Chandrayaan-1’s most significant discovery was the detection of water molecules on the lunar surface, particularly in the permanently shadowed craters near the poles. This discovery has important implications for future lunar exploration and the potential for utilizing lunar resources.
The mission also provided detailed maps of various minerals on the Moon’s surface, enhancing our understanding of its geological history.

End of Mission:

Chandrayaan-1 was initially planned for a two-year mission. However, in August 2009, ISRO announced the sudden loss of communication with the spacecraft. Despite this, the mission was considered a success due to the valuable data and insights it had provided.

Chandrayaan-1 laid the foundation for India’s lunar exploration endeavors and contributed significantly to global lunar research efforts. It showcased India’s technological capabilities and marked a significant achievement in the nation’s space exploration journey.

Chandrayaan-2

Certainly, Chandrayaan-2 was India’s second lunar exploration mission and was launched by the Indian Space Research Organisation (ISRO) on July 22, 2019. It was a more complex and ambitious mission compared to its predecessor, Chandrayaan-1. Here are more details about Chandrayaan-2:

Mission Components:

Orbiter: The Chandrayaan-2 mission included an orbiter, which was designed to orbit the Moon and provide a platform for scientific observations and experiments. The orbiter was equipped with a suite of scientific instruments to study the lunar surface, mineral composition, exosphere, and more.
Vikram Lander: The lander was designed to make a soft landing on the lunar surface near the south pole region. It carried the Pragyan rover and instruments to study the lunar surface and seismic activities.

Pragyan Rover: Housed within the Vikram lander, the Pragyan rover was designed to explore the lunar surface, analyze soil samples, and perform experiments related to the Moon’s composition and geology.

Objectives:

Landing in the South Polar Region: Chandrayaan-2 aimed to be the first mission to land near the Moon’s south pole region. This region is of particular interest due to the presence of permanently shadowed craters where water ice could potentially be found.
Mineral and Elemental Mapping: The orbiter was equipped with instruments to map the mineral composition of the lunar surface, providing insights into its geological history and evolution.
Exosphere Studies: The orbiter carried instruments to study the tenuous exosphere (extremely thin atmosphere) of the Moon and how it interacts with solar winds.
Seismic Activities: The Vikram lander had instruments to study seismic activities on the Moon, helping to understand its internal structure and activity.
Rover Exploration: The Pragyan rover was intended to analyze soil samples, study surface features, and contribute to our understanding of the Moon’s surface characteristics.
Landing Attempt:

The Chandrayaan-2 mission achieved a successful launch and orbiter insertion. However, during the descent of the Vikram lander to the lunar surface, communication was lost when it was just 2.1 kilometers above the surface.

Despite the loss of communication, the orbiter component of the mission continued to operate successfully. It entered a stable lunar orbit and started transmitting valuable data back to Earth.

Orbiter Success:

The Chandrayaan-2 orbiter has been a significant success. It has been providing a wealth of scientific data about the Moon, including detailed images of the lunar surface, insights into the distribution of minerals, and the identification of previously unknown craters.

Future Implications:

While the Vikram lander’s unsuccessful landing was disappointing, the Chandrayaan-2 mission has provided important lessons for future lunar landing attempts. It demonstrated India’s capabilities in planning and executing complex space missions.

Chandrayaan-2 marked a significant step forward in India’s space exploration efforts, showcasing the nation’s increasing technical expertise and commitment to lunar research. The mission’s achievements and challenges contribute to the global understanding of lunar science and lay the groundwork for future lunar missions.

Chandrayaan-3

Chandrayaan-3 is the third Indian lunar exploration mission under the Indian Space Research Organisation’s (ISRO) Chandrayaan programme. It consists of a lander named Vikram and a rover named Pragyan, similar to those of the Chandrayaan-2 mission.

The mission was launched on 14 July 2023, from Satish Dhawan Space Centre Second Launch Pad in Sriharikota, Andhra Pradesh, India. The spacecraft entered lunar orbit on 5 August 2023, with an expected landing near the lunar South Pole on 23 August.

The main objectives of Chandrayaan-3 are to:

  1. Soft land a lander-rover module on the lunar surface near the South Pole.
  2. Study the geology and mineralogy of the lunar South Pole.
  3. Search for water ice in the lunar polar regions.
  4. Conduct other scientific experiments.

The lander, Vikram, is equipped with a variety of instruments to study the lunar surface, including a Terrain Mapping Camera, a Laser Range Finder, and a Magnetometer. The rover, Pragyan, is a robotic vehicle that will explore the lunar surface for up to 14 days. It is equipped with a variety of instruments to study the lunar soil and rocks, including a Camera, a Spectrometer, and a Methane Sensor.

The success of Chandrayaan-3 will make India the fourth country to successfully land a spacecraft on the moon, after the United States, Russia, and China. It will also be the first time that a country has landed a spacecraft on the lunar South Pole.

The successful landing of Chandrayaan-3 is a major achievement for India’s space program. It demonstrates India’s capabilities in space exploration and its commitment to scientific research. The mission is also expected to provide valuable insights into the lunar environment and its potential for resources.

Here are some interesting facts about Chandrayaan-3:

  • The name “Chandrayaan” means “Moon Chariot” in Sanskrit.
  • The mission cost around ₹978 crore (US$130 million).
  • The lander is named after Vikram Sarabhai, the father of the Indian space program.
  • The rover is named after Pragyan Patil, a young girl who won an ISRO-sponsored science competition.
  • The mission is expected to last for one year.

The successful landing of Chandrayaan-3 is a historic moment for India and a major milestone in the country’s space program. It is a testament to the hard work and dedication of the ISRO team and a source of pride for all Indians. India became the fourth country to successfully land on the moon as the Chandrayaan-3’s lander module, with the rover in its belly, successfully made a soft landing on the lunar surface on Wednesday(August 23, 2023).

ഡാറ്റ സയൻസും ആർട്ടിഫിഷ്യൽ ഇൻ്റലിജെൻസും

Data Science and Artificial Intelligence

ഇൻ്റെർനെറ്റ് കണക്റ്റിവിറ്റിയുടെ വിഭ്രമാത്മകത ഇന്ന് സാധാരണ ജീവിതങ്ങളേയും ബാധിച്ചിട്ടുണ്ട്. ദൈനംദിന ജീവിതം നയിക്കുന്നതിൽ നെറ്റിനുള്ള പ്രാധാന്യം ഏറെ പ്രസ്ക്തമാണിന്ന്. ഇൻ്റെർനെറ്റിൽ ഡാറ്റ എന്ന സങ്കേതം വരുത്തുന്ന വിപ്ലവത്തെ കുറിച്ചു പറയാം. എന്താണു ശരിക്കും ഡാറ്റ എന്ന വാക്കുകൊണ്ട് ഉദ്ദേശിക്കുന്നത്? നിത്യേന നമ്മുടെ കയ്യിലെ മൊബൈൽ ഫോൺ പിടിച്ചെടുക്കുന്ന ചിത്രങ്ങളും ശബ്ദവും വിരലടയാളവും നമ്മുടെ നോട്ടവും, നമ്മൾ കുറിക്കുന്ന ഓരോ വാക്കുകളും ഡാറ്റ തന്നെയാണ്! എവിടെയാണിതു സ്റ്റോർ ചെയ്യുന്നത്? എങ്ങോട്ടാണിത് ഒഴുകി നീങ്ങുന്നത്? ആരാണിതിനെ പ്രോസസ് ചെയ്യുന്നത്? ഇങ്ങനെ നൂറുകൂട്ടം ചോദ്യങ്ങൾ പലർക്കും ഉണ്ടാവാം. അല്ലെങ്ങ്കിൽ ഇതെൻ്റെ സ്വകാര്യമൊബൈൽ ഫോൺ മാത്രമാണ്. വീട്ടിലുള്ളവർക്കു പോലും എൻ്റെ വിരലടയാളം ഇല്ലാതെ ഇതു തുറക്കാൻ പറ്റില്ല അത്രമാത്രം സ്വകാര്യമാണിത് എന്ന ധാരണയും പലർക്കും ഉണ്ടാവും.
Data Science and Artificial Intelligence
വെബ് ലോകത്തു കൂടി ഒഴുകുന്ന വിവരങ്ങളുടെ അനസ്യൂതപ്രവാഹമില്ലാതെ, ദൈനംദിന ജീവിതം മുന്നോട്ടു കൊണ്ടുപോകാൻ കഴിയാത്ത വിധം സാഹചര്യങ്ങൾ മാറി വന്നിരിക്കുന്നു. ഇന്നത്തെ സാഹചര്യത്തിൽ ഡാറ്റ എന്ന വാക്കിനോളം വിലയുള്ള മറ്റൊരു വാക്ക് ഇല്ലെന്നു തന്നെ പറയാം. ഡാറ്റാ സയൻസിൻ്റെ നൂതനമായ മേഖല അറിവിൻ്റേയും തൊഴിലിൻ്റേയും വിശാലമായ പാതയ്ക്ക് വഴിയൊരുക്കുമ്പോൾ, ഡാറ്റ എന്താണെന്നും ആ മേഖലയിലെ അവസരങ്ങൾ എന്താണെന്നും നമ്മൾ ചിന്തിച്ചിരിക്കണം. നൂറ്റാണ്ടിന്റെ ജോലിയെന്നാണ് ഹാര്‍വാഡ് ബിസിനസ് റിവ്യൂ ഡാറ്റ സയന്റിസ്റ്റിനെ വിശേഷിപ്പിക്കുന്നത്. ലോകത്ത് പൊതുമേഖലാസ്ഥാപനങ്ങളിലുള്‍പ്പെടെ ഇവരുടെ സേവനത്തിന് പ്രാധാന്യമേറിവരികയാണിന്ന്.

നേരത്തെ പറഞ്ഞല്ലോ, വിവരസാങ്കേതികവിദ്യയുമായി ബന്ധപ്പെട്ട ഏതൊരു ഇടപാടും, ഓരോ മൗസ് ക്ലിക്കുപോലും ഒരു ഡാറ്റ സൃഷ്ടിക്കുന്നുണ്ട്. പലതരം ബിസിനസ്സുകൾ നമുക്കു ചുറ്റും നടക്കുന്നു, ആശയവിനിമയ സവിധാനങ്ങൾ ദിനം പ്രതി പുതുക്കുന്നു, ഗതാഗതമേഖലകൾ, ബാങ്കിങ്ങ്, ഇൻഷ്വറൻസ്, ആശുപത്രികൾ, വിവിധ വെബ്സൈറ്റുകൾ തുടങ്ങി വെബ്സൈറ്റുകളിലെ നമ്മൾ പോലും ശ്രദ്ധിക്കാതെ ശേഖരിക്കപ്പെടുന്ന ക്യാഷ് ഫയലുകൾ, ലോഗുകൾ, വാട്സാപ്പ്, ഫെയ്സ്ബുക്ക്, ഇൻസ്റ്റാഗ്രാം ഒക്കെ തരുന്ന അഗണ്യമായ ഡാറ്റകളുടെ ശേഖരം നമുടെ മുമ്പിൽ ഉണ്ട്. ബിഗ്ഡാറ്റ എന്നു വിളിക്കാം നമുക്കിതിനെ. ഇത്തരം ഡാറ്റകളുടെ വിശാലമായ ശേഖരം നമുക്കുണ്ട്. ഡാറ്റാനകൾ എന്നു പറഞ്ഞ് പരിഹസിച്ചോ ഭയന്നിട്ടുതന്നെയോ സമൂഹത്തിൽ ചിലരെങ്കിലും ഇതേപ്പറ്റി പറയാറുണ്ട്.

നമ്മൾ ഷെയർ ചെയ്യുന്ന വാക്കുകളിലൂടെ, വീഡിയോകളിലൂടെ, ചിത്രങ്ങളിലൂടെ നമ്മുടെ ചലനങ്ങളും അഭിരുചികളും വിശ്വാസങ്ങളും വികാരങ്ങളും പബ്ലിക്കിലേക്കു വിട്ടുകൊടുക്കയാണു ചെയ്യുന്നത്. ഇത്തരം ഡാറ്റകളെ, അല്ലെങ്കിൽ കുലകൊമ്പനായ ഈ ഡാറ്റാനയെ മെരുക്കാൻ ഉതകുന്ന സാങ്കേതിക വിദ്യയാണു ഡാറ്റാ സയൻസ് എന്നത്. ഇങ്ങനെ ശേഖരിച്ചു വെയ്ക്കുന്ന ചലനങ്ങളിലും അഭിരുചികളും അക്കങ്ങളിലും വാക്കുകളിലും ചിത്രങ്ങളിലും ശബ്ദങ്ങളിലും വീഡിയോകളിലും രേഖപ്പെടുത്തുന്ന ഡാറ്റ നെറ്റ്‌വർക്കുകളുടെ കൃത്യമായ മാനേജ്‌മെൻ്റും മറ്റുമാണത്. ഒന്നിലധികം ഡിജിറ്റൽ സ്രോതസ്സുകളിൽനിന്ന് ഒരേസമയം വിവരശേഖരണം നടത്തി, വിശകലനം ചെയ്ത് ട്രെൻഡുകളും, പാറ്റേണുകളും ദൃശ്യവത്കരിച്ച് ഫലപ്രദമായ തീരുമാനങ്ങളെടുക്കുന്ന പ്രക്രിയകളാണ് ഡാറ്റ സയൻസിൽ ഉൾപ്പെട്ടിരിക്കുന്നത്.

പ്രധാനമായും ഇൻറർനെറ്റിൽ ലഭ്യമായ അനന്തമായ വിവരങ്ങൾ ശേഖരിക്കുകയും അതു പ്രോസസ്സ് ചെയ്യുകയും ഡാറ്റാധിഷ്ഠിത തീരുമാനങ്ങൾ എടുക്കുന്നതിനുള്ള ഒരു വിഭവമായി ഉപയോഗിക്കുകയും ചെയ്യുന്ന ശാസ്ത്രമാണ് ഡാറ്റാ സയൻസ്സെന്നു വിശേഷിപ്പിക്കാം. പല കമ്പനികളും തങ്ങളുടെ ബിസിനസ് പ്രവർത്തനങ്ങൾ മെച്ചപ്പെടുത്തുന്നതിനും കാര്യക്ഷമമാക്കുന്നതിനും റിസോഴ്‌സ് ബിഗ് ഡാറ്റ ഉപയോഗിക്കുന്ന കാലം കൂടിയാണിത്. ഇത് ഇനിയും ഒട്ടേറെ വളരാനിരിക്കുന്നു. ആമസോണിൽ ഷോപ്പിംഗ് നടത്തുമ്പോൾ സൃഷ്ടിക്കുന്ന ഡാറ്റ, ഫെയ്സ്ബുക്ക് അക്കൗണ്ടുകളിൽ നിന്നുള്ള വിവരങ്ങൾ,ഗൂഗിൾ സേർച്ചിങ്ങ് ചരിത്രം, ഒരു ഫോണിൽ സൈൻ ഇൻ ചെയ്യാനായി മുഖം കണ്ടു തിരിച്ചറിയൽ എന്നിവ വലിയ ഡാറ്റ ഉറവിടങ്ങളുടെ ഉദാഹരണങ്ങളിൽ ഉൾപ്പെടുന്നു. ഒരു ഓൺലൈൻ ഷോപ്പിംഗ് സൈറ്റിൽ ഞങ്ങൾ എന്താണ് തിരഞ്ഞത്, ഞങ്ങൾ എന്താണ് വാങ്ങിയത്, എത്ര ചെലവഴിച്ചു എന്നിവയെല്ലാം ഡാറ്റാ സെറ്റ് നമ്മെ ഓർമ്മിപ്പിക്കുന്നു. ഡാറ്റാ സയൻസിലൂടെയാണ് ആമസോണിന് നമ്മുടെ ആവശ്യങ്ങൾ മനസിലാക്കാനും അതനുസരിച്ചു നമുക്കുവേണ്ടി മാത്രം ഹോം പേജ് കാഴ്ച ഇഷ്ടാനുസൃതമാക്കാനും, നമുക്ക് മുന്നിൽ അവതരിപ്പിക്കാനും കഴിയുന്നുണ്ട് ഇപ്പോൾ. ടെക്നിക്കലായി പറഞ്ഞാൽ അഡോബി ടാർജെറ്റിലൂടെ ഇതു നിഷ്പ്രായാസം സാധിക്കുന്നതേ ഉള്ളൂ ഇന്ന്.

ഇന്ന്, ഡാറ്റസയൻസുമായി ബന്ധപ്പെട്ടു പണിയെടുക്കുന്നവർ വ്യവസായത്തെ മുന്നോട്ട് നയിക്കുന്ന ഒരു പ്രേരകശക്തിയായി മാറിയിരിക്കുന്നു, ബിസിനസ്സിനും വിവരസാങ്കേതികവിദ്യയ്ക്കും തമ്മിലുള്ള മീഡിയേറ്ററായി ഇതു നിൽക്കുന്നു. കമ്പനികളെയും ഉപഭോക്താക്കളെയും ഒരേ സമയം സഹായിക്കാൻ ഡാറ്റാ സയൻസിന് കഴിയും. ബിഗ് ഡാറ്റ വിശകലനവും തുടർന്നുള്ള ബിസിനസ്സ് തന്ത്രങ്ങളും ഇന്ന് ഒരു കമ്പനിയുടെ ലാഭക്ഷമത 60% വരെ വർദ്ധിപ്പിക്കുമെന്ന് പഠനങ്ങൾ കാണിക്കുന്നു. വ്യക്തിഗത ലൊക്കേഷൻ ഡാറ്റ പ്രവർത്തനക്ഷമമാക്കിയ സേവനങ്ങൾ കുറഞ്ഞ ചെലവിൽ ഷോപ്പിംഗ് നടത്താൻ ഉപഭോക്താക്കളെ സഹായിക്കുന്നു. നിർമ്മാണ മേഖലയിലും ഡാറ്റ വിശകലനം പ്രധാനമാണ്. ഇൻഡസ്ട്രിയൽ ഇന്റർനെറ്റ് ഓഫ് തിങ്‌സ് പ്ലാറ്റ്‌ഫോം വഴി ആർട്ടിഫിഷ്യൽ ഇന്റലിജൻസിന്റെ സഹായത്തോടെ കമ്പനികൾക്ക് ഉൽപ്പാദനത്തിൽ മികവ് സൃഷ്ടിക്കാനാകും.

ഒരർത്ഥത്തിൽ, ഡാറ്റാ സയൻസിന്റെ പ്രാധാന്യം ബിസിനസ്, വ്യാവസായിക മേഖലകളിൽ മാത്രം ഒതുങ്ങുന്നില്ല. സ്ഥലത്തും സമയത്തും കോവിഡ് രോഗത്തിന്റെ വ്യാപനത്തിന്റെ ട്രാക്ക് വിശകലനം ചെയ്തുകൊണ്ട് സമയബന്ധിതമായ ശാസ്ത്രീയ പ്രവചനങ്ങൾ സാധ്യമാക്കുന്നതിൽ ഡാറ്റാ സയൻസിന് ഒരു പങ്കുണ്ട്. ധരിക്കാവുന്ന ഉപകരണങ്ങളിലൂടെ രോഗനിർണയം എളുപ്പമാക്കുന്ന പുതിയ സാങ്കേതികവിദ്യകൾ പരിചിതമായി. കാലാവസ്ഥ, വിദ്യാഭ്യാസം, ബഹിരാകാശ പരിപാടികൾ തുടങ്ങിയ തന്ത്രപ്രധാന മേഖലകൾ ഡാറ്റാ സയൻസിന്റെ നേട്ടങ്ങൾ തിരിച്ചറിയുന്നു. കൊറോണയ്ക്ക് അല്പകാലം മുമ്പ് ഫെയ്സ്ബുക്ക് ഒരു സൈറ്റിനെ ബ്ലോക്കു ചെയ്തതോർക്കുന്നുവോ? ഇന്ത്യയടക്കം 200 ഓളം തെരഞ്ഞെടുപ്പുകളിൽ വിപ്ലവകരമായ മാറ്റങ്ങൾ അവർ ഡാറ്റ വിശകലനത്തിലൂടെ വരുത്തിയത്രേ. വരും വർഷങ്ങളിൽ വലിയ ഡിമാൻഡുണ്ടാകുമെന്ന് പ്രതീക്ഷിക്കുന്ന വൈവിധ്യവും വിശാലവുമായ പ്രവർത്തന മേഖലയാണു ഡാറ്റ സയൻസ്.

ഡാറ്റാ സയൻസ് മേഖലയിൽ വിവിധ തരം തൊഴിലുകൾ ഉയർന്നുവരുന്നുണ്ട്. ഡാറ്റാ അനലിസ്റ്റ്, ഡാറ്റാ ആർക്കിടെക്റ്റ്, ഡാറ്റാ എഞ്ചിനീയർ, ഡാറ്റാ മൈനിംഗ് സ്പെഷ്യലിസ്റ്റ് മെഷീൻ ലേണിംഗ് എഞ്ചിനീയർ, ഡാറ്റാ ബേസ് അഡ്മിനിസ്ട്രേറ്റർ, ബിസിനസ് അനലിസ്റ്റ്, ബിസിനസ് ഇന്റലിജൻസ് അനലിസ്റ്റ് തുടങ്ങി നിരവധിയാണത്. വർക്കിംഗ് ഓർഗനൈസേഷൻ്റെ ആവശ്യമനുസരിച്ച് വ്യത്യസ്തമായ അവസരങ്ങൾ ലഭ്യമാണിപ്പോൾ. മികച്ച ബിസിനസ്സ് തീരുമാനങ്ങൾ എടുക്കാൻ കമ്പനികളെ സഹായിക്കുന്നതിന് ഇൻറർനെറ്റിൽ നിന്ന് ആഴത്തിലുള്ളതും വലുതുമായ വിവരങ്ങളുടെ സ്റ്റാറ്റിസ്റ്റിക്കൽ ഡാറ്റ വിശകലനം വഴി ശേഖരിക്കാനും പ്രോസസ്സ് ചെയ്യാനും ഡാറ്റാ അനലിസ്റ്റുകൾക്ക് കഴിയും. അവതരണവും റിപ്പോർട്ടുകളും പോലെ എളുപ്പത്തിൽ മനസ്സിലാക്കാവുന്ന രീതിയിൽ ഒരു ഡാറ്റാ സെറ്റ് അവതരിപ്പിക്കാൻ അവർക്ക് കഴിയും. ജോലിയുടെ സവിശേഷതകൾ ഏതാണ്ട് സമാനമാണെങ്കിലും, അൽഗോരിതം, കോഡിങ്ങ് എന്നിവയെ കുറിച്ചുള്ള അറിവ് കൂടാതെ, മെഷീൻ ലേണിംഗിലും ഡാറ്റ മൈനിംഗിലുമുള്ള അനുഭവവും ഒരു ഡാറ്റാ സയന്റിസ്റ്റിന്റെ ജോലിക്ക് ഒഴിച്ചു കൂടാനാവാത്തതാണ്.

ഡാറ്റ വിശകലനം ചെയ്യുന്നതിനേക്കാൾ മികച്ച അൽഗോരിതം നിർമ്മിക്കുന്നതിൽ ഡാറ്റ മൈനിംഗ് എഞ്ചിനീയർമാർ പ്രത്യേകം ശ്രദ്ധിക്കുന്നു. ഒരു ഡാറ്റ മാനേജുമെൻ്റ് സിസ്റ്റത്തിനായി ഒരു ബ്ലൂപ്രിന്റ് സൃഷ്ടിക്കുന്നതിന് സിസ്റ്റം ഡിസൈനർമാർ, ഡെവലപ്പർമാർ, ഉപഭോക്താക്കൾ എന്നിവരുമായി അടുത്ത് പ്രവർത്തിക്കുന്ന ഒരാളാണ് ഡാറ്റ ആർക്കിടെക്റ്റ്. ഒരു ബിസിനസ് ഇന്റലിജൻസ് അനലിസ്റ്റ് കമ്പനി നിലവിൽ എവിടെയാണ് നിൽക്കുന്നതെന്ന് കണ്ടെത്താൻ മാർക്കറ്റും ബിസിനസ് ട്രെൻഡുകളും വിശകലനം ചെയ്യുന്നു. വിശാലമായി പറഞ്ഞാൽ, ഡാറ്റാ സയൻസിന്റെ വലിയ തൊഴിൽ മേഖലയ്ക്ക് നൂതന സാങ്കേതിക വിദ്യകൾ പഠിക്കേണ്ടതും ജോലിയുടെ സ്വഭാവത്തിനനുസരിച്ചുള്ള കഴിവുകൾ നേടേണ്ടതും ആവശ്യമാണ്. പ്രോഗ്രാമിംഗ് ലാഗ്വേജുകളായ JAVA, Perl, C/C++, Python ഡാറ്റാ അനലിറ്റിക് സോഫ്റ്റ്വെയറുകളായ SAS, R, Hadoop, Tableau ഡാറ്റാബേസ് ടെക്നിക്കായ മോങ്കോഡിബി, SQL തുടങ്ങിയവയൊക്കെ ഡാറ്റാ അനാലിറ്റിക്സില്‍ ഉപയോഗിക്കുന്നവയാണ്. അതിനാല്‍ ഇവയില്‍ ഒന്നിലോ ഒന്നിലധികമോ മേഖലയില്‍ പ്രാവീണ്യം നേടേണ്ടതാണ്. ബിരുദ/ബിരുദാന്തര ബിരുദ പഠനത്തിനുശേഷം ഈ മേഖലയിലൊന്നില്‍ പ്രാവീണ്യം നേടിയും ഡാറ്റാ അനലിറ്റിക് മേഖലയില്‍ തൊഴില്‍ നേടാവുന്നതാണ്. ഇന്ത്യയിൽ തന്നെ പലയിടങ്ങളിലും ഡാറ്റ സയൻസുമായി ബന്ധപ്പെട്ട വിഷയങ്ങൾ പഠിപ്പിക്കുന്നുണ്ട്. ചില കമ്പനികള്‍ അവരുടേതായ രീതിയില്‍ ഡാറ്റ സയന്റിസ്റ്റുമാര്‍ക്ക് പരിശീലനം നല്‍കുന്നുണ്ട്. ആർട്ടിഫിഷ്യൽ ഇൻ്റലിജൻസ്, ബ്ലോക്ക് ചെയിൻ ടെക്‌നോളജി, ഇന്റർനെറ്റ് ഓഫ് തിംഗ്‌സ് തുടങ്ങിയ നൂതനാശയങ്ങളുമായി അടുത്ത ബന്ധമുള്ള ഒരു ശാസ്ത്രമാണ് ഡാറ്റാ സയൻസ് എന്നും മനസ്സിലാക്കണം. വിവിധ തൊഴിൽ മേഖലകൾ പരസ്പരം എങ്ങനെ ബന്ധപ്പെട്ടിരിക്കുന്നുവെന്നും അവ തമ്മിലുള്ള വ്യത്യാസങ്ങൾ എന്തൊക്കെയാണെന്നും ഓരോന്നിനും ആവശ്യമായ കഴിവുകൾ എന്താണെന്നും മനസിലാക്കുക എന്നതാണ് ഈ ഫീൽഡിൽ പ്രവേശിക്കാൻ ആഗ്രഹിക്കുന്നവരുടെ ഏറ്റവും വലിയ വെല്ലുവിളി.

അടിസ്ഥാനപരമായി, ഡാറ്റ സയൻസിൻ്റെ മൂന്ന് ഘടകങ്ങളിൽ സ്ഥിതിവിവരക്കണക്കുകൾ, പ്രോഗ്രാമിങ്ങ്, ബിസിനസ്സ് എന്നിവ ഉൾപ്പെടുന്നു. സ്റ്റാറ്റിസ്റ്റിക്‌സ്, മാത്തമാറ്റിക്‌സ്, കമ്പ്യൂട്ടർ സയൻസ്, എഞ്ചിനീയറിംഗ്, ഇക്കണോമിക്‌സ്, ഫിനാൻസ്, ബിസിനസ് സംബന്ധിയായ വിഷയങ്ങളിൽ ബിരുദധാരികൾക്ക് ഡാറ്റാ സയൻസിൽ തുടർ പഠനത്തിനും നല്ല ജോലി കണ്ടെത്താനും മികച്ച അവസരങ്ങളുണ്ട്. അടുത്ത പത്തുവര്‍ഷത്തേക്ക് ഏറ്റവുമധികം ഡിമാന്‍ഡ് വരുന്ന ജോലിയായിരിക്കും സ്റ്റാറ്റിസ്റ്റീഷ്യന്റേത് എന്നാണ് ഗൂഗിളിലെ ചീഫ് എക്കണോമിസ്റ്റായ ഹല്‍ വേരിയന്‍ അഭിപ്രായപ്പെട്ടത്.

ആർട്ടിഫിഷ്യൽ ഇൻ്റലിജെൻസ്

ക​മ്പ്യൂ​ട്ട​റു​ക​ളെ മ​നു​ഷ്യ​നെ​പ്പോ​ലെ ചി​ന്തി​പ്പി​ക്കാ​ൻ പ​രി​ശീ​ലി​പ്പി​ക്കു​ന്നു എ​ന്ന​താ​ണ് നി൪​മി​ത ബു​ദ്ധി​യു​ടെ പ്രത്യേകത. ആർട്ടിഫിഷ്യൽ ഇന്റലിജൻസ് നൽകുന്ന സാങ്കേതികവിദ്യകളും പുതുക്കിപ്പണിയലുകളും ലോകത്ത് സ്ഫോടനാത്മക മാറ്റത്തിനു വഴിയൊരുക്കുനു; ഇതു മനുഷ്യചരിത്രത്തെ മാറ്റിമറിക്കാനും ഒരുങ്ങുകയാണെന്നു പറയാം. മാറ്റത്തിന്റെ ശക്തമായ ഏജന്റുമാർ എന്ന നിലയിൽ, AI സാങ്കേതികവിദ്യകൾ മനുഷ്യന്റെ ബുദ്ധിയെ പൂർത്തീകരിക്കുന്നതിനും സാമൂഹിക-സാമ്പത്തിക പ്രശ്‌നങ്ങളെ ചെറുക്കുന്നതിനും നിരവധി അവസരങ്ങൾ വാഗ്ദാനം ചെയ്യുന്നു.

സ്വയം-പഠന പാറ്റേണുകൾ സൃഷ്ടിക്കുന്നതിനായി ഡാറ്റാ സെറ്റുകളെ ഒരു മെഷീനിലേക്ക് ഫീഡ് ചെയ്യുന്നത് AI-ൽ ഉൾപ്പെടുന്നു, അങ്ങനെ ചിന്ത, മനസ്സിലാക്കൽ, പഠനം, പ്രശ്‌നപരിഹാരം, ചരിത്രപരമായി മനുഷ്യബുദ്ധി ആവശ്യമായ തീരുമാനങ്ങൾ എടുക്കൽ തുടങ്ങിയ വൈജ്ഞാനിക പ്രവർത്തനങ്ങൾ പ്രാപ്‌തമാക്കുന്നു. മ​നു​ഷ്യ ചി​ന്ത​ക​ളെ അ​ടി​സ്ഥാ​ന​പ്പെ​ടു​ത്തി ആ​ർ​ട്ടി​ഫി​ഷൽ ഇ​ന്റ​ലി​ജ​ൻ​സ് ഉ​പ​യോ​ഗ​പ്പെ​ടു​ത്തി കൃ​ത്യ​മാ​യ തീ​രു​മാ​ന​ങ്ങ​ളെ​ടു​ക്കാ​ൻ യ​ന്ത്ര​ങ്ങ​ൾക്കും അപ്പോൾ സാ​ധി​ക്കുന്നു. നല്ലൊരു ഡ്രവറായി നമ്മെ എത്തിക്കാൻ കാർ, ബൈക്ക് തുടങ്ങിയ വാഹനങ്ങൾക്കുതന്നെ കഴിയുന്ന രീതിയെക്കുറിച്ച് ആലോചിച്ചു നോക്കൂ. സമാനമായ അവസ്ഥ. ഒരു നല്ല കൺസ്യൂമർ റെപ്രസെൻ്റേറ്റീവിനോടു പലപ്പോഴും നമ്മൾ സംസാരിക്കാറില്ലേ! പലപല സംശയങ്ങയങ്ങൾ നമ്മൾ ചോദിച്ചേക്കും. ഇതേകാര്യങ്ങൾ നമ്മുടെ മൊബൈൽ ചെയ്യുകയാണെങ്കിലോ! ഒരു ഡോകുമെൻ്റ് പ്രിൻ്റെടുക്കണമെങ്കിൽ നമുക്കത് മൊബൈലിനോടു പറഞ്ഞാൽ മതിയാവും. രണ്ടു ഗ്രഹങ്ങൾ തമ്മിലുള്ള ദൂരം കിലോമീറ്റർ കണക്കിൽ അറിയണം. നമുക്ക് പ്രിയപ്പെട്ടൊരു സിനിമാ താരത്തിൻ്റെ നിലവിലെ പ്രായം അറിയണം. കൊറോണ വൈറസിൻ്റെ ഉല്പത്തിയെ പറ്റിയും വിവിധ തലങ്ങളിൽ മ്യൂട്ടേഷനിലൂടെ വന്ന മാറ്റങ്ങളും നമുക്കറിയണം, നമുക്കത് നമ്മുടെ ഭാഷയിൽ തന്നെ കാണണം/കേൾക്കണം/ ആ വിവരത്തിൻ്റെ പ്രിൻ്റെടുക്കണം/ അതു നമുക്കും നമ്മുടെ പ്രിയപ്പെട്ടവർക്കും മെയിൽ അയക്കണം അങ്ങനെ പലപല ആവശ്യങ്ങൾ ഉണ്ടാവും നമുക്കപ്പോൾ. ആവർത്തനവിരസത തോന്നാത്തവിധം ഒരു മനുഷ്യനോടെന്ന പോലെ സംസാരിച്ചു നീങ്ങാൻ പറ്റും വിധം സുതാര്യമാണു കാര്യങ്ങൾ. വെറും ടെക്സ്റ്റ് മെസേജുകൾ മാത്രമല്ല ഇതെന്നറിയണം. ചിത്രങ്ങളായും വീഡിയോകളായും നമുക്കതു കാണാനാവും. കാരണം, ഇതിനൊക്കെ ഉതകും വിധം ഡാറ്റകളുടെ വിവിധ ശേഖരങ്ങൾ നമ്മുടെ സെർവ്വറുകളിൽ ലഭ്യമാണിപ്പോൾ. ഹിറ്റ്ലർ നടത്തിയ പടയോട്ടവും അയാളുടെ ക്രൂരതകളും തീർച്ചയായും അവരാൽ തന്നെ പുനരുജ്ജീവിപ്പിക്കപ്പെടും എന്നു പറയേണ്ടതില്ലല്ലോ!

ലോകത്തിലെ ഏറ്റവും വേഗത്തിൽ വളരുന്നതും വലുതുമായ സമ്പദ്‌വ്യവസ്ഥകളിലൊന്നായതിനാൽ, സുസ്ഥിര വളർച്ചയ്ക്കായി AI യുടെ ശക്തി പ്രയോജനപ്പെടുത്തുന്നതിന് ഇന്ത്യ അർപ്പണബോധത്തോടെ പ്രവർത്തിക്കേണ്ടത് അത്യന്താപേക്ഷിതമാണ്. ആ നിലയിലേക്ക് മാറാനുതകും വിധം തീരുമാനങ്ങൾ വരുന്നതും ശ്രദ്ധയിൽ പെട്ടിട്ടുണ്ട്. സാമ്പത്തിക അഭിവൃദ്ധി, മേഖലാ പുരോഗതി, സമഗ്രമായ വളർച്ച എന്നിവയ്ക്കായി AI-യെ പ്രയോജനപ്പെടുത്താൻ ലക്ഷ്യമിട്ടുള്ള ഒരു ദേശീയ തന്ത്രം ഉൾപ്പെടെ, ശക്തമായ ഒരു AI ആവാസവ്യവസ്ഥ സൃഷ്ടിക്കാൻ ഇന്ത്യ ലക്ഷ്യമിടുന്നുണ്ട് എന്നു കരുതാം. ഗവേഷണ കഴിവുകൾ ശക്തിപ്പെടുത്തുകയും ബിസിനസ്സ് സ്വീകരിക്കലിനെ പിന്തുണയ്ക്കുകയും അതിന്റെ ധാർമ്മിക ഉപയോഗത്തിനുള്ള മാനദണ്ഡങ്ങൾ വികസിപ്പിക്കുകയും ചെയ്യുന്ന ഫലപ്രദമായ AI തന്ത്രങ്ങൾ ഒരു പുതിയ ഇന്ത്യയുടെ വളർച്ചാ പാതയിൽ നൂതനാശയങ്ങളുടെ ഫലപ്രദമായ സംയോജനത്തിന് വഴിയൊരുക്കും. വരുന്ന പത്തു വർഷത്തിൽ ഡാറ്റ സയൻസും ആർട്ടിഫിഷ്യൽ ഇൻ്റലിജെൻസും കമ്പ്യൂട്ടിങ്ങ് മേഖലയിലൂടെ സമൂഹത്തിൻ്റെ വിവിധ തലങ്ങളിൽ വരുത്തുന്ന മാറ്റങ്ങൾ ഊഹിക്കാൻ പോലും കഴിയാത്ത വിധം അതുല്യമാണെന്നറിയുക. തൊഴിലവസരങ്ങളും ഗണ്യമായി വർദ്ധിക്കുന്നതിനാൽ, എക്സ്പേർട്ടായ ഉദ്യോഗാർത്ഥികൾക്ക് ലോകത്ത് എവിടേയും ജോലിസാധ്യതയും ഉണ്ടായിരിക്കും.

ഓപ്പണ്‍ എഐ കൂട്ടിച്ചേർത്തത്(27 മാർച്ച്, 2023):

ഒരു അമേരിക്കൻ ആർട്ടിഫിഷ്യൽ ഇന്റലിജൻസ് റിസർച്ച് ലബോറട്ടറിയാണ് ഓപ്പൺഎഐ. 2015-ൽ, സാം ആൾട്ട്മാൻ, റീഡ് ഹോഫ്മാൻ, ജസിക ലിവിങ്സ്റ്റണ്‍, ഇല്യ സുറ്റ്സ്‌കെവര്‍, പീറ്റര്‍ തീയെല്‍ എന്നിവരുൾപ്പെടെ സിലിക്കൺ വാലിയിലെ മറ്റ് പ്രമുഖ വ്യക്തികളുമായി ചേർന്ന് എലോൺ മസ്‌ക് ആയിരുന്നു ഓപ്പൺഎഐ സ്ഥാപിച്ചത്. തുടക്കത്തിൽ, ലാഭേച്ഛയില്ലാത്ത സ്ഥാപനമായാണ് OpenAI സ്ഥാപിതമായത്, എന്നാൽ 2019-ൽ അവർ ആ പദവി ഉപേക്ഷിച്ചു. സിഇഒ സ്ഥാനത്തിരിക്കുമ്പോൾ 2018 ല്‍ എലോണ്‍ മസ്‌ക് ഓപ്പണ്‍എഐയുടെ ഡയറക്ടര്‍ബോര്‍ഡില്‍ നിന്ന് രാജിവെച്ചു. ഭാവിയില്‍ മനുഷ്യവംശം നേരിടാന്‍ പോവുന്ന ഏറ്റവും വലിയ ഭീഷണിയായിരിക്കും ആര്‍ട്ടിഫിഷ്യല്‍ ഇന്റലിജന്‍സ് എന്ന അഭിപ്രായക്കാരനാണ് എലോണ്‍മസ്‌ക്. ആര്‍ട്ടിഫിഷ്യലിൻ്റെ സുരക്ഷിതമായ ഉപയോഗവും അതില്‍ നിന്ന് മനുഷ്യനുണ്ടായേക്കാവുന്ന ഭീഷണികളില്‍ നിന്നുള്ള സംരക്ഷണവും ഉറപ്പുവരുത്തുന്നതിനും ഈ ലക്ഷ്യങ്ങള്‍ക്ക് വേണ്ടിയുള്ള ഗവേഷണങ്ങള്‍ ഉറപ്പ് വരുത്തുന്നതിനും വേണ്ടിയാണ് ഓപ്പണ്‍ എഐ എന്ന സ്ഥാപനത്തിന് തുടക്കമിട്ടത്. ഡ്രൈവറില്ലാതെ സ്വന്തമായി ഡ്രൈവിങ് നടത്തുന്ന കാറുകള്‍ക്ക് വേണ്ടി സ്വന്തം നിലയ്ക്ക് ആര്‍ട്ടിഫിഷ്യല്‍ ഇന്റലിജന്‍സില്‍ ഗവേഷണങ്ങള്‍ നടത്തിയിരുന്ന ടെസ്ലയുടെ ഉടമയും മേധാവിയും കൂടിയായിരുന്നു അന്ന് എലോണ്‍ മസ്‌ക്. GPT എന്നത് ജനറേറ്റീവ് പ്രീ-ട്രെയിൻഡ് ട്രാൻസ്ഫോർമറിനെ സൂചിപ്പിക്കുന്നു, ഇത് ഒരു മനുഷ്യനെപ്പോലെ യാഥാർത്ഥ്യബോധത്തോടെ എഴുതാൻ കഴിയുന്ന ഒരു പ്രോഗ്രാമാണ്. ഓപ്പൺഎഐ തന്നെയാണു ചാറ്റ് ജിപിടി വികസിപ്പിച്ചെടുത്തത്.

എലോണ്‍ മസ്‌ക് പുറത്തുപോയതിന് ശേഷം 2019 ല്‍ ഓപ്പണ്‍ എഐ നോണ്‍ പ്രോഫിറ്റ് സ്ഥാപനം എന്നതില്‍ നിന്ന് മാറി ഒരു ഫോര്‍-പ്രോഫിറ്റ് സ്ഥാപനമായി മാറി. പിന്നീട് 2020 ലാണ് ജിപിടി-3 എന്ന ലാംഗ്വേജ് മോഡല്‍ ഓപ്പണ്‍ എഐ അവതരിപ്പിച്ചത്. ഇതിന്റെ അപ്‌ഡേറ്റഡ് പതിപ്പായ ജിപിടി 3.5 എന്ന ലാംഗ്വേജ് മോഡലിനെ അടിസ്ഥാനമാക്കിയാണ് 2022 ല്‍ ചാറ്റ് ജിപിടി അവതരിപ്പിച്ചത്. നിലവില്‍ ഓപ്പണ്‍ എഐയുടെ സിഇഒ സാം ആൾട്ട്മാൻ ആണ്. 2019 ല്‍ ഓപ്പണ്‍ എഐയില്‍ 100 കോടി ഡോളര്‍ നിക്ഷേപവും 2023 ല്‍ 1000 കോടി നിക്ഷേപവും നടത്തിയ മൈക്രോസോഫ്റ്റ് ആണ് ഓപ്പണ്‍ എഐയുടെ ഇപ്പോഴത്തെ ഏറ്റവും വലിയ നിക്ഷേപകര്‍. മൈക്രോസോഫ്റ്റിന് പുറമെ, ഇന്ത്യന്‍ ബഹുരാഷ്ട്ര കമ്പനിയായ ഇന്‍ഫോസിസും ഇന്ത്യന്‍ അമേരിക്കനായ വിനോദ് ഖോസ്ലയുടെ ഖോസ്ല വെഞ്ചേഴ്‌സും ഓപ്പണ്‍ എഐയിലെ കോര്‍പ്പറേറ്റ് നിക്ഷേകരാണ്.

റോബോട്ടിക് പ്രോസസ് ഓട്ടോമേഷൻ (RPA)

ഡിജിറ്റൽ സിസ്റ്റങ്ങളുമായും സോഫ്‌റ്റ്‌വെയറുകളുമായും ഇടപഴകുന്ന മനുഷ്യരുടെ പ്രവർത്തനങ്ങളെ അനുകരിക്കുന്ന സോഫ്‌റ്റ്‌വെയർ റോബോട്ടുകളെ (ബോട്ടുകൾ) നിർമ്മിക്കാനും വിന്യസിക്കാനും നിയന്ത്രിക്കാനും എളുപ്പമാക്കുന്ന ഒരു സോഫ്റ്റ്‌വെയർ സാങ്കേതികവിദ്യയാണ് റോബോട്ടിക് പ്രോസസ് ഓട്ടോമേഷൻ. കമ്പനിയുടെ വിവിധ ഘടകങ്ങളെ അടിസ്ഥാനമാക്കിയുള്ളതും നല്ല ചട്ടക്കൂടിൽ ഒതുങ്ങി ആവർത്തിച്ചു വരുന്നതുമായ ബിസിനസ്സ് പ്രക്രിയകൾ ഓട്ടോമേറ്റ് ചെയ്യാൻ കഴിയുന്ന സാങ്കേതികവിദ്യയാണിതെന്നു ചുരുക്കിപ്പറയാം. മറ്റ് ഡിജിറ്റൽ സിസ്റ്റങ്ങളുമായി ആശയവിനിമയം നടത്താനും ഡാറ്റ കൈമാറാനും വിവിധ ഡാറ്റകൾ വീണ്ടെടുക്കാനും പരസ്പരമുള്ള ഇടപാടുകൾ എളുപ്പമാക്കാനും അവയുടെ ഡീറ്റൈൽസ് സൂക്ഷിക്കാനും മറ്റും ഒരു കമ്പനിക്ക് RPA ടൂളുകൾ ഉപയോഗിക്കാമെന്നു സാരം.

ബിസിനസുകൾക്കുള്ള RPA കൊണ്ടുള്ള നേട്ടങ്ങൾ പലതാണ്
• ചെലവ് കുറഞ്ഞ രീതി – കാര്യങ്ങൾ എല്ലാം തന്നെ സോഫ്റ്റ്‌വെയർ കൈകാര്യം ചെയ്യും. തൊഴിലാളികളെ പോലെ അവധി ആവശ്യമില്ല, മടിയില്ല, ശമ്പളവും ആവശ്യമില്ല
• കൃത്യതയും ഗുണനിലവാരവും വിശ്വാസ്യതയും എന്നും ഒരേപോലെ കാണും
• സ്ഥിരത – സുസ്ഥിരമായ സാങ്കേതിക വിദ്യയാണിത്, മാറ്റങ്ങൾ ആവശ്യമാവുന്നില്ല
• മെച്ചപ്പെടുത്തിയ അനലിറ്റിക്സ് പവർ
• ജീവനക്കാരുടെ ഉൽപ്പാദനക്ഷമത വർദ്ധിപ്പിക്കുന്നു – ഈ ഡാറ്റ വെച്ചു ചെയ്യുന്ന മറ്റ് ജീവനക്കാരുടെ വർക്ക് എളുപ്പത്തിൽ ആക്കുന്നു
• വർദ്ധിച്ച ഉപഭോക്തൃ സംതൃപ്തി ലഭ്യമാവുന്നു
• വേഗത്തിൽ നടക്കുന്ന പ്രക്രിയ്യ്ണിതെന്ന് പറയേണ്ടതില്ലല്ലോ
• ഒന്നിലധികം സിസ്റ്റങ്ങളിൽ നിന്നുള്ള അനുരഞ്ജനം സാധ്യമാവുന്നു
• മെച്ചപ്പെട്ട ഐടി പിന്തുണയും മാനേജ്മെൻ്റും നിലവിൽ വരുന്നു.

കാര്യക്ഷമതയോടെ ജോലികൾ ചെയ്യാനുള്ള കഴിവ് RPA ക്കുണ്ട്. കമ്പനിയുടെ വിവിധ നിയമങ്ങളെ അടിസ്ഥാനമാക്കിയുള്ളതും കൃത്യമായി നിർവചിക്കപ്പെട്ടതും ആവർത്തിച്ചു വരുന്നതുമായ ഏതൊരു പ്രക്രിയയും ഒരു മികച്ച ഓട്ടോമേഷൻ സിസ്റ്റം ചെയ്യുന്നു. സ്റ്റാഫിംഗ് ചെലവ് കുറയ്ക്കുന്നതിനും തൊഴിലാളികൾക്കു സംഭവിച്ചേക്കാവുന്ന പിശകുകളെ നീക്കം ചെയ്യുന്നതിനും RPA സഹായിക്കുന്നു. ഇവയ്ക്ക് താരതമ്യേന നിർമ്മാണചെലവു മാത്രമേ ആവശ്യമുള്ളൂ. സമയകാലങ്ങൾക്കതീതമായി തന്നെ ഇവ പണിയെടുകുകയും ചെയ്യും. ഇവയെ പരിപാലിക്കാൻ ചുരുക്കം ചിലർ മാത്രം മതിയെന്നു വരുന്നതും ശ്രദ്ധേയമാണ്.

Geoffrey Hinton

AI യുടെ ഗോഡ്ഫാദർ എന്നറിയപ്പെടുന്ന ജെഫ്രി ഹിന്റൺ (Geoffrey Hinton) ഗൂഗിളിൽ നിന്നും ഒഴിഞ്ഞു. ന്യൂയോർക്ക് ടൈംസിന് നൽകിയ അഭിമുഖത്തിൽ ഇദ്ദേഹം ആർട്ടിഫിഷ്യൽ ഇന്റലിജൻസ് സാങ്കേതികവിദ്യയുടെ വിപുലീകരണവുമായി ബന്ധപ്പെട്ട ചില ആശങ്കകൾ പങ്കുവെച്ചിരുന്നു. തെറ്റായ വിവരങ്ങളുടെ വ്യാപനത്തെക്കുറിച്ചും മനുഷ്യരാശിയുടെ ദീർഘകാല അതിജീവനത്തെക്കുറിച്ചും താൻ ആശങ്കാകുലനാണെന്ന് ഹിന്റൺ അന്നു പറഞ്ഞു. ഭാവിയിൽ വരാനിരിക്കുന്ന വലിയ അപകടങ്ങളിലൊന്നായിരിക്കും ഈ AI എന്നദ്ദേഹം പറഞ്ഞിരുന്നു. ബ്രിട്ടീഷ്-കനേഡിയൻ കമ്പ്യൂട്ടർ ശാസ്ത്രജ്ഞനായ ജെഫ്രി ഹിന്റൺ ഒരു ദശാബ്ദത്തിലേറെയായി ഗൂഗിളിൽ ജോലി ചെയ്തു വരികയായിരുന്നു. ഇപ്പോൾ അദ്ദേഹം ഗൂഗിളിൽ നിന്ന് രാജിവച്ചു. എ.ഐയുടെ ഗോഡ്ഫാദർ എന്നറിയപ്പെടുന്നത് ഇദ്ദേഹം തന്നെയാണ്. ഇദ്ദേഹം ആർട്ടിഫിഷ്യൽ ഇന്റലിജൻസിന്റെ പ്രവർത്തനത്തിന് 2018-ലെ ട്യൂറിങ്ങ് അവാർഡ് നേടിയിരുന്നു.

പ്രളയം

 

payment - kerala floods ഈ ആഗസ്റ്റ് മാസം കേരളത്തിൽ സംബന്ധിച്ച് പ്രധാനപ്പെട്ടൊരു മാസമാണ്. 1924 നു ശേഷം മറ്റൊരു മഹാപ്രളയം കേരളത്തെ ഒന്നാകെ വിഴുഞ്ഞിയ മാസം. ഗാന്ധിജി വരെ അക്കാലത്ത് 7000 രൂപ സ്വരൂപിച്ച് കേരളത്തിനു നൽകിയിരുന്നു. നിലവിലെ പ്രളയം ഭീകരമാണ്, കോടികളുടെ നാശനഷ്ടങ്ങളാണുണ്ടാക്കിയത്. ഈ പ്രളയത്തിൽ പരിക്കുകളില്ലാതെ രക്ഷപ്പെട്ട ഏക ജില്ല കാസർഗോഡ് മാത്രമാണ്. വെള്ളപ്പൊക്കമായും ഒരുൾപൊട്ടലുകളായും ബാക്കിവന്ന 13 ജില്ലകളിലും പ്രളയകാലം അരങ്ങുതകർത്ത് പെയ്തിറങ്ങി. 400 ഓളം മനുഷ്യരും കളക്കിലധികം ജീവികളും മരിച്ചുവീണു. മൂവായിരത്തിൽ അധികം ദുരിതരക്ഷാ ക്യാമ്പുകൾ കേരളത്തിലങ്ങോളം പൊങ്ങിവന്നു. ഭീകരമായ അവസ്ഥയായിരുന്നു ഒരാഴ്ചയോളം കേരളത്തിൽ നടന്നത്.

#KeralaFloods2018:
Donate to the Chief Minister’s Distress Relief Fund,
കൂടുതൽ വിവരങ്ങൾ

ജാതി/മത/രാഷ്ട്രീയ ഭേദമില്ല മാവേലിനാട്ടിൽ മനുഷ്യർ ഒന്നായി ചേർന്നൊരു ഓണക്കാലം കൂടി ആയിരുന്നു ഈ ആഗസ്റ്റുമാസം. സ്വാതന്ത്ര്യദിനം 15 ന് ആഘോഷിച്ചശേഷമായിരുന്നു പ്രളയം ശക്തമായി പെയ്തിറങ്ങിയത്. രക്ഷാപ്രവർത്തകരായി ഓടിയെത്തിയ കടലിന്റെ മക്കൾ തുഴയെറിയാത്ത ദിക്കുകൾ കേരളത്തിൽ ഇന്നന്യമായിരിക്കുന്നു. “ഞങ്ങൾക്കു പ്രതിഫലം വേണ്ട സാറേ, സഹജരെ രക്ഷിച്ചെടുക്കുക മാത്രമല്ലേ ഞങ്ങൾ ചെയ്തുള്ളൂ” എന്ന വാക്യത്തിൽ തന്നെ അവർ സർവ്വവും ഒതുക്കിപ്പിടിച്ച ഹൃദയവിശാലത സാക്ഷരകേരളം മനസ്സിലാക്കേണ്ടിയിരിക്കുന്നു.

നോർത്തിന്ത്യയിലൂടെ ഇതേസമയം അബദ്ധപ്രചരണങ്ങൾക്ക് ആരോ ആക്കം കൂട്ടി കൊടുത്തിരുന്നു. നിറഞ്ഞുതുളുമ്പിയ ട്വിറ്റർ അടക്കമുള്ള അവരുടെ സോഷ്യൽ മീഡിയ പെരുമാറ്റങ്ങൾ ശ്രദ്ധിക്കേണ്ടതുണ്ട്. കേരളത്തെ ഒറ്റപ്പെടുത്താൻ ആക്കം വർദ്ധിപ്പിക്കുന്നതാണ് അവരുടെ പോസ്റ്റുകൾ അധികവും. ഇറ്റിനു വളം വെച്ചത് സുരേഷ് കൊച്ചാട്ടിൽ ഉണ്ടാക്കിയ വോയ്സ് മെസേജും അതുപോലെ പട്ടാളക്കാരന്റെ വേഷം കെട്ടി ഒരു നായർ നടത്തിയ പ്രസംഗത്തിന്റെ വിഡിയോയും ആയിരിക്കാം.

ഇതുപോലെ ഇക്കൂട്ടർ രഹസ്യഗ്രൂപ്പുകളിലൂടെ പ്രചരിപ്പിക്കുന്ന കഥകൾ എന്തൊക്കെയായിരിക്കാം!! ഏകദേശ സമാഹരണം ഫെയ്സ്ബുക്കിൽ കാണാം. എന്തായാലും മലയാളികൾക്കെതിരെ ഉത്തരേന്ത്യക്കാരുടെ ഇടയിൽ അത്ര ദൃശ്യമല്ലാത്ത ഒരു ഹേറ്റ് ക്യാമ്പയിൻ നടക്കുന്നുണ്ട് എന്നു തന്നെ കരുതുന്നു. ഓഫീസിൽ നിന്നും പലരും വീഡിയോകളും ഓഡിയോകളും കാണിച്ച് കാര്യകാരണം ചോദിക്കുമ്പോൾ മൗനിയായി ഇരിക്കുക മാത്രമാണു നല്ലതെന്നു തോന്നിപ്പോവുന്നു.

ആഗസ്റ്റ് 21 ചൊവ്വാഴ്ച വരെയുള്ള കണക്കുകൾ ഇവിടെ കാണാം.
More than 370 lives lost
More than 1 million people displaced
3000+ relief Camps opened
lost crops in 42000 hectares
537 landslides
221 bridges collapsed
Preliminary estimates count a loss of more than 3 billion USD (20000 plus crores in INR)
10000 km of roads damaged
2.6 lakhs farmers affected

പ്രളയമിപ്പോൾ ശമിക്കുകയാണ്. പ്രളയതാണ്ഡവങ്ങൾക്കായി ഇനി കാതോർത്തിരിക്കാം. വീടുകളിൽ കുമിഞ്ഞുകൂടിയ ചെളികൾ മാറ്റാൻ തന്നെ ഒരു വീടിന് മിനിമം ഒരുമാസത്തെ പണിയുണ്ടാവും. ഒക്കെയും കഴിഞ്ഞ് ഇവർ ഈ ചെളി പരസ്പരം വാരിയെറിഞ്ഞ് സല്ലപിക്കുന്നതാവണം ഇനി വരാനിരിക്കുന്ന വിപത്ത്. അങ്ങനെ ആവാതെ, കാലം കേരള മണ്ണിൽ ഉപേക്ഷിച്ചു പോയ നന്മയുടെ, കൂട്ടായ്മയുടെ വിത്തുകൾ പെറുക്കിയെടുക്കാനാവണം നമുക്ക്.

കാക്കിട്രൗസറിട്ടും പാർട്ടിചിഹ്നങ്ങൾ അണിഞ്ഞും ചിലരൊക്കെ സഹായിക്കാനെന്നും പറഞ്ഞ് പോയതായി ശ്രദ്ധയിൽ പെട്ടിരുന്നു. 5000 കോടിയാണ് ഇതിലൊരു കൂട്ടരുടെ തലതൊട്ടപ്പൻ പരസ്യത്തിനായി മാത്രം ചെലവാക്കിയത്!! പരിവാരസമൂഹം പറഞ്ഞു പരത്തുന്നതാവട്ടെ ഭക്ഷണം വേണ്ട, വെള്ളം വേണ്ട, കാശ് വേണ്ട… വേണ്ടത് പ്ലമ്പറും ഇലക്ട്രീഷ്യനേയും മറ്റുമാണെന്ന്!! പ്രളയം കരയിലുപേക്ഷിച്ചു പോയത് ഏറെ തിരിച്ചറിവുകളാണ്. വിലയിരുത്തലുകളാണ്. കാലം ഏല്പിച്ച ബോധമണ്ഡലത്തിലൂടെ ആവണം ഇനിയുള്ള യാത്ര.

ദുരിതാശ്വാസനിധിയിലേക്ക് തുക അയക്കാനുള്ള മാർഗ്ഗം

കേരള ഗവണെമ്ന്റിന്റെ സൈറ്റിലൂടെയും ആവാം.
ACCOUNT DETAILS
A/c Number : 67319948232
A/c Name: Chief Minister’s Distress Relief Fund
Branch: City Branch, Thiruvananthapuram
IFSC : SBIN0070028 | SWIFT CODE : SBININBBT08
Account Type: Savings | PAN: AAAGD0584M

 

ചില ഫെയ്സ്ബുക്ക് പോസ്റ്റുകൾ…

  1. പമ്പരവിഡ്ഢികൾ
  2. ലേബലുകളില്ലാതെ മനുഷ്യനായി മാറുക
  3. കണ്ണേ ഉറങ്ങുറങ്ങ്‌ പൊന്നോമന കുഞ്ഞേ ഉറങ്ങുറങ്ങ്‌
  4. നോർത്തിന്ത്യൻ പ്രളയം
  5. നടുനായകവൃന്ദം – വന്മതിൽ തീർത്ത പടയാളികൾ
  6. കടലിന്റെ മക്കളുടെ കാരുണ്യവർഷം
  7. അർണബ് ഗോസാമി
  8. ഒരു ഓണപ്പാട്ടു കൂടി
ഓണകാലവും മാവേലിയും വെള്ളപ്പൊക്കവും ഡാം തുറന്നു വിടലും ഒക്കെ സമന്വയിപ്പിച്ച് വർഷങ്ങൾക്കു മുൻപ് ടോംസ് വരച്ച ഒരു കാർട്ടൂൺ. ഓണകാലവും മാവേലിയും വെള്ളപ്പൊക്കവും ഡാം തുറന്നു വിടലും ഒക്കെ സമന്വയിപ്പിച്ച് വർഷങ്ങൾക്കു മുൻപ് ടോംസ് വരച്ച ഒരു കാർട്ടൂൺ
deccanherald.com When Mahatma Gandhi mobilised Rs 7,000 for Kerala Press Trust of India, 4-5 minutes Nearly a century ago when floods ravaged Kerala, Mahatma Gandhi had termed the misery of the people as “unimaginable” and stepped in to mobilise over Rs 7,000 to help them, records show. If the present rain fury has claimed over 290 lives and displaced over 10 lakh people, the massive floods that crippled the state in July 1924 are believed to have claimed a large number of lives and caused widespread destruction. Mahatma Gandhi, through a series of articles in his publications ‘Young India’ and ‘Navajivan’, had urged people of the country to generously contribute for the relief of the flood-hit’ Malabar’ (Kerala). Following his appeal, people from various walks of life including children had donated even their meagre savings to help the flood-affected people. Many had skipped a meal daily or given up milk to find money to contribute to relief fund mobilised by Gandhi, according to the journals penned by him. The “Father of the Nation” had mentioned in one of his articles in ‘Navajivan’ about a girl who had stolen three paise to contribute to the relief fund. “Malabar’s misery is unimaginable,” Mahatma had said in the article titled “Relief Work in Malabar.” He said he had to “confess” that the response to his appeal had been “more prompt” than he expected. “It has been proved not once but many times that, by God’s grace, compassion does exist in the hearts of the people.” Many funds had been launched for collecting relief amounts and people could contribute whichever one they choose. “I would only urge that pay, they must,” Mahatma Gandhi had said. The massive flood that lasted for around three weeks in July 1924 had crippled and submerged various parts of the then Kerala including hilly Munnar, Trichur (Thrissur now), Kozhikode, Ernakulam, Aluva, Muvattupuzha, Kumarakom, Chengannur and Thiruvananthapuram. It was commonly referred to as the “Great flood of 99” as it had happened in the ‘Kolla Varsham’ (Malayalam calendar) 1099. As per records, Kerala, which was administratively fragmented into three princely states (Travancore, Cochin and Malabar) during the time, had received excessive rains. Just as now, all rivers were in spate and Periyar had flooded following the opening of the sluice gates of the Mullaperiyar Dam. Freedom fighter, K Ayyappan Pillai has vivid memories about the “Maha pralayam”, the great deluge of ’99. “I was a school student when the heavy rains and floods submerged various places causing massive devastation. Normal life was crippled in the unabated rain,” the 104-year old Ayyappan Pillai told PTI here. “Roads had turned into rivers… overflowing water bodies… paddy fields inundated…people even sought refuge on hilltops in many parts,” he said. Gandhi, who came to know about the deluge from the state’s Congress leaders, had sent them a telegram on July 30, 1924, asking them to assist the relief measures of the government and also work in their own way to help the affected people. In another telegram, the Mahatma said he was collecting money and clothes and his only thought was about people who had no food, clothes and shelter. In an article in ‘Navajivan’ dated August 17, 1924, he said, “A sister has donated her four bracelets and a chain of pure gold. Another sister has given her heavy necklace. A child has parted with his gold trinket and a sister with her silver anklets.” “One person has given two toe-rings. An Antyaja girl has offered voluntarily the ornaments worn on her feet. A young man has handed over his gold cufflinks. Rs 6994-13 anna-3 paise have been collected in cash up to date,” Gandhiji said. In the wake of the present floods, the state-based multi-lingual history website – dutchinkerala.com has carried Mahatma Gandhi’s 1924 appeal to contribute to Kerala’s relief fund to persuade people across the world to donate to the Chief Minister’s distress relief fund. Meanwhile, donations pouring into the Kerala Chief Minister’s Distress Relief Fund (CMDRF) have crossed Rs 500 crore. From school children to corporate giants, all are contributing to the relief fund to help rebuild the flood-hit state, whose loss has been estimated to be over Rs 20,000 crore.
……………… 1924, ഭയങ്കരമായ വെള്ളപ്പൊക്കം കേരളം ഇതിനു മുന്പ് അനുഭവിച്ച മഹാപ്രളയമായിരുന്നു 1924ൽ ഉണ്ടായത്. 99ലെ വെള്ളപ്പൊക്കമെന്ന് ഏവരും പറയുന്ന ആ മഹാപ്രളയമുണ്ടായത് മലയാളവർഷം 1099ലെ കർക്കടകപ്പുലരിയിലായിരുന്നു. ഇതേക്കുറിച്ചുള്ള ആധികാരിക വിവരങ്ങൾ അധികം ലഭ്യമല്ല. ദീപിക ദിനപ്പത്രത്തിൽ അന്നു പ്രസിദ്ധീകരിച്ച വാർത്തകളാണ് ആ പ്രളയത്തിന്‍റെ തീവ്രത നമ്മെ ബോധ്യപ്പെടുത്തുന്നത്. 1924 ജൂലൈ മാസത്തിലാണ് കേരളം വലിയ ദുരന്തമുഖത്തേക്ക് എടുത്തെറിയപ്പെട്ടത്. ഭയങ്കരമായ വെള്ളപ്പൊക്കം എന്നതായിരുന്നു ജൂലൈ 22ന് ദീപിക പ്രധാന തലക്കെട്ടായി ഉപയോഗിച്ചത്. കേരളത്തിന്‍റെ സമസ്തമേഖലകളെയും വെള്ളപ്പൊക്കം ബാധിച്ചു. അന്ന് തിരുവിതാംകൂറിന്‍റെ വാണിജ്യതലസ്ഥാനമായിരുന്ന ആലപ്പുഴ എല്ലാ അർഥത്തിലും വെള്ളത്തിനടിയിലായി. ചാക്കുകണക്കിന് പഞ്ചസാരയും ഉപ്പും വെള്ളത്തിൽ അലിഞ്ഞുപോയത്രെ. വള്ളങ്ങൾ ഒലിച്ചുപോയി. വീടുകളിൽ വെള്ളം കയറി. പന്പാനദിയിലെ വെള്ളപ്പൊക്കത്തിൽ നിരവധി വീടുകളും കൃഷിസാമഗ്രികളും ഒലിച്ചുപോയി. ഒരു വീട് അപ്പാടെ ഒലിച്ചുപോകുന്ന കാഴ്ച കണ്ട ഒരാളുടെ അനുഭവം ശ്രദ്ധിക്കുക, ഒരു വീട് അപ്പാടെ മണിമലയാറ്റിലൂടെ ഒഴുകി. വീടിന്‍റെ മുകളിൽ 12 പേരുമുണ്ട ായിരുന്നു. കുറെ ദൂരം ചെന്നപ്പോൾ അവരെല്ലാവരും വെള്ളത്തിൽ വീണു. മല്ലപ്പുഴ ചേരിയിൽ നിന്നവർ മൃതദേഹം എണ്ണിക്കൊണ്ട ിരുന്നു. 150ലേറെ മൃതദേഹങ്ങളാണ് അവർ എണ്ണിയത്. പെരിയാറിനെ മഹാപ്രളയം ഉഗ്രകോപിയാക്കി. കോതമംഗലത്തും ആലുവയിലും വലിയ നാശനഷ്ടങ്ങൾ ഉണ്ടായി. ദുരിതാശ്വാസകേന്ദ്രങ്ങളെക്കുറിച്ച് കോട്ടയത്തുനിന്നുള്ള ഒരു റിപ്പോർട്ട് ഇങ്ങനെയാണ്, കുമരകം, കിളിരൂർ, അയ്മനം, നട്ടാശേരി എന്നീ സ്ഥലങ്ങളിൽ നിന്നു വന്നുകൊണ്ട ിരിക്കുന്ന ജനങ്ങൾക്ക് അവസാനമില്ല. ആയിരവും പതിനായിരവും പറ നെല്ലുകൾ അറയിലിട്ടുപൂട്ടിയ കുബേരന്മാരും നിത്യവൃത്തിക്കു വകയില്ലാതെ വന്നുചേരുന്നത് ഓർക്കുവാൻ കൂടി വയ്യ. പടിഞ്ഞാറൻപ്രദേശങ്ങളിൽനിന്ന് ആളുകൾ വന്നുകൊണ്ട ിരിക്കുന്നു. സ്ഥലത്തെ പ്രധാന പയ്യന്മാർ ബോട്ടുകളിലെത്തി ദുരിതത്തിൽപ്പെട്ടവരെ സഹായിച്ചുകൊണ്ട ിരിക്കുന്നു. ദുരിതാശ്വാസം ദുരിതാശ്വാസം നല്കുന്നതിനെക്കുറിച്ചുള്ള ആലപ്പുഴയിൽനിന്നുള്ള റിപ്പോർട്ട് ഇങ്ങനെ: സാധുസംരക്ഷണാർഥം മുനിസിപ്പാലിറ്റിയിൽനിന്നും 200 രൂപയും ഇന്നലെവരെ പൊതുജനങ്ങളിൽനിന്ന് അരിയും 500ൽപരം രൂപയും പിരിച്ച് സാധുക്കൾക്കു നൽകി. അരിവില ചാക്കൊന്നിനു 17 രൂപ വരെയെത്തിയിരിക്കുന്നു. സുലഭമായി അരി ഇവിടെ കിട്ടുന്നില്ല. കൊച്ചിയിൽ 15 രൂപയാണ് അരിവിലയെന്നത് പണക്കാരെപ്പോലും അദ്ഭുതപ്പെടുത്തുന്നു. ദൈവം തന്നെ സഹായം. പള്ളിക്കൂടങ്ങൾക്ക് അവധി നല്കിയിരിക്കുകയാണ്. ആലപ്പുഴ മുങ്ങി ആലപ്പുഴയിൽനിന്നുള്ള ദീപിക ലേഖകന്‍റെ റിപ്പോർട്ട് ഇങ്ങനെയാണ്. വെള്ളം പിന്നെയും വർധിച്ചുകൊണ്ടിരിക്കുകയാണ്. വെള്ളം ഇന്നലത്തേക്കാൾ മൂന്നടി കൂടി. സ്പെഷൽ ബോട്ടുകളയച്ച് കുട്ടനാടൻ പ്രദേശങ്ങളിൽനിന്ന് ആളുകളെ മാറ്റിക്കൊണ്ട ിരിക്കുന്നു. മുഹമ്മദീയ സമുദായപ്രധാനികളായ പക്കീർ സേട്ട്, കമാൽദീൻ കോയ പി.എസ് മുഹമ്മദ് മുതലായവരുടെ അത്യുത്സാഹത്തിൽ പുലയർ, ഈഴവർ ക്രിസ്ത്യാനികൾ നായന്മാർ മുതലായി അനവധി സാധുക്കളെ മുഹമ്മദീയർ രക്ഷിച്ചുകൊണ്ടു വന്നു. മലയോരങ്ങളിൽനിന്നുള്ള ഒരു റിപ്പോർട്ട് ശ്രദ്ധിക്കൂ. 1924 ജൂലൈ 26. തൊള്ളായിരം ഏക്കർ ഉണ്ട ായിരുന്ന പെരിയാർ റബർ തോട്ടം വെള്ളത്തിനടിയിലായി. രാത്രിയിൽ കുതിച്ചെത്തിയ വെള്ളത്തിൽ റൈട്ടറും കൂലിപ്പണിക്കാരും താമസിച്ചിരുന്ന കെട്ടിടം അവരെയും കൊണ്ട ് ഒഴുകി. കുറേ ജോലിക്കാർ വീട്ടിൽ നിന്ന് ചാടി റബർ മരങ്ങളിൽ വലിഞ്ഞു കയറി. ദീർഘായുസ്സുണ്ട ായിരുന്ന ചിലർ മാത്രം മരത്തിൽ പിടിച്ചിരുന്ന് രക്ഷപ്പെട്ടു. ബാക്കിയുള്ളവർ വെള്ളത്തിന്‍റെ വരവും ഒഴുക്കും കണ്ട് ബോധമറ്റ് വെള്ളത്തിൽ തന്നെ വീണു മരിച്ചു. സംഭവങ്ങൾ ഏതു ശിലാഹൃദയന്‍റെയും കരളലിയിപ്പിക്കുന്നതാണ്. പീരുമേട് മുതൽ വണ്ട ിപ്പെരിയാർ വരെയുള്ള സകല മലയിലും ഉരുൾപൊട്ടി. നാൽപത്തിനാലാം മൈൽ കഴിഞ്ഞ് ഒരു കെട്ടിടത്തിനു മുകളിൽ മലയിടിഞ്ഞ് വീണ് നാൽപതു പേർ മരിച്ചു. കെകെ റോഡിൽ മലയിടിഞ്ഞു വീണപ്പോൾ മല നിന്ന ഭാഗത്ത് വലിയ കയവും റോഡിൽ അരമൈൽ നീളത്തിൽ പുതിയ കുന്നും രൂപപ്പെട്ടു. ആ കുന്നിലൂടെയാണ് ഇന്ന് കോട്ടയത്തുനിന്ന് കുമളിക്ക് വാഹനങ്ങൾ പോകുന്നത്. മലബാറിലും പ്രളയം നാശം വിതച്ചു. കർക്കടകം 17 ദിവസം കഴിഞ്ഞപ്പോഴും തെക്കേ മലബാർ വെള്ളത്തിലായിരുന്നു. കോഴിക്കോട് പട്ടണം മുക്കാലും മുങ്ങി. രണ്ടായിരം വീടുകൾ നിലം പതിച്ചു. രണ്ട ു ദിവസം മുങ്ങിക്കിടന്ന പൊന്നാനി താലൂക്കിൽ മൃതദേഹങ്ങൾ ഒഴുകി നടന്നു. പക്ഷേ, അവ മറ്റുള്ള സ്ഥലങ്ങളിൽനിന്ന് ഒഴുകിവന്നതായിരുന്നു. പ്രസിദ്ധ തടിവ്യവസായ കേന്ദ്രമായ കല്ലായിയിൽനിന്ന് അന്നത്തെ വിലയ്ക്ക് 15 ലക്ഷം രൂപയുടെ തടിയാണ് ഒഴുകിപ്പോയത്. ബുഡിയറയിലെ വ്യവസായ ശാലയിൽ നിന്ന് ഇരുപത്തൊന്നരലക്ഷം മേച്ചിലോടുകളും പതിനായിരത്തിൽപരം ഇഷ്ടികയും വിറകും ഒഴുകിപ്പോയി. തീണ്ടലും തൊടീലും ഒലിച്ചുപോയി തീണ്ടലും തൊടീലും കർശനമായി ഉണ്ടായിരുന്ന ഇടമായിരുന്നു കേരളം. നന്പൂതിരിമാരുടെ അടുത്തുപോകുവാൻപോലും താണ ജാതിക്കാർക്ക് സാധിക്കാതിരുന്ന കാലം. എന്നാൽ, മഹാപ്രളയം എല്ലാവരെയും ഒന്നിച്ച് ഒരിടത്താക്കി. അയിത്തം വെള്ളത്തിലൊലിച്ചുപോകുന്ന കാഴ്ചയ്ക്കായിരുന്നു കാലടിയും സമീപപ്രദേശങ്ങളും സാക്ഷിയായത്. കാലടി തലയാറ്റുംപള്ളി മനയ്ക്കൽനിന്നു കൊണ്ടുപോയ വലിയ ചെന്പിൽ അരിവേവിച്ചാണ് അഭയകേന്ദ്രമായിരുന്ന മറ്റൂർ കുന്നിലെ സകല ജാതിക്കാർക്കും ചോറു കൊടുത്തതെന്ന് അന്നത്തെ ഒരു റിപ്പോർട്ട് പറയുന്നു. ക്ഷേത്രത്തിൽ മറ്റുമതക്കാർക്കും താഴ്ന്ന ജാതിക്കാർക്കും പ്രവേശനമുണ്ടായിരുന്നില്ല. എന്നാൽ, ഉയർന്ന പ്രദേശങ്ങളിലെ ക്ഷേത്ര വളപ്പുകളിൽ ഇതാദ്യമായി എല്ലാ ജാതിക്കാരും കയറിക്കൂടി. ചിലയിടത്തു മാത്രം ക്ഷേത്ര മതിൽക്കെട്ടിനുള്ളിൽ കയറിയിരുന്ന സവർണർ മറ്റുള്ളവരെ അകത്തു കടത്തിയില്ല. കാലടിയിൽ പ്രകൃതി അയിത്തമവസാനിപ്പിച്ചപ്പോഴും ഏറെ അകലെയല്ലാതെ വൈക്കത്ത് അയിത്തതിനെതിരേ സഹനസമരം നടക്കുകയായിരുന്നു എന്നതാണ് വലിയ സത്യം. 27 ദിവസമാണ് ആ മഹാപ്രളയം നീണ്ടു നിന്നത്. എറണാകുളം, കോട്ടയം, തൃശൂർ, ആലപ്പുഴ, ഇടുക്കി ജില്ലകളിലായിരുന്നു ദുരന്തം ഏറെ ബാധിച്ചത്. മൂന്നാറിലെ ഏറ്റവും വലിയ മലയായിരുന്നു കരിന്തിരി മല. ആ മല പൂർണമായി ഇല്ലാതായതായി ഒരു റിപ്പോർട്ട് പറയുന്നു. മൂന്നാറിലേക്കുള്ള വഴി ഈ പ്രളയത്തിനുശേഷം ഇല്ലാതെയായി. ഇപ്പോൾ കാണുന്ന റോഡ് പിന്നീട് നിർമിച്ചതാണ്. മുല്ലപ്പെരിയാർ ഡാമിലെ ചോർച്ചയാണ് ഈ മഹാദുരന്തമുണ്ടായതെന്നാണ് പഴമക്കാർ വിശ്വസിച്ചിരുന്നത്. അന്നും ഇന്നും മുല്ലപ്പെരിയാർ ഡാം കേരള ജനതയ്ക്ക് ഒരുപേടി സ്വപ്നമാണെന്നതാണ് വസ്തുത.

ഗ്രാഫിക്സ് ഡിസൈനിങ്

free vector graphics editorsചുറ്റുവട്ടങ്ങിളിലായി പലതരത്തിലുള്ള ഡിസൈനുകൾ നമ്മൾ കണ്ടുവരുന്നുണ്ട്. നിത്യേന കാണുന്ന പത്രമാധ്യമങ്ങൾ, അവയുടെ ഓൺലൈൻ വേഷപ്പകർച്ചകൾ, പുസ്തകങ്ങള്‍, അവയുടെ മുഖചിത്രങ്ങൾ, ഉൾപ്പേജുകൾ, കല്യാണ ക്ഷണക്കത്തുകള്‍, വിസിറ്റിങ് കാര്‍ഡുകള്‍, പരസ്യ ബ്രോഷറുകള്‍, ബില്ലുകള്‍, ബാനറുകൾ, ബോര്‍ഡുകള്‍, വെബ്‌സൈറ്റുകള്‍ എന്നിങ്ങനെ പലതാണു മേഖലകൾ. ഇവിടെ രണ്ടുതരം രചനാവിരുതുകളെ പറ്റി പറയുന്നു. ഒന്ന് റാസ്റ്റർ എഡിറ്റിങ്, മറ്റൊന്ന് വെക്ടർ എഡിറ്റിങ്.  നല്ല ഗംഭീരമാർന്ന എഴുത്തുകൾ, കൃത്യമായ ചിത്രങ്ങൾ, ഇവ രണ്ടും ചേർത്തു യോജിപ്പിക്കാൻ പറ്റിയ ആശയങ്ങൾ എന്നിവ കൂടിച്ചേർന്ന സുന്ദരമായ കമ്മ്യൂണിക്കേഷന്‍ കലയാണു ഗ്രാഫിക് ഡിസൈനിങ് എന്ന സംഗതി.

റാസ്റ്റർ എഡിറ്റിങ്

ഒരു ചിത്രത്തിന്റെ മിനിമം രൂപമായ പിക്സൽ ലെവലിൽ വരെ പോയി എഡിറ്റിങ് നടത്താനാവുന്ന ലീലാവിലാസങ്ങൾ ആണവിടെ പ്രധാനം. പരിചയം കൊണ്ട് Adobe-ന്റെ Photoshop ആണ് മികച്ച ഫോട്ടോ എഡിറ്റിങ് സോഫ്റ്റ്‌വെയറായിട്ട് തോന്നിയത്. കലാവിരുതുകൾ അറിയുമെങ്കിൽ പലതരം നൂലാമാലകൾ ഒപ്പിക്കാം എന്നതിനപ്പുറം സോഫ്റ്റ്‌വെയർ എന്ന നിലയിൽ മികച്ച പലതരം സംഗതികളും ഇതിലുണ്ട്. പക്ഷേ ഇത് Free യോ Open Source- ഒന്നുമല്ല ആവശ്യമുണ്ടെങ്കിൽ കാശു കൊടുത്ത് വേണ്ടത്ര സമയത്തേക്ക് വാങ്ങിക്കണം. താഴെ റാസ്റ്റർ എഡിറ്റിങ്ങിനു പറ്റിയ ഫ്രീ സോഫ്റ്റ്‌വെയറുകളുടെ പേരുകൾ കൊടുക്കുന്നു. കാണുക.

01) GIMP
02) Paint.NET
03)#Krita
04) Autodesk Pixlr
05) MyPaint
06) Pinta
07) Polarr
08) PhotoFiltre
09) Adobe Photoshop Express
10) MediBang Paint
11) FireAlpaca
12) Fotor
13) Seashore
14) Sumo Paint
15) Artweaver
16) Livebrush
17) Snapseed
18) Photivo
19) PicMonkey
20) Photopea
21) LazPaint
22) Pixeluvo
23) Hornil Stylepix
24) SketchPort
25) Verve

ഇവയൊക്കെയും ഫോട്ടോഷോപ്പ് പോലുള്ള സ്റ്റോഫ്റ്റ്‌വെയറുകൾ പോലെ പകരമായി നിൽക്കാൻ പറ്റുന്നത് എന്നു പറയുന്നില്ല; കൂടെ നിൽക്കാൻ പര്യാപ്തമായ ഫ്രീസോഫ്റ്റ്‌വെയറുകളെ പരിചയപ്പെടുത്തി എന്നു മാത്രം കരുതുക. ഫോട്ടോഷോപ്പ് അറിയുന്നവർക്ക് അതേ ലോജിക്കിൽ ഉപയോഗിക്കാൻ പറ്റിയ ഒരു ഓൺലൈൻ സംവിധാനം ഉണ്ട്. https://pixlr.com/ – ഇതാണു സൈറ്റ്. അത്യാവശ്യകാര്യങ്ങളൊക്കെ ഒപ്പിക്കാം. മറ്റുള്ളവരെ ഒന്നു പേരുപറഞ്ഞ് പരിചയപ്പെടുത്താം. അത്, ഗൂഗിളിൽ തപ്പി കണ്ടുപിടിച്ച് ഉപയോഗിച്ചാൽ മതി. സ്പെല്ലിങ് മാറിപ്പോകാതെ നോക്കണം

വെക്ടർ എഡിറ്റിങ്

ഇവിടെ പറയുന്നത് കോറൽ ഡ്രോയെ അടിസ്ഥാനപെടുത്തിയവയാണ്. ഇത് വെക്ടർ എഡിറ്റിങാണ് . ശുദ്ധമായ വ്യക്തത ആവശ്യമായ രീതിയിൽ ലോഗോ, ലെറ്റർ പാഡ്, വിസറ്റിങ് കാർഡ് എന്നിവ പോലുള്ളവയ്ക്ക് നല്ലത് വെക്ടർ എഡിറ്റിങ് സോഫ്റ്റ്‌വെയറുകളാണ്. ചറപറയാക്കി ഫെയ്സ്ബൗക്കിൽ തട്ടാനൊക്കെ റാസ്റ്റർ എഡിറ്റിങ് പണിയായുധങ്ങൾ തന്നെ ധാരാളം. പ്രിന്റിങിനും മറ്റും നല്ലത് ഇവനാണ്. അഡോബിന്റെ ഇല്ലുസ്‌ട്രേറ്റര്‍, കോറല്‍ ഡ്രോ ഒക്കെ തന്നെയാണിവിടേയും മുൻപന്തിയിൽ നിൽക്കുന്നത്. എന്തായാലും പറയുന്ന സോഫ്റ്റ്‌വെയറുകൾ വെറും പണിയായുധങ്ങൾ മാത്രമാണ്. ഇവയൊക്കെ വെച്ച് പണിയെടുക്കുന്ന ആളുകളുടെ മിടുക്കിൽ തന്നെയാണ് കാര്യങ്ങൾ ഇരിക്കുന്നത്. എങ്കിലും ചെറുതായ കാര്യങ്ങളൊക്കെ ഫ്രീയായി കിട്ടുന്ന സോഫ്റ്റ്‌വെയറുകൾ ഉപയോഗിച്ച് സ്വന്തം കമ്പ്യൂട്ടറിൽ ചെയ്തു നോക്കാമല്ലോ, വേണ്ടെങ്കിൽ ഡീലീറ്റടിക്കാം, വേണമെങ്കിൽ കുട്ടപ്പനാക്കി ഫെയ്സ്ബുക്കിലിടാം!! അത്രേ ഉള്ളൂ കാര്യം…

India map
ഭാരതം – ക്ലിക്ക് ചെയ്താൽ സോഴ്സ് ഫയൽ കാണാം

ഇവിടേയും ഞാനൊന്നിനു മുൻഗണന കൊടുക്കാൻ ആഗ്രഹിക്കുന്നു, അത് ഇങ്ക്‌സ്കേപ്പാണ്. പണ്ടുതൊട്ടേ സൈഡായിട്ട് അതും കൊണ്ടുപോകുന്നതു കൊണ്ടുള്ള ഒരു സ്നേഹം ആണെന്നു പറയാം. ഇതിൽ മുമ്പ് ചെയ്ത മിക്ക കാര്യങ്ങളും വിക്കിപീഡിയയിൽ കൊടുത്തിട്ടുണ്ട്. അതിൽ ഭൂപടവുമായി ബന്ധപ്പെട്ടതു കാണുക << Map Project >>. സോഴ്സ്കോഡ് അടക്കം അതിൽ ഉള്ളതിനാൽ ഡൗൺലോഡ് ചെയ്തെടുത്ത് ആർക്കും കളികൾ കളിക്കാനാവും. മിക്ക ഇന്ത്യൻ ഭാഷകളിലേക്കും ഇതുപോലെ മാറ്റം വരുത്തിയത് അവർ എന്റെ പേരു മെൻഷൻ ചെയ്തപ്പോൾ നോട്ടിഫിക്കേഷൻ വന്നു കണ്ടിട്ടുണ്ട്. ഇഷ്ടപ്പെട്ട ഒരു മാപ്പ് ക്ലിക്ക് ചെയ്തു വലുതാക്കി നോക്കിയാൽ അതിന്റെ തീവ്രത കാണാം. അതൊക്കെ കൊണ്ട് ഒന്നാം സ്ഥാനം ഇങ്ക്‌സ്കേപ്പിനു കൊടുക്കുന്നു… കഴിഞ്ഞ ഡിസംബറിൽ ഇവയിൽ പലതും ചെയ്തത് ടെക്സ്റ്റ് എഡിറ്റിങ് സാമാനമായ നോട്ട്‌പാഡിലായിരുന്നു എന്നു പറഞ്ഞാൽ എത്രപേർക്ക് വിശ്വസിക്കാനാവും!! ഇവിടെ വലതുവശത്തു കൊടുത്തിരിക്കുന്ന ഇന്ത്യയുടെ ഭൂപടത്തിൽ ക്ലിക്ക് ചെയ്തു നോക്കുക. വിക്കിപീഡിയയി കൊടുത്തിരിക്കുന്ന സോഴ്സ്ഫയലുതന്നെ അപ്പോൾ കാണാം. സോഴ്സ് ഫയൽ ആയതിനാൽ വേണ്ടുന്ന മാറ്റങ്ങൾ വരുത്താനാവും. എസ്.വി.ജി. എഡിറ്റിങ് അറിയുന്നവർക്ക് ഒരു നോട്ട്പാഡിൽ വെച്ചുതന്നെ കളറുകൾ മാറ്റാനും പേരുകൾ മാറ്റാനും മറ്റു ഭാഷകളിലേക്ക് മാറ്റാനും ഫോണ്ട് സ്റ്റൈൽ മാറ്റാനും ഒക്കെ പറ്റും. ഈ സൈറ്റിന്റെ ലോഗോ തന്നെയാണു മറ്റൊരു ഉദാഹരണം. ഇവിടെ ക്ലിക്ക് ചെയ്താൽ കിട്ടുന്ന ഇമേജിൽ നിന്നും ഏതെങ്കിലും ഒരു വാക്ക് സെലെക്റ്റ് ചെയ്ത് കോപ്പി എടുത്ത്, നോട്ടോപാഡിലോ മറ്റോ പേസ്റ്റ് ചെയ്തു നോക്ക്!! ഫോണ്ടിന്റെ സ്റ്റൈലും കളറും ഒന്നും കിട്ടിയില്ലെങ്കിലും കണ്ടന്റ് കൃത്യമായി കിട്ടും!! അതൊക്കെ ഇങ്ക്‌സ്കേപ്പിന്റെ ഒരു മായാജാലം മാത്രമായി കാണുക. ഇനി നമുക്ക് ഇങ്ക്സ്കേപ്പ് അടക്കം ലഭ്യമായ മറ്റ് വെക്ടർ എഡിറ്റിങ് സോഫ്റ്റ്‌വെയറുകളെ ഒന്നു പരിചയപ്പെടാം:

01) Inkscape
02) Boxy SVG
03) Apache OpenOffice Draw
04) sK1
05) Karbon
06) AutoDraw
07) Photopea
08) svg-edit
09) Serif Drawplus
10) Bez
11) PixelStyle
12) YouiDraw
13) InsightPoint
14) QueekyPaint
15) Torapp guilloche designer
16) Swipe Draw
17) Alchemy
18) DrawBerry
19) Creative Docs .Net
20) Webchemy
21) FreePhotoEditor.Tech
22) Kleki
23) Ella
24) Vecteezy Editor
25) IYOPRO

ഗൂഗിളിൽ സേർച്ച് ചെയ്തു നോക്കിയാൽ ഫ്രീയായി ഡൗൺലോഡ് ചെയ്യാനുള്ള ലിങ്ക് കിട്ടും. ഇവയുടെ പേരു തെറ്റാതെ നോക്കണം. ലീങ്ക് ആവശ്യമാണെങ്കിൽ ചോദിക്കുന്നവയുടെ ഡൗൺലോഡിങ് ലിങ്ക് തരാവുന്നതും ആണ്.

മുകളിൽ കൊടുത്തിരിക്കുന്ന ഭാരതത്തിന്റെ svg ചിത്രം തന്നെ ഉപയോഗിച്ച് വരുത്തിയ മാറ്റങ്ങൾ കാണുക. ഇതിന്റെ കുറിപ്പുകൊടുത്തത് ഇപ്രകാരമാണ്, 2017 ൽ ഭാരതത്തിൽ ഉള്ള രാഷ്ട്രീയപാർട്ടികളുടെ സ്വാധീനം. ഭൂരിപക്ഷ സ്വാധീനമുള്ള അധികാരികൾ തന്നെയാണ് നിയമവും അധികാരവും കൈകാര്യം ചെയ്യുക. അതാണു വർത്തമാനവും ഭാവിയും. ഭാവിയിലെ ഭാരതവും അതിന്റെ പ്രതിഫലനമാവുന്നു. തെറ്റുകൾ തിരുത്താൻ കഴിവുള്ളവർ ജനങ്ങൾ മാത്രമാണെന്നുള്ളത് ഇവിടുത്തെ വസ്തുതയാണ്… അതുകൊണ്ട് കാര്യങ്ങളെ കൈകാര്യം ചെയ്യാൻ പ്രാപ്തിയുള്ളവരായി നമുക്ക് മാറാൻ പറ്റേണ്ടതുമാണ്.കൂടെ കുഞ്ഞുണ്ണിമാഷെ കൂടി ഓർക്കുന്നു…
നമ്മൾ നന്നാകുവാനെന്തു നല്ലൂ,
നല്ലൊരു ചൂലു മനസ്സിൽ നല്ലൂ…

India map political parties 2017

11 ബിജെപി
ഉത്തരഖണ്ഡ്
ഉത്തർപ്രദേശ്
ഹരിയാന
രാജസ്ഥാൻ
അരുണാചൽ പ്രദേശ്
അസം
ജാർഖണ്ഡ്
ഛത്തീസ്ഗഡ്
മധ്യപ്രദേശ്
ഗുജറാത്ത്
ഗോവ
7 എൻഡിഎ
ജമ്മു കാശ്മീർ
ബീഹാർ
സിക്കിം
നാഗാലാന്റ്
മണിപ്പൂർ
മഹാരാഷ്ട്ര
ആന്ധ്രാപ്രദേശ്
6 കോൺഗ്രസ്
ഹിമാചൽപ്രദേശ്
പഞ്ചാബ്
മേഘാലയ
മിസോറാം
കർണാടക
പുതുച്ചേരി
5 മറ്റുള്ളവർ
ബംഗാൾ
തെലങ്കാന
തമിഴ്നാട്
ഡൽഹി
ഒറീസ

2  ഇടതുപക്ഷം
കേരളം
ത്രിപുര

ഇതു ചെയ്തിരിക്കുന്നത് ഇങ്ക്സ്കേപ്പും നോട്ട്പാഡും ചേർന്നാണ്. ഇങ്ക്സ്കേപ്പിൽ തന്നെ എല്ലാം ചെയ്യാമെന്നിരിക്കിലും സാഹചര്യവും എളുപ്പവും പരിഗണിച്ച് നോട്ട്പാഡെന്ന ടെക്സ്റ്റ് എഡിറ്റർ ഉപയോഗിക്കുന്നു എന്നേ ഉള്ളൂ, ഒരു വാല്യു ഫൈൻഡും റിപ്ലേയ്സും ചെയ്യാൻ നോട്ട്പാഡ് വളരെ സഹായിയാണ്. ഇങ്ക്സ്കേപ് മാത്രം ഉപയോഗിച്ച് ചെയ്തിരിക്കുന്നത് ഭൂപടത്തിൽ കാണുന്ന സംസ്ഥാനങ്ങളുടെ നമ്പറുകളും ലിസ്റ്റും മാത്രമാണ്. കളറുമാറ്റങ്ങൾ എല്ലാം നോട്ട്പാഡിലായിരുന്നു.

HTML5 and CSS3 References

The following section contains references to latest HTML5, CSS3 and more…

HTML5 / XHTML Tags

The following section contains a complete list of standard tags belonging to the HTML5 and XHTML 1.0 specifications. All the tags are ordered alphabetically.


CSS3 Properties

The following section contains a complete list of visual properties belonging to the CSS3 specifications. All the properties are ordered alphabetically.

A
align-content
align-items
align-self
animation
animation-delay
animation-direction
animation-duration
animation-fill-mode
animation-iteration-count
animation-name
animation-play-state
animation-timing-function
B
backface-visibility
background
background-attachment
background-clip
background-color
background-image
background-origin
background-position
background-repeat
background-size
border
border-bottom
border-bottom-color
border-bottom-left-radius
border-bottom-right-radius
border-bottom-style
border-bottom-width
border-collapse
border-color
border-image
border-image-outset
border-image-repeat
border-image-slice
border-image-source
border-image-width
border-left
border-left-color
border-left-style
border-left-width
border-radius
border-right
border-right-color
border-right-style
border-right-width
border-spacing
border-style
border-top
border-top-color
border-top-left-radius
border-top-right-radius
border-top-style
border-top-width
border-width
bottom
box-shadow
box-sizing
C
caption-side
clear

റോയൽ ഫൂട്ട്‌വെയേർസ് ആൻഡ് ബാഗ്സ് കാഞ്ഞങ്ങാട്

റോയൽ ഫൂട് വെയർസ് കാഞ്ഞങ്ങാട്ചില സംഭവങ്ങൾ നമ്മളെ വല്ലാതെ അത്ഭുതപ്പെടുത്തിയേക്കും. കഴിഞ്ഞ ദിവസം അങ്ങനെയൊന്നു സംഭവിച്ചു. മഞ്ജുവിന്റെ വീട്ടിൽ പോയി വൈകുന്നേരം തിരിച്ചുവരും വഴിയായിരുന്നു. മഞ്ജുവിനോടൊപ്പം വർക്ക് ചെയ്യുന്ന അവളുടെ കൂട്ടുകാരിക്ക് വേണ്ടി പോപ്പിക്കുട തേടി അലയുകയായിരുന്നു ഞങ്ങൾ. കുറേ കടകൾ കേറിയിറങ്ങിയെങ്കിലും പോപ്പിക്കുട കണ്ടുകിട്ടിയില്ല. അവസാനമാണ് ബസ് സ്റ്റാന്റിന്റെ സമീപത്തേക്ക് ഞങ്ങൾ വന്നത്. ബസ്റ്റാറ്റാന്റിനു സമീപമുള്ള റോയൽ ഫൂട്ട്‌വെയേർസിനു മുമ്പിൽ എത്തിയപ്പോൾ കൗണ്ടറിൽ ഇരിക്കുന്ന മദ്ധ്യവയകനായ ആളോട് വിളിച്ചു ചോദിച്ചു ചേട്ടാ പോപ്പിക്കുടയുണ്ടോ എന്ന്. പോപ്പിയും ജോൺസും ഉണ്ടെന്ന് മറുപടി കിട്ടി. അകത്തേക്ക് കയറിയപ്പോൾ ഷോപ്പിലെ ജീവനകാരന്റേയും ഇദ്ദേഹത്തിന്റെയും പെരുമാറ്റം നന്നായി ഇഷ്ടപ്പെട്ടു. എങ്കിലും ഇതൊക്കെ അവരുടെ തൊഴിലിന്റെ ഭാഗമാണല്ലോ, നാളെയും ഞാനിവിടെ വരണമെങ്കിൽ അവർ നന്നായി പെരുമാറിയല്ലേ ഒക്കൂ എന്നൊക്കെ മനസ്സിൽ ആരോ പറയുന്നുണ്ടായിരുന്നു. എങ്കിലും അവരുടെ ആ നല്ല പെരുമാറ്റം ഒരു കുളിർമ്മ തന്നെയായിരുന്നു, കാരണം മിക്ക ഷോപ്പുകളിൽ നിന്നും കിട്ടാത്തതാണല്ലോ ഇതൊക്കെ.

ചെരുപ്പും കുടകളും അടക്കം 1500 രൂപയുക്കുള്ള സാധനങ്ങൾ വാങ്ങിച്ച് അല്പം വിലപേശിയേക്കാം എന്ന് കരുതി എന്തെങ്കിലും കുറച്ചു തരണം എന്നു പറഞ്ഞപ്പോൾ പുള്ളി നല്ലൊരു ശതമാനം കുറച്ചു തരികയും ചെയ്തു. എന്നിട്ടദ്ദേഹം, അവിടെ ഒട്ടിച്ച വെച്ചിരുന്ന വിലവിവരപ്പട്ടിക കണിച്ചു തന്നു. ഷോപ്പിൽ വിൽക്കുന്ന സാധനങ്ങളുടെ വിലവിവരപ്പട്ടിക ഷോപ്പുടമ ഷോപ്പിൽ ഡിസ്പ്ലേ ചെയ്യണം എന്നുണ്ടത്രേ. കാഞ്ഞങ്ങാട് പക്ഷേ ചമയം ഡ്രസ്സസ്സിലും ഇവിടെയും അല്ലാതെ വേറൊരു ഷോപ്പിലും ഇതില്ല. അതിൽ നോക്കിയാൽ നിങ്ങൾക്ക് ഞാനി സാധനം വാങ്ങിച്ച വില മനസ്സിലാവും, എത്ര അധികമാണ് ഞാൻ നിങ്ങളോട് വാങ്ങിച്ചതെന്നും മനസ്സിലാവും എന്നദ്ദേഹം പറഞ്ഞു. ആ പട്ടിക ചോദിച്ചു കാണേണ്ടത് നിങ്ങൾ കസ്റ്റമേർസിന്റെ കൂടെ ഉത്തരവാദിത്വമാണെന്ന് അദ്ദേഹം പറഞ്ഞു. ചെറിയൊരു അത്ഭുതം എന്നിലുണ്ടാക്കി ആ വർത്തമാനം.

എന്തായാലും കിട്ടിയ ഡിസ്കൗണ്ടിൽ തന്നെ ഞാൻ സംതൃപതനായതിനാൽ അതൊന്ന് ഓടിച്ചു നോക്കി ഞങ്ങൾ ഇറങ്ങി, പിന്നെ ആമീയെയും കൊണ്ട് ആശുപത്രിയിൽ പോയി, കൂൾബാറിൽ കേറി ഐസ്ക്രീം കഴിച്ചു പിന്നെയും ഒന്നുരണ്ടു കടകളിൽ കേറി ഏകദേശം രണ്ടുമണിക്കൂറുകൾക്ക് ശേഷം ബസ്സിലേക്ക് കയറാൻ തുനിയുമ്പോൾ ആ കടയിലെ സെയിൽസ് മാൻ വന്നു കൈയ്യിൽ പിടിച്ചു പറഞ്ഞു, ഒരു ഐസ്ക്രീം വാങ്ങി തന്നാൽ ഞാൻ ഒരു കാര്യം പറയാം എന്ന്. കാര്യം തിരക്കിയപ്പോൾ പുള്ളി പറഞ്ഞു നിങ്ങൾ കൊടുത്ത 1000 രൂപയോടൊപ്പം മറ്റൊരു 1000 രൂപകൂടിയുണ്ടായിരുന്നു എന്ന്. സെയിൽസ്മേൻ ഞങ്ങളേയും നോക്കി ഇരിക്കുകയായിരുന്നു. ഞങ്ങൾ റോഡ് മുറിച്ചു കടന്ന് ഷോപ്പിലെത്തി. കടയുടമ സന്തോഷത്തോടെ ആ 1000 രൂപ തിരിച്ചു തന്നു.

ജോസ് എന്നാണു പുള്ളിക്കാരന്റെ പേര്. എറണാകുളം കാരനാണ്. കഴിഞ്ഞ 40 വർഷമായി പുള്ളി കാഞ്ഞങ്ങാട് ബിസിനസ്സ് ചെയ്യുന്നുണ്ട്. കൂടുതൽ കാര്യങ്ങൾ ചോദിച്ചറിഞ്ഞ് താങ്ക്സും പറഞ്ഞ് ഞങ്ങൾ വീട്ടിലേക്ക് പോന്നു. ഇനി ഞങ്ങൾക്ക് സ്റ്റേഷണറിക്ക് മറ്റൊരു കട തേടി കാഞ്ഞങ്ങാട് അലയേണ്ടതില്ല. ഇത്തരം നന്മ ഉള്ളിൽ സൂക്ഷിക്കുന്ന ആളുകളെ അറിഞ്ഞുകൊണ്ട് ഒഴിവാക്കാൻ സാധിക്കില്ല. കാഞ്ഞങ്ങാടുള്ളവർ ജോസ് ചേട്ടന്റെ നല്ല മനസ്സിനെ കാണാതെ പോകരത്. ബസ്റ്റാസ്റ്റാന്റിനോട് ചേർന്ന് നിലേശ്വരം ദിശയിൽ കാണുന്ന മൂന്നാമത്തെയോ നാലാമത്തെയോ ഷോപ്പാണ് റോയൽ ഫൂട്ട്‌വെയേർസ് ആൻഡ് ബാഗ്സ്. കാഞ്ഞങ്ങാട് വിൽക്കുന്ന സാധനങ്ങളുടെ യഥാർത്ഥ വിലവിവരപ്പട്ടിക തയ്യാറാക്കി പ്രദർശിപ്പിക്കുന്ന രണ്ടുഷോപ്പുകളിൽ ഒന്നാണിത്. രണ്ടാമത്തേത് ചമയമാണ്.

ആയിരം രൂപയുടെ കാര്യമല്ല; അത് തിരിച്ചുതരാൻ ജോസ് ചേട്ടൻ കാണിച്ച ആ മനോഭാവത്തിന് ഒരു ബിഗ് സല്യൂട്ട്!!

ഈ സംഭവത്തെ കുറിച്ച് ഫെയ്സ്ബുക്കിൽ പോസ്റ്റ് ചെയ്തത്.,
ഗൂഗിൾ പ്ലസ്സിൽ.

വായനയുടെ ലോകം!

world book day april 23

വായനയുടെ ലോകം! വായനയേയും എഴുത്തിനേയും സ്നേഹിക്കുന്ന ഒരുകൂട്ടം ആൾക്കാർ #BookBucketChallenge എന്ന പേരിൽ ഫെയ്സ്ബുക്കിലും ഗൂഗിൾ പ്ലസ്സിലുമായി ഷെയർ ചെയ്ത പുസ്തകങ്ങളുടെ ലിസ്റ്റാണിത്. വായനയെ ഗൗരവമായി കാണുന്നവർക്കും, അതുപോലെ വായിച്ചു തുടങ്ങുന്നവർക്കും ഇത് തീർച്ചയായും ഉപകരിക്കുമെന്നു കരുതുന്നു. എഴുത്ത് നന്നാവാൻ, അതിനു ശക്തിയും ഓജസ്സും ലഭിക്കാൻ ശുദ്ധമായ വായന കൂടിയേ തീരൂ. നല്ലപുസ്തകങ്ങൾ തെരഞ്ഞെടുക്കുക എന്നത് പ്രയാസകരമാണ്. ഇവിടെ, ഈ ലിസ്റ്റ് നല്ല പുസ്തകങ്ങളെ നമുക്കു കണ്ടെത്താനുപകരിക്കും എന്നു കരുതുന്നു. അതാത് ടൈം-ലൈനിൽ നിന്നും ഇവ താഴ്ന്നു പോയാൽ പൊക്കിയെടുക്കുക പ്രയാസകരമാവും- അതിനാൽ ഇവിടെ ക്രോഡീകരിക്കുന്നു.

Bobby Bal:

ചുക്കും ഗെക്കും – അർക്കാദി ഗൈദാർ
അമ്മ – മാക്സിം ഗോർകി
രണ്ടാമൂഴം – എം ടി
സൂര്യവംശം – മേതിൽ
വാടകയ്ക്ക് ഒരു ഹൃദയം, ലോല – പദ്മരാജൻ
ശർമിഷ്ഠ , കാർമെൻ , നാലാം ലോകം – എൻ എസ് മാധവൻ
മരുഭൂമികൾ ഉണ്ടാകുന്നത് , ഗോവർദ്ധന്റെ യാത്രകൾ , ജൈവ മനുഷ്യൻ – ആനന്ദ്
സുഭാഷ് ചന്ദ്രന്റെ  കഥകൾ
ആക്റ്റ് വണ്‍ സീൻ ടു, പയ്യൻ കഥകൾ , അധികാരം – വി കെ എൻ
പരിണാമം – എം പി നാരായണ പിള്ള
ടി ആർ കഥകൾ
ചുള്ളിക്കാടിന്റെ കവിതകൾ

Zen and the Art of Motorcycle maintenance – Pirsig

Praphul Viswan

01. രണ്ടാമൂഴം ( എം. ടി )
02. ഭാരത പര്യടനം (കുട്ടികൃഷ്ണമാരാര്)
03. മനുഷ്യന് ഒരു ആമുഖം ( സുഭാഷ് ചന്ദ്രന്‍ )
04. ബഷീര്‍ സമ്പൂര്‍ണ കൃതികള്‍
05. മയ്യഴി പുഴയുടെ തീരങ്ങളില്‍  (എം മുകുന്ദന്‍ )
06. ഡാവിഞ്ചി കോഡ് (ഡാൻ ബ്രൌൺ )
07. ഗുരു (കെ. സുരേന്ദ്രൻ)
08. വായിച്ചാലും വായിച്ചാലും തീരാത്ത പുസ്തകം (പ്രൊഫ. എസ്. ശിവദാസ്)
09. ടോട്ടോച്ചാന്‍  – ജനാലക്കരികിലെ വികൃതിക്കുട്ടി (തെത്സുകോ )
10.ഒരു സങ്കീര്‍ത്തനം പോലെ ( പെരുമ്പടവം ശ്രീധരന്‍ )

Sherlock Kumar Holmes

1. ഷെര്‍ലക് ഹോംസ് കൃതികള്‍ – സര്‍ ആര്‍തര്‍ കോനന്‍ ഡോയല്‍ /മലയാളം വിവര്‍ത്തനവും ഇങ്ങ്ലീഷ്‌ ഒറിജിനലുമായി എത്ര തവണ വായിച്ചിട്ടുണ്ട് എന്നോര്‍മ്മയില്ല, എങ്കിലും ആറാം ക്ലാസ് മുതല്‍ വര്‍ഷത്തില്‍ ഒരിക്കലെങ്കിലും ഒരു കഥയെങ്കിലും വായിക്കാതെ പോയിട്ടില്ല. ജീവിതത്തില്‍ ആദ്യമായി വാങ്ങിച്ച പുസ്തകം.
2. ഓഹരി – കെ എല്‍ മോഹനവര്‍മ്മ
ഒരിക്കലും മടുക്കാത്തതു. സ്റ്റോക്ക്‌ എക്സ്ചെന്ജ് എന്ന കൃതി കൂടി ചേര്‍ത്തു വയ്ക്കണം. കെ എല്‍ മോഹനവര്‍മ്മ, മലയാളത്തിലെ ഏറ്റവും പ്രിയപ്പെട്ട എഴുത്തുകാരില്‍ ഒരാള്‍.
3. ഡ്രാക്കുള –  ബ്രാം സ്ടോക്കാര്‍
ആദ്യമായി വായിച്ച് പേടിച്ച പുസ്തകം. അഞ്ചില്‍ പഠിക്കുമ്പോ അമ്മാവന്റെ മേശമേല്‍ കിടന്നത് എടുത്തു വായിച്ചത്. വായനശാലയില്‍ മെംബെര്‍ഷിപ്‌ എടുക്കാന്‍ പ്രേരിപ്പിച്ച പുസ്തകം
4. വൈക്കം മുഹമ്മദ്‌ ബഷീര്‍ കൃതികൾ ഒരു പുസ്തകം തിരഞ്ഞെടുക്കാന്‍ പറ്റില്ല. എങ്കിലും എന്ടുപ്പാപ്പക്കൊരാനെണ്ടാരുന്നു എന്നതിലെ കുഞ്ഞു പാത്തുമ്മയോട് ഒരു പ്രത്യേക ഇഷ്ട്ടം, നിസ്സാര്‍ അഹമ്മധിനോടും
5. വിഷകന്യക – എസ് കെ പൊറ്റെക്കാട്‌
കുടിയേറ്റങ്ങളെ കുറിച്ചറിയാന്‍ പ്രേരിപ്പിച്ചത്
6. ചെക്ക്‌ പോസ്റ്റ്‌ – ബാറ്റന്‍ ബോസ്
ഇത് ഒരു പ്രതീകമാണ്.മൂന്നില്‍ നിന്നും നാലിലേക്ക് മാറുന്ന സമയം. ബാലരമയില്‍ നിന്നും പൂമ്പാറ്റയില്‍ നിന്നും വളര്‍ന്നു എന്ന് തോന്നിയ സമയത്തെ അക്ഷരങ്ങള്‍ കൂട്ടി വായിക്കാന്‍ പ്രേരിപ്പിച്ച മംഗളം, മനോരമ, സഖി, കൌമുദി വാരികകളിലെ നോവലുകളുടെ പ്രതീകം. ചെക്ക്‌ പോസ്റ്റ്‌, അസ്ത്രം, ഹവ്വാ ബീച്ച്, റിപ്പോര്‍ടര്‍, അങ്കം, വലയം, ലയം, രതോല്സവം, നായിക തുടങ്ങി ഒരുപാട് പള്‍പ്പ് ഫിക്ഷനുകള്‍. ബാറ്റന്‍ ബോസ്, ഏറ്റുമാനൂര്‍ ശിവകുമാര്‍, ജോസി വാഗമട്ടം, മാത്യൂ മാറ്റം, കോട്ടയം പുഷ്പനാഥ്, ജോയ്സി, കമല ഗോവിന്ദ്, സുധാകര്‍ മംഗളോദയം തുടങ്ങി എത്രയോ എഴുത്തുകാര്‍. ഇപ്പോഴും ഏതെങ്കിലും ബുക്ക്‌ ഷോപ്പില്‍ പോയാല്‍ ഇങ്ങനെ ഉള്ള ഒരു ബുക്ക്‌ എങ്കിലും ഞാന്‍ വാങ്ങും. കഴിഞ്ഞ വര്ഷം മറൈന്‍ ഡ്രൈവില്‍ നടന്ന ഡി സി പുസ്തകമേളയില്‍ വച്ചു  ഇങ്ങനത്തെ പത്തു പുസ്തകം വാങ്ങിയപ്പോ എന്നെ അല്ഭുടത്തോടെ നോക്കിയാ ബില്ലെഴുത്തുകാരന്റെ ചിരിക്കു മുന്നില്‍… :))
7. കര്‍ണ്ണന്‍ –  ശിവാജി സാവന്ത്
ഒരു അന്യഭാഷാ നോവലിനോട് ആദ്യമായി അടുപ്പത്തിലാവുന്നത്. ആദ്യമായി ഒരു പുസ്തകത്തെ പറ്റി വാദ പ്രതിവാധത്തില്‍ ഏര്‍പ്പെടുന്നത്. രാധ എന്ന അമ്മ
8. വിക്രമാധിത്യകഥകള്‍ –  എഴുതിയതാര് എന്ന് ഓര്‍മ്മയില്ല. വിക്രമാതിത്യനും, വേതാളവും, ഭട്ടി എന്ന അനിയനും ഇപ്പോഴും ഓര്‍മ്മയില്‍ ഉണ്ട്. ഉജ്ജയനി എന്ന നഗരത്തെ പറ്റി ആദ്യമായി കേട്ടത്
9. ആരോഗ്യനികേതനം – താരാശങ്കര്‍ ബാനര്‍ജി
ബംഗാളി സാഹിത്യം മലയാളം പോലെ അല്ലെങ്കില്‍ അതിലും മീതെ നില്‍ക്കുന്ന ഒന്നാണ് എന്ന് മനസ്സിലാക്കി തന്ന പുസ്തകം. വിവര്‍ത്തകന് നന്ദി. ജീവന്‍ മശയി എന്ന പേരില്‍ ഇത് സിനിമയാക്കിയ ടി എന്‍ ഗോപകുമാറിനും.
10. മരുന്ന് –  പുനത്തില്‍ കുഞ്ഞബ്ദുള്ള
പുനത്തില്‍ എന്ന് പറയുമ്പോള്‍ ആദ്യം ഓര്‍മയില്‍ എത്തുക സ്മാരകശിലകള്‍ അല്ല എനിക്ക്, മരുന്ന് ആണ്. മെഡിക്കല്‍ ലോകത്തെ ആദ്യമായി പരിചയപെടുത്തിയത്. ആളിഗാട് യൂനിവേര്സിട്ടി

വി കെ എന്നിന്റെ മാനാഞ്ചിറ ടെസ്റ്റ്‌, അല്ലെങ്കില്‍ അദ്ദേഹത്തിന്റെ എല്ലാ കൃതികളും ഇതില്‍ നിന്നും ഒഴിവാക്കിയത് വല്ലാത്ത ഹൃദയ വേദനയോടെ ആണ്. അതുപോലെ തന്നെ പാണ്ഡവപുരം, പുള്ളിപ്പുലികളും വെള്ളിനക്ഷത്രങ്ങളും, ഇവിടെ എല്ലാവര്ക്കും സുഖം, അക്ബര്‍ കക്കട്ടിലിന്റെ കഥകള്‍, ഗൌരി, ശ്വാസം നിലപ്പിച്ച ഓ വി വിജയന്‍ സാറിന്റെ ധര്‍മ്മപുരാണം, വേരുകള്‍, മലയാറ്റൂരിന്റെ സര്‍വീസ് സ്റ്റോറി, ഡി സി കിഴക്കേമുറി എഴുതിയ കുറിപ്പുകള്‍, എന്തുണ്ട് വിശേഷം പിലാത്തോസേ, ഒരിടത്ത്, ചന്ദനമരങ്ങള്‍, ദല്‍ഹി,ആദിത്യനും രാധയും മറ്റു ചിലരും, എഴരപ്പോന്നു…… ഹെല്‍, ഒരു പാട് പുസ്തകങ്ങള്‍ ലിസ്റ്റിലില്ല. ലിസ്ടിലില്ലാത്ത പുസ്തകങ്ങള്‍ എന്ന ഒരു ലിസ്റ്റ് ഉണ്ടാക്കേണ്ടി വരുമല്ലോ

Rajan K K Narkilakkad

01. ദല്‍ഹിയും എം.മുകുന്ദന്റെ എല്ലാ നോവലുകളും 02. പാലൈസ് – മോഹനകൃഷ്ണന്‍ കാലടിയുടെ കവിതകള്‍
03. എന്നെ ചുംബിക്കാന്‍ പഠിപ്പിച്ച സ്ത്രീയേ.. – ഇന്ദുമേനോന്റെ ഓര്‍മ്മക്കുറിപ്പുകള്‍
04. കണ്ണീര്‍പ്പാടം- വൈലോപ്പിള്ളിയുടെ കവിത
05. 19, കനാല്‍ റോഡ് – ശ്രീബാല കെ മേനോന്റെ ഓര്‍മ്മക്കുറിപ്പുകള്‍
06. ഞാന്‍ – എന്‍.എന്‍ പിള്ളയുടെ ആത്മകഥ
07. ഒരു കള്ളന്റെ ആത്മകഥ -തസ്കരന്‍ മണിയന്‍ പിള്ള
08. ബുദ്ധന്‍ കത്തിയെരിയുന്നു – പി എന്‍ ദാസ്- സെന്‍ കഥകളുടെ സമാഹാരം
09. ടോട്ടോചാന്‍ ജനാലയ്ക്കരികിലെ വികൃതിക്കുട്ടി – തെത്സുകോ കുറോയാനഗി
10. ചോരശാസ്ത്രം – വി ജെ ജയിംസിന്റെ നോവല്‍

ശ്യാം കുമാര്‍

01. എതിര്‍പ്പ് – കേശവദേവ്
02. ഒരു ദേശത്തിന്റെ കഥ – പൊറ്റക്കാട്
03. ഒളിവിലെ ഓര്‍മ്മകള്‍ – തോപ്പില്‍ ഭാസി
04. സ്വാതന്ത്ര്യം അര്‍ദ്ധരാത്രിയില്‍ (വിവര്‍ത്തനം)
05. ന്റുപ്പുപ്പാക്കൊരാനേണ്ടാര്‍ന്ന്! – ബഷീര്‍
06. മഹാഭാരതം (വിവിധരൂപങ്ങളില്‍ )
07. ഭാരതപര്യടനം – കുട്ടികൃഷ്ണമാരാര്
08. കാദംബരി – ബാണഭട്ടന്‍ (വിവര്‍ത്തനം)
09. ദശകുമാരചരിതം -ദണ്ഡി (വിവര്‍ത്തനം)
10. പുരുഷാര്‍ത്ഥക്കൂത്ത്

Arun B

01) പക്ഷികളുടെ അത്ഭുതപ്രപഞ്ചം – ഇന്ദുചൂഡൻ
02) മലയാളം – സച്ചിദാനന്ദൻ
03) വായിച്ചാലും വായിച്ചാലും തീരാത്ത പുസ്തകം – എസ്.ശിവദാസ്
04) ഗോവർധന്റെ യാത്രകൾ
05) വേട്ടക്കാരനും വിരുന്നുകാരനും – ആനന്ദ്
06) ഹെർബേരിയം – ആഷാ മേനോൻ
07) ചെറിയ മനുഷ്യരും വലിയ ലോകവും – അരവിന്ദൻ
08) ഡ്രാക്കുള – ബ്രോം സ്റ്റോക്കർ
09) ഐതിഹ്യലോകം – മാലി
10) ഗീതഗോവിന്ദം – ജയദേവൻ

കൂട്ടിച്ചേർപ്പ്: 01) കഥാസരിദ്സാഗരം
02) പഞ്ചതന്ത്രം
03) ഐതിഹ്യമാാല – കൊട്ടാരത്തിൽ ശങ്കുണ്ണി
04) മഹാഭാരതം – പലപല രൂപങ്ങളിൽ
05) ഗ്രീക്ക് പുരാണ കഥാസാഗരം – ഫാദർ ZM മുഴൂർ
06) കവിയുടെ  കാൽപ്പാടുകൾ – കുഞ്ഞിരാമൻ നായർ
07) രാമകഥ – കാമിൽ ബുൽക്കെ
08) ഹിമവാന്റെ മുകൾത്തട്ടിൽ – രാജൻ കാക്കനാടൻ
09) പദ്മാ മേഘന – സാവിത്രി റോയ്
10) ഈസ്റ്റാംബുൾ – ഓർഹൻ പാമുക്

ഒറ്റയാന്‍

01. The Last Temptation ( Nikos Kazantzakis)
02. One Hundred Years of Solitude (Gabriel Garcia Marquez)
03. Alchemist ( Paulo Coelho )
04. In Praise of the Stepmother ( Mario Vargas Llosa)
05. Life of Pi ( Yann Martel )
06. കര്‍ണ്ണന്‍ (ശിവാജി സാവന്ത് )
07. ഭാരതപര്യടനം (കുട്ടികൃഷ്ണ മാരാര്‍ )
08. രണ്ടാമൂഴം (എം ടി വാസുദേവന്‍ നായര്‍ )
09. To Kill a Mockingbird (Harper Lee)
10. ഒരു ദേശത്തിന്‍റെ കഥ (എസ കെ പൊറ്റക്കാട് )

Siddhartha (Hermann Hesse )  Dona Flor and Her Two Husbands  (Jorge Amado)

Seena Viovin

പകിട 13 – രവിചന്ദ്രൻ സി

നാസ്തികനായ ദൈവം – രവിചന്ദ്രൻ സി

പോളച്ചൻ ളായിക്കാട്

ഗോവർധനന്റെ യാത്രകൾ
ഖസാക്കിന്റെ ഇതിഹാസം
അനുരാഗത്തിന്റെ ദിനങ്ങൾ
സ്മാരകശിലകൾ
പത്മരാജന്റെ കഥകൾ
ഒരു സങ്കീർത്തനം പോലെ
ചിദംബര സ്മരണകൾ
നീർമാതളം പൂത്തകാലം
ബാല്യകാല സഖി
പയ്യൻ കഥകൾ

കൊച്ചു പാറു

01. Wings of Fire by A P J Abdul Kalam
02. My Music, My Life by Ravi Shankar
03. Randaamoozham by M.T.Vasudevan Nair
04. The Orient Express by Agatha Christie
05. The DaVinci Code  by Dan Brown
06. Angels and Demons by Dan Brown
07. Khasakkinte Itihasam by O V Vijayan
08. Paathira Sooryante Naattil  by S K Pottakkadu
09. One Night @ the Call Center by Chetan Bhagat
10. Malgudi Days by R K Narayanan

VT Santhosh

01 സോർബ ദ ഗ്രീക്‌- കസാൻ ദ്‌ സാകീസ്‌
02 ആരോഗ്യ നികേതനം – താരാശങ്കർ ബാനർജ്ജി
03 ശബ്ദങ്ങൾ- ബഷീർ
04 ലിറ്റിൽ പ്രിൻസ്- Antoine de saint‌
05 മാധവിക്കുട്ടിയുടെ കഥകൾ
06 ഷെർലക്‌ ഹോംസ്‌- കോനൻ ഡോയ്‌ല്‌
07 വി.കെ.എൻ. കഥകൾ
08 ഖസാക്കിന്റെ ഇതിഹാസം- വിജയൻ
09 1984- ജോർജ്ജ്‌ ഓർവ്വൽ
10 പ്രകൃതി നിയമം-സി.ആർ. പരമേശ്വരൻ

Subin PT

നൂറു സിംഹാസനങ്ങൾ
പശ്ചിം ദിഗന്തേ പ്രദോഷ് കാലേ
കുപ്പത്തൊട്ടി – അജിത്ത് കൗർ
കുറ്റവും ശിക്ഷയും
ഗുരുസാഗരം
ഭാർഗ്ഗവീനിലയം
യക്ഷി
വേരുകൾ
സംഗതി – പാമ
ഏകാന്തതയുടെ നൂറുവർഷങ്ങൾ

Justine P Mathew

01. നന്ദിതയുടെ കവിതകള്‍ – നന്ദിത
02. ചോമന്‍റെ തുടി – പി എൻ മൂടിത്തായ (വിവ).ശിവരാമകാറന്ത്
03. ഒരു പ്രണയ കഥ- ആബെ പ്രവ്വോ
04. ബ്രിഡ – പൗലോ കൊയ്ലാ
05. എ‍ന്‍റെ കഥ- മാധവിക്കുട്ടി
06. ഒരു സങ്കീർത്തനം പോലെ – പെരുമ്പടവം
07. ആടു ജീവിതം – ബെന്യാമിൻ
08. മയ്യഴിപ്പുഴയുടെ തീരങ്ങളിൽ- മുകുന്ദന്‍
09. ചിദംബരണ സ്മരണ-ബാലചന്ദ്രൻ ചുള്ളിക്കാട്
10. അയ്യപ്പൻ കവിത സമാഹാരം – ഏ. അയ്യപ്പന്‍ ഇനിയുമുണ്ട്: സച്ചിദാനന്ദന്‍റെ വിക്ക് ( കവിതകള്‍ )
എം ടി യുടെ നോവലുകൾ
ചോരശാസ്ത്രം ( വി. ജെ.ജെയിംസ് )
ഇനിയൊരു നിറകൺ ചിരി ( സി. രാധാകൃഷ്ണൻ)
കോളറാ കാലത്തെ പ്രണയം
സംസ്കാരം ( യു . ആർ അനന്തമൂർത്തി)
ഉപ്പ് (ഒ. എൻ. വി )
പെപ്പർ ലോഡ്ജ് ( സുസ്മേഷ് ചന്ദ്രോത്ത്)

Jahangeer Razack Paleri

01) ഖസാക്കിന്റെ ഇതിഹാസം – ഓ .വി . വിജയന്‍
02) കാലം/ രണ്ടാമൂഴം – എം .ടി . വാസുദേവന്‍ നായര്‍
03) നീര്‍മാതളം പൂത്തകാലം – മാധവിക്കുട്ടി
04) പാത്തുമ്മാന്റെ ആട് – വൈക്കം മുഹമ്മദ്‌ ബഷീര്‍
05) മയ്യഴിപ്പുഴയുടെ തീരങ്ങളില്‍ – എം . മുകുന്ദന്‍
06) എന്‍റെ ജീവിതം – adv. ജി. ജനാർദ്ദനക്കുറുപ്പ്
07) ആടുജീവിതം – ബന്ന്യാമിന്‍
08) The Alchemist- Paulo Coelho 09) My Ishmael – Daniel Quinn 10) Facebook – (പേരില്‍ തന്നെ ഒരു പുസ്തകമുണ്ട് . ഹൃദയസ്പര്‍ശിയായ ഒരുപാട് എഴുത്തുകള്‍ ഇവിടെ വായിക്കുന്നത് കൊണ്ടാണ് Facebook നേയും പരിഗണിച്ചത് )

Adarsh VK

01. രണ്ടാമൂഴം – എം .ടി
02. Txtng: The Gr8 Db8 : David Crystal
03. നമ്മുടെ ഭാഷ – ഇ എം എസ് നമ്പൂതിരിപ്പാട് 04. ഹിഗ്വിറ്റ- എൻ എസ് മാധവൻ
05. നൂറു സിംഹാസനങ്ങൾ – ജയമോഹൻ
06. ഘടികാരങ്ങൾ നിലയ്‌ക്കുന്ന സമയം – സുഭാഷ് ചന്ദ്രൻ
07. പരിസ്ഥിതി, പ്രകൃതി, ദാരിദ്ര്യം, ജലം, ഊർജ്ജം – ആനന്ദ്
08. ഭാവനാതീതം മലയാളത്തിലെ സൈബർ കഥകൾ – ഡോ.പി.കെ രാജശേഖരൻ
09. The New Digital Age – Eric n Jared Cohen
10. ഫേസ്ബുക്ക് (അതെ ഇക്കഴിഞ്ഞ ഏതാനും വർഷങ്ങളായി വായിക്കുന്ന നല്ല ബുക്ക് തന്നെ ഈ ഇന്റർനെറ്റ് ഇടം. എത്രയെത്ര ചെറുലേഖനങ്ങൾ, ചർച്ചകൾ, കവിതകൾ …… ഓർമകൾ ഒക്കെ. അത് കൊണ്ട് പത്താം പുസ്‌തകമായി ഫേസ്ബുക്ക് ഇരിക്കട്ടെ)

ഒപ്പം സു‌സ്‌മേഷ് ചന്ത്രോത്ത് Susmesh Chandroth , എം പി നാരായണപിള്ള എന്നിവരുടെ എഴുത്തുകൾ എല്ലാം ഇഷ്ടം, അത് നല്ല മലയാളം വാക്കുകളുടെ വിരുത് കാണാമെന്ന സന്തോഷം കൊണ്ട് കൂടിയാണ്.

Vaisakhan Thampi

01. The first men in the moon- H. G. Wells
02. Body language- Julius Fast
03. Journey to the centre of Earth- Jules Verne
04. Love poems- Pablo Neruda
05. വിഷകന്യക- എസ്.കെ.പൊറ്റക്കാട്ട്
06. നിങ്ങള്‍ നിങ്ങള്‍ക്ക് തന്നെ അജ്ഞാതനാണ്‌- ഓഷോ
07. ഐസ് -196 ഡിഗ്രി- ജി. ആര്‍. ഇന്ദുഗോപന്‍
08. Watching Weather- John Gribbin and Mary Gribbin
09. The psychopathology of everyday life- Sigmund Freud
10. Why things are the way they are- B. S. Chandrasekhar

Joseph Antony

01. ജാതിവ്യവസ്ഥിതിയും കേരളചരിത്രവും – പി.കെ.ബാലകൃഷ്ണന്‍
02. പരിണാമം – എം.പി.നാരായണപിള്ള
03. പിതാമഹന്‍ – വി.കെ.എന്‍.
04. ഘോഷയാത്ര – ടി.ജെ.എസ്.ജോര്‍ജ്
04. ഷെര്‍ലക് ഹോംസിന്റെ സമ്പൂര്‍ണ കൃതികള്‍ – സര്‍ ആര്‍തര്‍ കോന്നന്‍ ഡോയല്‍
05. ആരണ്യക് – വിഭൂതിഭൂഷണ്‍ ബന്ദോപാധ്യായ
06. The Brothers Karamazov – Fyodor Dostoyevsky
07. Pedro Páramo – Juan Rulfo
08. Gabriel García Márquez: A Life – Gerald Martin
09. The Story of San Michele – Axel Munthe
10. A Short History of Nearly Everything – Bill Bryson

Prashant Alanghat

01. Aleph – Paolo Coelho.
02.Motorcycle Diaries – Che Guevara. 03. The Illicit Happiness of Other People – Manu Joseph.
04. The White Tiger – Aravind Adiga.
05. Sherlock Holmes Collection – Sir A C Doyle.
06. Oliver Twist – Charles Dickens.
07. The Aspern Papers – Henry James.
08.Harry Potter Series – JKR
09. Arzee – Chandrahas Chaudhary
10. The Time Machine – H G Wells

Navaneeth Krishnan S

01) ടോട്ടോചാന്‍
02) ഖസാക്കിന്റെ ഇതിഹാസം 03) മധുരം ഗായതി
04) ജ്യോതിഷവും ജ്യോതിശ്ശാസ്ത്രവും
05) വായിച്ചാലും വായിച്ചാലും തീരാത്ത പുസ്തകം
06) കമ്പ്യൂട്ടറിന്റെ മനസ്സ്
07) മന്ദാകിനി പറയുന്നത്
08) ഭൗതികകൗതുകം
09) ഞാന്‍ എന്ത് ഉണ്ടാക്കും?
10) ഐസ് -196°C
11) അപൂര്‍ണ്ണതയുടെ ഒരു പുസ്തകം

Ranjith Kannankattil

01. ഗുരുസാഗരം – ഓ.വി.വിജയൻ
02. ഹലോ ബസ്തർ – രാഹുൽ പണ്ഢിത
03. വിരുതൻ ശങ്കു – കാരാട്ട് അച്യുതമേനോൻ
04. പുലയപ്പാട്ട് – എം. മുകുന്ദൻ
05. മുൻപേ പറക്കുന്ന പക്ഷികൾ – സി രാധാകൃഷ്ണൻ
06. ഒരു മുടന്തന്റെ സുവിശേഷം – കല്പറ്റ നാരായണൻ
07. ലെസ്ബിയൻ പശു – ഇന്ദു മേനോൻ
08. മരണവിദ്യാലയം- സുസ്മേഷ് ചന്ദ്രോത്ത്
09. ഏകാന്തതയുടെ നൂറു വർഷങ്ങൾ – ഗാബോ
10. യു പി ജയരാജിന്റെ കഥകൾ- യു പി ജയരാജ്

Netha Hussain

1. **
2. William Shakespeare‘s Macbeth (I contemplated this play for two years as a part of my coursework, and fell deeply in love with it. Had I got more time to absorb, The Tempest and its post-colonial reading would have been my favourite)
3. The God of Small Things by Arundhati Roy (At 14 years, this book was shocking at first, but later I found that it was my starting point of unlearning conservatism)
4. Stones from the River by Ursula Hegi (I would call this a European version of ഒരു ദേശത്തിന്റെ കഥ)
5. Unlocking the Clubhouse: Women in Computing by James Margolis (Opened my eyes to subtle sexism, misogyny in tech and much more)
6. Unaccustomed Earth by Jhumpa Lahiri (for helping me appreciate the simple, overlooked things in life)
7. All of Robin Cook‘s medical thrillers (very fictitious and artificial most of the times, but fun to read nevertheless)
8. The Inheritance of Loss by Kiran Desai (for reflecting self)
9. Neruda’s love poems (I once wanted to learn Spanish just for appreciating Neruda better)
10. Chronicle of a death foretold by Gabriel García Márquez (for introducing me to pseudo-journalistic reconstruction in the “typical Marquez way”, a technique I used later in many of my articles)

** Leaving No. 1 blank to reinforce the belief that the best is yet to come.

Akhil Krishnan

1. രണ്ടാമൂഴം – എം .ടി
2. ഒഥല്ലോ – ഷേക്സ്പിയർ
3. ഇന്ദുലേഖ – ഒ .ചന്തുമേനോൻ 4. യക്ഷി – മലയാറ്റൂർ
5. യന്ത്രം – മലയാറ്റൂർ
6. പാവങ്ങൾ (Les Misérables) – വിക്ടർ ഹ്യുഗോ
7. നോത്രദാമിലെ കൂനൻ (The Hunchback of Notre-Dame) – വിക്ടർ ഹ്യുഗോ
8. പാത്തുമ്മായുടെ ആട് – ബഷീർ
9. ആടുജിവിതം – ബെന്യാമിൻ
10. ലീല – ആർ .ഉണ്ണി (വായിച്ചതു ബുക്ക് അല്ല , ഏറ്റവും പ്രിയപ്പെട്ടത് )

Vishnu Padmanabhan

1. കോവൂരിന്റെ സമ്പൂര്‍ണ്ണ കൃതികള്‍ – എബ്രഹാം കോവൂര്‍ .

ഹൈസ്കൂളില്‍ പഠിക്കുന്ന കാലത്താണ് നാട്ടിലെ ലൈബ്രറിയിലെ ഒഴിഞ്ഞ മൂലയില്‍ ഉപേക്ഷിക്കപ്പെട്ട നിലയില്‍ ഈ ചുവന്ന ബൈന്റ് ഉള്ള പഴകിയ പുസ്തകം കിട്ടുന്നത് . ലളിതമായ ഭാഷയില്‍ , ഒരു സ്കൂള്‍ വിദ്യാര്‍ഥിക്ക് പോലും മനസ്സിലാക്കാവുന്ന തരത്തില്‍ ദൈവവും വിശ്വാസവും എന്താണ് എന്ന് മനസ്സിലാക്കിച്ച കൃതി . കടുത്ത വിശ്വാസ പശ്ചാത്തലമുള്ള കുടുംബം ആയതു കൊണ്ട് ഈ പുസ്തകം പിന്നീടുള്ള എന്റെ ജീവിതത്തെ വല്ലാതെ സ്വാധീനിച്ചിട്ടുണ്ട് .

2. പരിശീലനം (ആത്മ കഥ ) – മാക്സിം ഗോര്‍ക്കി

ആത്മ കഥകള്‍ വായിക്കുന്നത് അന്യന്റെ ജീവിതം ഒളിച്ചു കാണാനുള്ള ത്വര ആണെന്നൊരു പറച്ചിലുണ്ട് ,ആയാലും അല്ലെങ്കിലും സംഗതി എന്തായാലും ആത്മ കഥകള്‍ ഇഷ്ടമാണ് , വായിചിട്ട്ടുള്ളതില്‍ വെച്ച് ഏറ്റവും ആകര്‍ഷിച്ച ആത്മകഥ മാക്സിം ഗോര്‍ക്കിയുടെ ഈ കൃതി തന്നെ ആണ് .

3. Every body Loves a good Drought – P. Sainath .

സായ് നാഥ് എന്ന പത്ര പ്രവര്‍ത്തകന്റെ ആരാധകന്‍ ആക്കി കളഞ്ഞ കൃതി ,സായ നാഥിന്റെ എഴുത്തിനു , അതിലെ വസ്തുതകള്‍ക്ക് ഒരു ഭരണ കൂടത്തെ പോലും എതിര്‍ക്കാന്‍ തക്ക ശക്തിയുണ്ടായിരുന്നു . India Shining എന്ന എന്‍ ഡി എ കാലത്തെ വന്‍ പ്രചരണത്തിനിടക്കാണ് കര്‍ഷക ആത്മ ഹത്യകളെ പറ്റിയും ഗ്രാമങ്ങളിലെ ദാരിദ്ര്യത്തെ പറ്റിയും സായ നാഥിന്റെ ലേഖനങ്ങള്‍ വരുന്നത് , അത് വലിയ തോതില്‍ ചര്‍ച്ച ചെയ്യപ്പെട്ടു , എന്‍ ഡി എ യുടെ യെ അടുത്ത തിരഞ്ഞെടുപ്പില്‍ തകര്‍ത്തു കളഞ്ഞതിന് പി സായ നാഥിന്റെ ഈ ലേഖനങ്ങള്‍ക്ക് വലിയ പങ്ക് ഉണ്ടൈരുന്നു .

4. 1984 – George Orwell

കിട്ടുന്ന പുസ്തകങ്ങള്‍ എല്ലാം വായിച്ചു കൊണ്ടിരുന്ന കോളേജ് കാലത്ത് , അല്പം ഗൌരവമായി എന്തെങ്കിലും വായിക്കണമെന്ന ആഗ്രഹത്തോടെ വായിച്ചതാണ് ,ഒരു പക്ഷെ പക്ഷെ ഏറ്റവും പ്രയത്നം എടുത്തു , സമയം എടുത്തു വായിച്ചു തീര്‍ത്ത പുസ്തകങ്ങളില്‍ ഒന്ന് .ഒരു പാട് രാഷ്ട്രീയ മാനങ്ങള്‍ ഉള്ള , ഒരുപാട് രാഷ്ട്രീയ പ്രയോഗങ്ങള്‍ ഉരുത്തിരിഞ്ഞ കൃതി .

5. Crowds and power – Elias canetti –

നോബല്‍ സമ്മാന ജേതാവായ ഏലിയാസ് കാനെട്ടിയുടെ കൃതി അധികാരത്തെയും ആള്‍ക്കൂട്ട മനശാസ്ത്രത്തെയും കൃത്യമായി അപഗ്രഥിക്കുന്ന ഒരു കൃതി ഉദാഹരണങ്ങളും നിരീക്ഷണങ്ങളും കൊണ്ട് തിയറിയെ ബന്ധിപ്പിക്കുന്നുണ്ട് .

6. ഭൗതിക കൌതുകം – യാക്കോവ് പെരല്‍ മാന്‍

ശാസ്ത്ര വിഷയങ്ങളില്‍ അടിസ്ഥാന പരമായി വലിയ അറിവോന്നുമില്ലാത്ത , അല്ലെങ്കില്‍ അത് വിരസമായ ഒരു സംഗതി ആയി കണക്കു കൂട്ടുന്ന എന്നെ പോലോരാള്‍ക്ക് പോലും ഇത്ര മനോഹരമായി ആ വിഷയങ്ങള്‍ വായിക്കാന്‍ സാധിക്കും എന്ന് മനസ്സിലാക്കിച്ച പുസ്തകം .പ്രഭാത് ബുക്സ് ഇറക്കിയ , റഷ്യയിലെ പ്രോഗ്രസ് പബ്ലിക്കെഷനില്‍ അച്ചടിച്ച പുസ്തകം .

7. End Of Imagination – Arundhathi Roy

അരുന്ധതീ റോയിയുടെ ലേഖന സമാഹാരം . അവരോടു വിയോജികാം , യോജിക്കാം പക്ഷെ അവരെഴുതുന്നതിനെ നമുക്ക് തള്ളികളയാനാകില്ല .ഇന്ത്യ എന്ന ജനാധിപത്യ രാജ്യത്തില്‍ പാര്‍ശ്വ വല്ക്കരിക്കപ്പെടുന്ന ഒരു വലിയ കൂട്ടം ജനങ്ങളുടെ വിലാപങ്ങളെ , അതി വൈകാരികതയില്ലാതെ തന്നെ സ്ടാടിസ്ടിക്സിന്റെ സഹായത്തോടെ രേഖപ്പെടുത്തുന്നു .

8. ഇരുട്ടിന്റെ ഹൃദയം – ജോസഫ് കോണ്‍ റാഡ്

മോബിടിക്കും , ടോം സോയരും , രോബിന്സന്‍ ക്രൂസോയും വായിച്ചതിന്റെ വിശ്വാസത്തില്‍ പരിഭാഷാ കൃതികളില്‍ അപാരമായ താല്പര്യമുള്ള ഒരു കുട്ടിക്കാലത്ത് അങ്ങനെ വായിച്ച പുസ്തകം , കൊങ്കോയിലെ സാമ്രാജ്യത്വ വാഴ്ച്ചകളും മനുഷ്യാവകാശ ധ്വംസനങ്ങലുമെല്ലാം ഒരളവില്‍ എങ്കിലും പുറത്ത് വന്നത് ഈ കൃതിയിലൂടെ ആകണം ,

9. ഒരിക്കല്‍ – എന്‍. മോഹനന്‍

വളരെ ചെറിയ ഒരു കൃതി , വലിയ സാഹിത്യ മേന്മയൊന്നും അവകാശപ്പെടാനില്ലെങ്കില്‍ കൂടി ഈ കൃതി എന്റെ വ്യക്തിഗത പ്രിയങ്ങളില്‍ ഒന്നാണ് .സമ്മാനിച്ച ആളോട് ഉള്ള സ്നേഹം കൊണ്ടാകാം അല്ലെങ്കില്‍ അറം പറ്റിയ ഒരനുഭവം താദാത്മ്യപ്പെടുതാന്‍ കഴിഞ്ഞതിനാല്‍ ആകാം .

10 .Buffallo Nationalism  – Kancha Ailayya .

കാന്ച്ച ഐലയ്യയുടെ ലേഖനങ്ങള്‍ , ഇന്ത്യയിലെ വലതു പക്ഷ സവര്‍ണ്ണ ഭീകരതയും , അതിന്റെ പ്രവര്‍ത്തനങ്ങളും ഉദാഹരണ സഹിതം തന്നെ വ്യക്തമായി എഴുതിയിരിക്കുന്നു , മോഡി പ്രധാന മന്ത്രി ആകുമെന്ന് അത്തരം യാതൊരു ഊഹവുമില്ലാതിരുന്ന കാലത്ത് കാന്ച്ച ഐലയ്യ തന്റെ ലേഖനങ്ങളില്‍ അതെഴുതിയിട്ടുണ്ട് .

സു ധി

രണ്ടാമൂഴം
ഖസാക്കിന്റെ ഇതിഹാസം
മഞ്ഞ്
മയ്യഴിപ്പുഴയുടെ തീരങ്ങളില്‍
പൊറ്റക്കാട് സമ്പൂര്‍ണ എഡിഷന്‍
ഒരു സങ്കീര്‍ത്തനം പോലെ
ടി പദ്മനാഭന്‍ കഥകള്‍
ഒതപ്പ്
എന്റെ കഥ
ഇനി ഞാന്‍ ഉറങ്ങട്ടെ
ഐതീഹ്യമാല
അഗ്നി സാക്ഷി
ചിതംബരസ്മരണ
സഞ്ജയന്‍ കഥകള്‍
ഭാരതപര്യടനം
ഒറോത
പത്മരാജന്റെ കഥകൾ സമ്പൂർണ്ണം
കാരൂര്‍ കഥകള്‍ സമ്പൂര്‍ണം
മനുഷ്യന് ഒരു ആമുഖം
ഇനി ഞാൻ ഉറങ്ങട്ടെ
വാരണാസി
ഒരു കുടയും കുഞ്ഞുപെങ്ങളും
പരിണാമം
ഗോവർദ്ധന്റെ യാത്രകള്‍

Minesh Ramanunni

01) ഗോവർദ്ധന്റെ യാത്രകൾ: (മോന്റെ പേരിനു കാരണമായതും ഈ കിതാബ് തന്നെ )
02) വായിച്ചാലും വായിച്ചാലും തീരാത്ത പുസ്തകം (ആദ്യം വായിച്ച പുസ്തകം, എല്ലാ കുട്ടികളും വായിക്കേണ്ട പുസ്തകം )
03) രണ്ടാമൂഴം (വരികൾക്കിടയിലെ ചില മൌനങ്ങൾ പോലും രചനക്ക് വിഷയമാക്കാം എന്ന് പഠിപ്പിച്ച മ്മടെ സ്കൂളിലെ പഴേ സ്റ്റുഡന്റിന്റെ പുസ്തകം )
04) ഖസാക്ക് (ഓരോ വായനയിലും ഓരോ ഭൂമിക സൃഷ്ടിക്കുന്ന ഇന്ദ്രജാലം )
05) ഉമ്മാച്ചു (അത്തറിന്റെ മണമുള്ള ആ പെണ്ണിനെ മോഹിക്കാത്തവരായ് ആരുണ്ട്‌ ?)
06) ബാല്യകാലസഖി ( നെഞ്ചിൽ ചോര പൊടിഞ്ഞ പ്രണയം,അതിന്റെ കാരണഭൂതനായ ഇന്ദ്രജാലക്കാരൻ അയാൾ സൃഷ്ടിച്ച മായാ പ്രപഞ്ചം …)
07) ആടുജീവിതം (വായനയുടെ ട്രാക്കിലേക്ക് വീണ്ടും തിരിച്ചെത്താൻ സഹായിച്ചത് ബെന്യാമിന്റെ ഈ രചനയാണ് )
08 ) മൈ നെയിം ഈസ്‌ റെഡ് (വായിച്ചതിൽ ഏറ്റവും ഇഷ്ടപ്പെട്ട പാമുക്ക് കൃതി)
09  )ആരാച്ചാർ (കെആർ മീരയും ചേതനയും വിസ്മയിപ്പിച്ചു കളഞ്ഞു)
10) വി കെ എൻ (എഴുതിയതും എഴുതാത്തതും എല്ലാം) ഇനി എന്തെഴുതും എന്ന് അറിയില്ല ഇനിയും കിടക്കുന്നു നൂറു പുസ്തകങ്ങൾ ആൽകെമിസ്റ്റ്, മെറ്റമൊർഫൊസിസ്, മനുഷ്യനോരാമുഖം, ബ്രോക്കൻ വിങ്ങ്സ്,അണ്‍ ബിയറബിൾ ലൈറ്റ്നെസ്സ് ഓഫ് ബീയിംഗ്, ടോം സോയരും ഹക്കിൽ ബെറി ഫിന്നും ,കന്നിക്കൊയ്ത്ത്, ഗോഡ് ഓഫ് സ്മാൾ തിങ്ങ്സ്‌, ഗൗരി, മേതിൽ കഥകൾ, ആലാഹയുടെ പെണ്മക്കൾ, മയ്യഴിപ്പുഴ, ഉഷ്ണമേഖല, പരിണാമം, ഇട്ടിക്കോര, നൂറു സിംഹാസനങ്ങൾ, ഏകാന്തതയുടെ നൂറു വർഷങ്ങൾ, നെയ്പ്പായസം പോലെയുള്ള മാധവിക്കുട്ടിയുടെ രചനകൾ , 9, അൽ അറേബ്യൻ നോവൽ ഫാക്ടറി, എന്മകജെ, ചിദംബര സ്മരണകൾ, ഭൂമിയുടെ അവകാശികൾ ..
ഇഷ്ടപ്പെട്ട പത്ത് പുസ്തകം എന്നൊക്കെ പറഞ്ഞാൽ കറങ്ങിപ്പോകും. പത്തെണ്ണം മുട്ടില്ല . ഓർമ്മയിൽ ആദ്യം ഒരു ദേശത്തിന്റെ കഥ ഉണ്ട്.  രണ്ടാമൂഴം, ബഷീർ കൃതികൾ, പത്മരാജന്റെ തിരക്കഥകൾ … .കാരണം വായനയുടെ വലിപ്പം!
(പമ്മന്റെ നോവലുകളുടെ പേരെഴുതിയാൽ വെയിറ്റ് പോകുമോ:))

നീ പരിചയപ്പെടുന്ന  ഓരോ മനുഷ്യനും ഓരോ ഇതിഹാസമാണെന്നറിയുക” എന്നാരോ എവിടെയോ എഴുതിയത് വായിച്ചിട്ടുണ്ട്. ‘പ്രിയപ്പെട്ട മനുഷ്യർ’ – അങ്ങിനെ ഒരു ചാലെന്ജ് ആരേലും കൊണ്ട് വരട്ടെ. മിനിമം നൂറു പ്രൊഫഷനിലുള്ള നൂറുപേരെ വിശദമായി എഴുതാൻ ഞാൻ തയ്യാർ:)

1  ആനന്ദ്‌ ന്റെ ആൾക്കൂട്ടം   ഒരുപാട് തവണ വായിച്ചു ..
ഇനിയും വായിക്കും .. രണ്ടായിരത്തിനു    മുന്പ് ഉള്ള എഡീഷൻ തേടി ഒന്ന് രണ്ടു ലൈബ്രറി കൾ അലഞ്ഞു ,  ഇപ്പൊ ഒരു പഴേ മലയാളം മാഷ് ( ഇപ്പൊ  പ്രമുഖ പത്രത്തിന്റെ സബ് എഡി റ്റർ  )  സങ്കടിപ്പിച്ചു തരാം ന്നു പറഞ്ഞതിന്റെ പ്രത്യാശയിൽ ജീവിക്കുന്നു ..
2  അരുന്ധതി റോയ് ടെ ഗോഡ് ഓഫ് സ്മാൾ തിങ്ങ്സ്‌ ..
പ്രിയ എ എസ് വിവർത്തനാമുഖക്കുറിപ്പിൽ  പറഞ്ഞത് പോലെ സങ്കടങ്ങളുടെ പുസ്തകം . എഴുത്തുകാരിയുടെ കൈയ്യൊപ്പ് നേരിട്ട് വാങ്ങിയ വിവർത്തനവും  കയ്യിൽഉണ്ട്  .
ഇക്കഴിഞ്ഞ വേനൽ അവധിക്കു കോട്ടയം  പുതുപ്പള്ളി പള്ളിയിൽ  ഒരു മാമോദീസ കൂടാൻ പോയപ്പോ     പ്രതീക്ഷിച്ചിരുന്നു
ഐമനം വീട്ടില് പോവാം ന്നു , എസ്തേം റാഹേലും ഓടി നടന്ന വീട് ഒന്ന് കാണണം എന്ന് പുസ്തകം വായിച്ച അന്ന്  മുതൽ ഉള്ള ആഗ്രഹം ആയിരുന്നു ..
നടന്നില്ല  ..
3  KITE RUNNER   .. ഖാലിദ്‌ ഹൊസൈനി യുടെ    പുസ്തകം
4 . ഒരു ദേശത്തിന്റെ കഥ
5 . അപഹരിക്കപ്പെട്ട ദൈവങ്ങള് (  ആനന്ദിന്റെ ഒട്ടുമിക്ക പുസ്തകങ്ങളും ഇഷ്ടമാണ് )
6 Musium of Innocence .. Orhan Pamuk   ( ഇച്ചിരെ വല്യ ഒരു പുസ്തകം )
7. നീർ മാതളം പൂത്ത കാലം
8 .   കൊച്ചു  ത്രേസ്യയുടെ ലോകം  ( ഇത് ഞാൻ വായിക്കാതെ തന്നെ ഇഷ്ടപ്പെട്ട പുസ്തകം , ബ്ലോഗ്‌ ഒരു തവണ ഒന്നുമല്ല വായിച്ചു തീര്ത്തത് , അതോണ്ട പുസ്തകം കൈപ്പറ്റുന്നതിനു  മുന്നേ  അങ്ങ് ഇഷ്ടം പ്രഖ്യാപിക്കുന്നു )
9 SHANTHARAM  –    ഗ്രിഗോരി ഡേവിഡ് എന്നോ മറ്റോ ആണ് ന്നു തോന്നണു എഴുത്തുകാരന്റെ പേര് .എഴുപതു കളിലെയോ മറ്റോ മുംബയ് അധോലോകത്തിന്റെ കഥ ആണ്
10 .ബൈബിൾ   –  ഒരു ചെറിയ ഭാഗം പോലും വായിച്ചു  മുഴുവൻ ആക്കിയിട്ടില്ല . വായിക്കണം മുഴുവൻ ആക്കണം എന്ന് ആഗ്രഹമുള്ള ഒരു പുസ്തകം വായിച്ചിടത്തോളം ഇഷ്ടം: സങ്കീർത്തനങ്ങൾ , പുറപ്പാട് പുസ്തകം,  സദൃശ്യവാക്യങ്ങൾ,  ഉത്തമഗീതം

എന്റേത്…

പത്തിലൊതുക്കുക പറ്റില്ല! പിന്നൊരു വഴി ഇങ്ങനെ മാത്രം!

01) കവിയുടെ കാൽപ്പാടുകൾ, നിത്യകന്യകയെ തേടി – പി
02) യക്ഷി – മലയാറ്റൂർ
03) ചിദംബരസ്മരണ – ചുള്ളിക്കാട് 04) ഒളിവിലെ ഓര്‍മ്മകള്‍ – തോപ്പിൽ ഭാസി
05) കൊടുങ്കാറ്റുയർത്തിയ കാലം – ജോസഫ് ഇടമറുക്,
06) അശ്വത്ഥാമാവ് – മാടമ്പ് കുഞ്ഞിക്കുട്ടന്‍
07) പരിണാമം – എം.പി. നാരായണപിള്ള

08) ഇന്നലത്തെ മഴ –  എൻ. മോഹനൻ

09) കുമാരനാശാൻ, ചങ്ങമ്പുഴ, ഇടപ്പള്ളി, ഇടശ്ശേരി, കടമനിട്ട, കക്കാട്, മധുസൂദനന്‍ നായർ, മുരുകൻ കാട്ടാക്കട, കൃഷ്ണഗാഥ, കുചേലവൃത്തം, രാമായണം, ആദ്ധ്യാത്മരാമായണം, മഹാഭാരതം, പൂന്താനം കൃതികൾ,…
10) ബഷീർ, സഞ്ജയൻ, പത്മരാജൻ, കാരൂർ, ഐതിഹ്യമാല, വിക്രമാദിത്യകഥകള്‍, ഡെക്കാമറൺ കഥകൾ,…

മികച്ച മലയാള പുസ്തകങ്ങള്‍ – ഒരു ജന്മം നിർബന്ധമായും വായിക്കേണ്ടവ പുസ്തകങ്ങൾ…

01. അടുക്കളയില്‍നിന്നും അരങ്ങത്തേക്ക് – വി.ടി ഭട്ടതിരിപ്പാട് (നാടകം)
02. അഗ്നിസാക്ഷി – ലളിതാംബികാ അന്തര്‍ജ്ജനം (നോവല്‍ )
03. ആലാഹയുടെ പെണ്മക്കള്‍ – സാറാ ജോസഫ്‌ (നോവല്‍ )
04. ഐതിഹ്യമാല – കൊട്ടാരത്തില്‍ ശങ്കുണ്ണി (ചെറു കഥകള്‍)
05. അമ്പലമണി – സുഗതകുമാരി (കവിത)
06. അറബിപ്പൊന്ന് – എം.ടി- എന്‍.. പി. മുഹമ്മദ് (നോവല്‍ )
07. അരങ്ങു കാണാത്ത നടന്‍ – തിക്കോടിയന്‍ (ആത്മകഥ)
08. അശ്വത്ഥാമാവ് – മാടമ്പ് കുഞ്ഞിക്കുട്ടന്‍ (നോവല്‍ )
09. ആത്മകഥ – ഇ.എം.എസ് നമ്പൂതിരിപ്പാട് (ആത്മകഥ)
10. ആത്മോപദേശ ശതകം – ശ്രീ നാരായണ ഗുരു (കവിത)
11. അവകാശികള്‍ – വിലാസിനി (നോവല്‍ )
12. അവനവന്‍ കടമ്പ – കാവാലം നാരായണപ്പണിക്കര്‍ (നാടകം)
13. അയല്‍ക്കാര്‍ – പി. കേശവദേവ്‌ (നോവല്‍ )
14. ആയ്ഷ – വയലാര്‍ രാമവര്‍മ്മ (കവിത)
15. അയ്യപ്പപണിക്കരുടെ കൃതികള്‍ – അയ്യപ്പപ്പണിക്കര്‍ (കവിത)
16. ഭാരതപര്യടനം – കുട്ടികൃഷ്ണമാരാര്‍ (ഉപന്യാസം)
17. ബാഷ്പാഞ്ജലി – ചങ്ങമ്പുഴ (കവിത)
18. ഭാസ്കരപട്ടെലും എന്‍റെ ജീവിതവും – സക്കറിയ (ചെറുകഥകള്‍ )
19. ഭൂമിഗീതങ്ങള്‍ – വിഷ്ണു നാരായണന്‍ നമ്പൂതിരി (കവിത)
20. ചലച്ചിത്രത്തിന്‍റെ പൊരുള്‍ – വിജയകൃഷ്ണന്‍ (ഉപന്യാസം)
21. ചണ്ഡാലഭിക്ഷുകി – കുമാരനാശാന്‍ (കവിത)
22. ചത്രവും ചാമരവും – എം. പി. ശങ്കുണ്ണിനായര്‍ (ഉപന്യാസം)
23. ചെമ്മീന്‍ – തകഴി (നോവല്‍ )
24. ദൈവത്തിന്റെ കാന്‍ – എന്‍. പി. മുഹമ്മദ് (നോവല്‍ )
25. ദൈവത്തിന്റെ വികൃതികള്‍ – എം.മുകുന്ദന്‍ (നോവല്‍ )
26. ഗാന്ധിയും ഗോഡ്സേയും – എന്‍.. വി. കൃഷ്ണവാരിയര്‍ (കവിത)
27. ഗസല്‍ – ബാലചന്ദ്രന്‍ ചുള്ളിക്കാട് ((കവിത)
28. ഗുരു – കെ. സുരേന്ദ്രന്‍ (നോവല്‍ )
29. ഗുരുസാഗരം – ഒ. വി. വിജയന്‍ (നോവല്‍ )
30. ഹിഗ്വിറ്റ – എന്‍. എസ്. മാധവന്‍ (ചെറുകഥകള്‍ )
31. ഹിമാലയ സാനുവിലൂടെ – കെ. വി. സുരേന്ദ്രനാഥ്‌ (യാത്രാവിവരണം)
32. ഇന്ദുലേഖ – ഒ. ചന്ദുമേനോന്‍ (നോവല്‍ )
33. ഇനി ഞാന്‍ ഉറങ്ങട്ടെ – പി. കെ. ബാലക്കൃഷ്ണന്‍ (നോവല്‍ )
34. ഇസങ്ങള്‍ക്കപ്പുറം – എസ്. ഗുപ്തന്‍നായര്‍ (ഉപന്യാസം)
35. കൈരളിയുടെ കഥ – എന്‍. കൃഷ്ണപിള്ള (ഉപന്യാസം)
36. കാലം- എം.ടി. വാസുദേവന്‍നായര്‍ (നോവല്‍ )
37. കല്യാണസൌഗന്ധികം – കുഞ്ചന്‍നമ്പ്യാര്‍ (കവിത)
38. കാഞ്ചനസീത – സി. എന്‍ ശ്രീകണ്ടന്‍ നായര്‍ (നാടകം)
39. കണ്ണുനീര്‍ത്തുള്ളി – നാലപ്പാട്ട് നാരായണമേനോന്‍ (കവിത)
40. കാരൂരിന്റെ ചെറുകഥകള്‍ – കാരൂര്‍ നീലകണ്ഠന്‍ പിളള (Short Stories)
41. കരുണ – കുമാരനാശാന്‍ (കവിത)
42. കയര്‍ – തകഴി ശിവശങ്കരപ്പിള്ള (നോവല്‍ )
43. കയ്പവല്ലരി – വൈലോപ്പിള്ളി ശ്രീധരമേനോന്‍ (കവിത)
44. കഴിഞ്ഞകാലം – കെ. പി. കേശവമേനോന്‍
45. ഖസാക്കിന്‍റെ ഇതിഹാസം – ഒ. വി വിജയന്‍ (നോവല്‍ )
46. കൊടുങ്കാറ്റുയര്‍ത്തിയ കാലം- ജോസഫ്‌ ഇടമക്കൂര്‍ (ഉപന്യാസം)
47. കൊഴിഞ്ഞ ഇലകള്‍ – ജോസഫ്‌ മുന്ടെശ്ശേരി (ആത്മകഥ)
48. കൃഷ്ണഗാഥ – ചെറുശ്ശേരി (കവിത)
49. കുച്ചലവൃത്തം വഞ്ചിപ്പാട്ട് – രാമപുരത്ത് വാരിയര്‍ (കവിത)
50. കുറത്തി – കടമനിട്ട രാമകൃഷ്ണന്‍ (കവിത)
51. എം.ടിയുടെ തിരഞ്ഞെടുത്ത കഥകള്‍ – എം. ടി. വാസുദേവന്‍നായര്‍ (ചെറുകഥകള്‍ )
52. മഹാഭാരതം – തുഞ്ചത്തെഴുത്തച്ചന്‍ (കവിത)
53. മാര്‍ത്താണ്ടവര്‍മ്മ – സി. വി. രാമന്‍പിള്ള (നോവല്‍ )
54. മരുഭൂമികള്‍ ഉണ്ടാകുന്നതെങ്ങനെ? – ആനന്ദ് (നോവല്‍ )
55. മരുന്ന് – പുനത്തില്‍ കുഞ്ഞബ്ദുള്ള (നോവല്‍ )
56. മയ്യഴിപ്പുഴയുടെ തീരങ്ങളില്‍ – എം. മുകുന്ദന്‍ (നോവല്‍ )
57. നക്ഷത്രങ്ങള്‍ കാവല്‍ – പി. പദ്മരാജന്‍ (നോവല്‍ )
58. നളചരിതം ആട്ടക്കഥ- ഉണ്ണായിവാര്യര്‍ (കവിത)
59. നാറാണത്തുഭ്രാന്തന്‍ – പി. മധുസൂദനന്‍ നായര്‍ (കവിത)
60. നീര്‍മാതളം പൂത്തപ്പോള്‍ – കമലാദാസ് (നോവല്‍ )
61. നിലാവില്‍ വിരിഞ്ഞ കാപ്പിപ്പൂക്കള്‍ – ഡി. ബാബുപോള്‍ (ഉപന്യാസം)
62. നിങ്ങളെന്നെ കമ്മുനിസ്ടാക്കി – തോപ്പില്‍ഭാസി (നാടകം)
63. നിവേദ്യം – ബാലാമണിയമ്മ (കവിത)
64. ഓടക്കുഴല്‍ – ജി. ശങ്കരക്കുറുപ്പ് (കവിത)
65. ഓര്‍മകളുടെ വിരുന്ന്‍ – വി. കെ. മാധവന്‍കുട്ടി (ആത്മകഥ)
66. ഒരു ദേശത്തിന്റെ കഥ – എസ്. കെ. പൊറ്റക്കാട് (നോവല്‍ )
67. ഒരു സങ്കീര്‍ത്തനം പോലെ – പെരുമ്പടവ് ശ്രീധരന്‍ (നോവല്‍ )
68. ഒരു വഴിയും കുറെ നിഴലുകളും – രാജലക്ഷ്മി (നോവല്‍ )
69. പാണ്ഡവപുരം – സേതു (നോവല്‍ )
70. പണിതീരാത്ത വീട് – പാറപ്പുറത്ത് (നോവല്‍ )
71. പത്രധര്‍മം – സ്വദേശാഭിമാനി രാമകൃഷ്ണപിള്ള (ഉപന്യാസം)
72. പത്രപ്രവര്‍ത്തനം എന്ന യാത്ര – വി. കെ. മാധവന്‍കുട്ടി (ആത്മകഥ)
73. പയ്യന്‍ കഥകള്‍ – വി. കെ. എന്‍ (ചെറുകഥകള്‍ )
74. പൂതപ്പാട്ട് – ഇടശ്ശേരി (കവിത)
75. പ്രകാശം പരത്തുന്ന പെണ്‍കുട്ടി – ടി. പദ്മനാഭന്‍ (ചെറുകഥകള്‍ )
76. രമണന്‍ – ചങ്ങമ്പുഴ (കവിത)
77. രാമായണം – തുഞ്ചത്തെഴുത്തച്ഛന്‍ (കവിത)
78. രണ്ടാമൂഴം – എം. ടി. വാസുദേവന്‍നായര്‍ (നോവല്‍ )
79. സാഹിത്യ വാരഫലം – എം. കൃഷ്ണന്‍നായര്‍ (ഉപന്യാസം)
80. സാഹിത്യമഞ്ജരി – വള്ളത്തോള്‍ നാരായണമേനോന്‍ (കവിത)
81. സമ്പൂര്‍ണ കൃതികള്‍ – വൈക്കം മുഹമ്മദ്‌ ബഷീര്‍ (ചെറുകഥകള്‍ )
82. സഞ്ചാരസാഹിത്യം Vol I – എസ്. കെ. പൊറ്റക്കാട് (യാത്രാവിവരണം)
83. സഞ്ചാരസാഹിത്യം Vol II – എസ്. കെ. പൊറ്റക്കാട് (യാത്രാവിവരണം)
84. സഭലമീയാത്ര – എന്‍. എന്‍. കക്കാട് (ആത്മകഥ)
85. സൗപര്‍ണിക – നരേന്ദ്രപ്രസാദ് (നാടകം)
86. സ്പന്ദമാപിനികളേ നന്ദി – സി. രാധാകൃഷ്ണന്‍ (നോവല്‍ )
87. ശ്രീ. ചിത്തിരതിരുനാള്‍ – അവസാനത്തെ നാടുവാഴി – ടി. എൻ. ഗോപിനാഥൻ നായർ (ഉപന്യാസം)
88. സുന്ദരികളും സുന്ദരന്മാരും – ഉറൂബ് പി. സി. കുട്ടികൃഷ്ണന്‍ (നോവല്‍ )
89. സ്വാതിതിരുനാള്‍ – വൈക്കം ചന്ദ്രശേഖരന്‍നായര്‍ (നോവല്‍ )
90. തത്ത്വമസി – സുകുമാര്‍ അഴിക്കോട് (ഉപന്യാസം)
91. തട്ടകം – കോവിലന്‍ (നോവല്‍ )
92. ദി ജഡ്ജ്മെന്‍റ് – എന്‍. എന്‍. പിള്ള (നാടകം)
93. ഉള്‍ക്കടല്‍ – ജോര്‍ജ് ഓണക്കൂര്‍ (നോവല്‍ )
94. ഉമാകേരളം – ഉള്ളൂര്‍ എസ്. പരമേശ്വരയ്യര്‍ (കവിത)
95. ഉപ്പ് – ഒ. എന്‍ . വി. കുറുപ്പ് (കവിത)
96. വാസ്തുഹാര – സി. വി. ശ്രീരാമന്‍ (നോവല്‍ )
97. വേരുകള്‍ – മലയാറ്റൂര്‍ രാമകൃഷ്ണന്‍ (നോവല്‍ )
98. വിക്രമാദിത്യ കഥകള്‍ – സി. മാധവന്‍പിള്ള (ചെറുകഥകള്‍ )
99. യന്ത്രം – മലയാറ്റൂര്‍ രാമകൃഷ്ണന്‍ (നോവല്‍ )
100. യതിച്ചര്യ – നിത്യചൈതന്യയതി (ഉപന്യാസം)
101. എന്മഗജെ – അംബികാസുതൻ മാങ്ങാട് (നോവൽ)
102. ഇന്നലത്തെ മഴ – എൻ. മോഹനൻ (നോവൽ)
103. ഇവനെന്റെ പ്രിയ സിജെ – റോസി തോമസ് ()

ചെറുകഥകൾ മാത്രം

01. വെള്ളപ്പൊക്കത്തിൽ – തകഴി ശിവശങ്കരപ്പിള്ള
02. ജന്മദിനം – വൈക്കം മുഹമ്മദ് ബഷീർ
03. മരപ്പാവകൾ – കാരൂർ നീലകണ്‌ഠപ്പിള്ള
04. കടൽത്തീരത്ത് – ഒ.വി. വിജയൻ
05. നെയ്പായസം – മാധവിക്കുട്ടി
06. ഷെർലക് – എം.ടി. വാസുദേവൻ നായർ
07. കടയനല്ലൂരിലെ ഒരു സ്‌ത്രീ – ടി. പത്മനാഭൻ
08. ബ്രിഗേഡിയർ കഥകൾ – മലയാറ്റൂർ രാമകൃഷ്ണൻ
09. കോട്ടയത്ത് എത്ര മത്തായിമാരുണ്ട് – ജോൺഏബ്രഹാം
10. മെഴുകുതിരികൾ – എൻ.പി. മുഹമ്മദ്
11. വാസ്‌തുഹാര – സി.വി. ശ്രീരാമൻ
12. നാടകാന്തം – സി. രാധാകൃഷ്ണൻ
13. ക്ഷേത്ര വിളക്കുകൾ – പുനത്തിൽ കുഞ്ഞബ്ദുള്ള
14. ഒറ്റയാൻ – കാക്കനാടൻ
15. ദൂത് – സേതു
16. നിന്റെ കഥ (എന്റെയും) – എൻ. മോഹനൻ
17. മുരുകൻ എന്ന പാമ്പാട്ടി – എം. പി. നാരായണപിള്ള
18. ആറാമത്തെ വിരൽ – ആനന്ദ്
19. കൈവഴിയുടെ തെക്കേയറ്റം – പത്മരാജൻ
20. സൈലൻസർ – വൈശാഖൻ
21. അല്ലോപനിഷത്ത് – പട്ടത്തുവിള കരുണാകരൻ
22. പയ്യന്റെ ഡയറി – വി. കെ. എൻ
23. ഒരു നസ്രാണി യുവാവും ഗൌളി ശാസ്‌ത്രവും – സക്കറിയ
24. പന്ത്രണ്ടാം മണിക്കൂർ – വി. പി. ശിവകുമാർ
25. ഗ്രാന്റ് കാന്യൺ – യു. കെ. ജോണി
26. സംഗീതം ഒരു സമയകലയാണ് – മേതിൽ രാധാകൃഷ്ണൻ
27. ഗൌതലജാറ (തോട്ടക്കാടൻ സ്മരണിക) –കെ. പി. നിർമ്മൽ കുമാർ
28. ഹിഗ്വീറ്റ – എൻ. എസ്. മാധവൻ
29. ഈ ഉടലെന്നെ ചൂഴുമ്പോൾ – സാറാ ജോസഫ്
30. പടിയിറങ്ങിപ്പോയ പാർവ്വതി – ഗ്രേസി
31. മഞ്ഞ് – യു. പി. ജയരാജ്
32. പിഗ്‌മാൻ – എൻ. പ്രഭാകരൻ
33. ക്രിസ്‌മസ്മരത്തിന്റെ വേര് – അയ്മനം ജോൺ
34. റെയ്‌ൻഡിയർ – ചന്ദ്രമതി
35. പുരുഷവിലാപം – കെ. പി. രാമനുണ്ണി
36. നനഞ്ഞ ശിരോവസ്‌ത്രങ്ങൾ -ടി. വി. കൊച്ചുബാവ
37. പരിചിത ഗന്ധങ്ങൾ – അശോകൻ ചരുവിൽ
38. ബർമുഡ –പി. സുരേന്ദ്രൻ
39. അച്ഛൻതീവണ്ടി – വി. ആർ. സുധീഷ്
40. ബോധേശ്വരൻ – ശിഹാബുദ്ദീൻപൊയ്‌ത്തുംകടവ്
41. മരണാനന്തരം – കരുണാകരൻ
42. സതിസാമ്രാജ്യം – സുഭാഷ് ചന്ദ്രൻ
43. ഉമ്പർടോഎക്കോ – ബി. മുരളി
44. കാളീനാടകം – ഉണ്ണി ആർ.
45. ചാവുകളി – ഇ. സന്തോഷ്കുമാർ
46. രാത്രികളുടെ രാത്രി – കെ. എ. സെബാസ്‌റ്റ്യൻ
47. കൊമാല – സന്തോഷ് ഏച്ചിക്കാനം
48. ആവേമരിയ – കെ. ആർമീര
49. സൂര്യമുഖി – സിതാര എസ്
50. സംഘപരിവാർ – ഇന്ദുമേനോൻ
51. കിടപ്പറ സമരം – പി. വി. ഷാജികുമാർ

മികച്ച ഇംഗ്ലീഷ് പുസ്തകങ്ങള്‍

01. The House of the Spirits by Isabel Allende
02. The Master and Margarita by Mikhail Bulgakov
03. The Outsider by Albert Camus
04. Cheri by Colette
05. The Leopard by Giuseppe Tomasi di Lampedusa
06. Crime and Punishment by Fyodor Dostoevsky
07. Madame Bovary by Gustave Flaubert
08. Miss Smilla’s Feeling for Snow by Peter Hoeg
09. Measuring The World by Daniel Kehlmann
10. My Name is Red by Orhan Pamuk
11. Wuthering Heights 1847 by Emily Bronte
12. Winesburg, Ohio 1919 by Sherwood Anderson
13. War and Peace 1889 by Leo Tolstoy
14. Uncle Tom’s Cabin 1852 by Harriet Beecher Stowe
15. To Kill a Mockingbird 1960 by Harper Lee
16. Their Eyes Were Watching God 1937 by Zora Neale Hurston
17. Tess of the D’Urbervilles 1891 by Thomas Hardy
18. Tales 1952 by Edgar Allan Poe
19. A Tale of Two Cities 1859 by Charles Dickens
20. The Stranger 1946 by Albert Camus
21. The Sound and the Fury 1929 by William Faulkner
22. Silas Marner 1861 by George Eliot
23. A Separate Peace 1959 by John Knowles
24. The Scarlet Letter 1850 by Nathaniel Hawthorne
25. Robinson Crusoe 1719 by Daniel Defoe
26. The Red Badge of Courage 1895 by Stephen Crane
27. Pride and Prejudice 1813 by Jane Austen
28. The Old Man and the Sea 1952 by Ernest Hemingway
29. Of Mice and Men 1937 by John Steinbeck
30. Of Human Bondage 1915 by W. Somerset Maugham
31. Nineteen Eighty Four 1949 by George Orwell
32. Native Son 1940 by Richard Wright
33. My Antonia 1918 by Willa Cather
34. Moby Dick 1851 by Herman Melville
35. Lord of the Flies 1954 by William Golding
36. Jane Eyre 1847 by Charlotte Bronte
37. Invisible Man 1952 by Ralph Ellison
38. Heart of Darkness 1902 by Joseph Conrad
39. The Great Gatsby 1925 by F. Scott Fitzgerald
40. The Grapes of Wrath 1939 by John Steinbeck
41. The Good Earth 1931 by Pearl S. Buck
42. Gone with the Wind 1936 by Margaret Mitchell
43. Ethan Frome 1911 by Edith Wharton
44. Don Quixote 1612 by Miguel de Cervantes
45. Cry, the Beloved Country 1948 by Alan Paton
46. The Complete Sherlock Holmes 1936 by Arthur Conan Doyle
47. The Catcher in the Rye 1951 by J.D. Salinger
48. Catch-22 1961 by Joseph Heller
49. The Call of the Wild 1903 by Jack London
50. Brave New World 1932 by Aldous Huxley
51. The Best Short Stories 1945 by O. Henry
52. Beloved 1987 by Toni Morrison
53. All Quiet on the Western Front 1929 by Erich Maria Remarque
54. The Adventures of Huckleberry Finn 1884 by Mark Twain

ഐടി @ സ്കൂൾ ഗ്നു ലിനക്സ് 12.04

IT@School GNU/Linux CD for free Downloadകേരള പാഠ്യപദ്ധതി പിന്തുടരുന്ന സ്കൂളുകളുടെ ഉപയോഗത്തിനായി ഐടി @ സ്കൂൾ പ്രോജക്റ്റ് തയ്യാറാക്കിയിട്ടുള്ള ഓപ്പറേറ്റിങ് സിസ്റ്റമാണ് ഐടി @ സ്കൂൾ ഗ്നു ലിനക്സ് 12.04. ഉബുണ്ടു 12.04 എന്ന ഗ്നു ലിനക്സ് ഓപ്പറേറ്റിങ് സിസ്റ്റത്തിനെ ആധാരമാക്കിയാണിത് തയ്യാറാക്കിയിരിക്കുന്നത്. (more…)

എങ്ങനെ ഒരു ടോറന്റ് ഫയൽ ഡൗൺലോഡ് ചെയ്യാം

torrent tracker systemഇന്റർനെറ്റിലുടെ ഫയലുകൾ കൈമാറാൻ ഉപയോഗിക്കുന്ന സാങ്കേതികവിദ്യയാണ് ടോറന്റ്. സാങ്കേതികമായി പറഞ്ഞാൽ വെബ്പേജുകൾ ഇന്റെർനെറ്റിൽ കാണാനുപയോഗിക്കുന്ന HTTP പോലെയോ, ഫയൽ കൈമാറ്റത്തിനുതന്നെ ഉപയോഗിക്കുന്ന FTP പോലെയോ ഉള്ള ഒരു പ്രോട്ടോക്കോൾ ആണിത്. കൈമാറ്റം ചെയ്യപ്പെടുന്ന ഫയലിനെ നിരവധി ചെറു പാക്കറ്റുകളായി വിഭജിച്ച്, അനേകം കമ്പ്യൂട്ടറുകൾ പരസ്പരം ഈ പാക്കറ്റുകൾ കൈമാറിയാണ് ഇതു സാധ്യമാകുന്നത്. (more…)

×

Hello!

താഴെ കാണുന്ന വാട്സാപ്പ് ഐക്കൺ ക്ലിക്ക് ചെയ്യുകയോ ഈ മെയിൽ ഐഡിയിലേക്ക് മെയിൽ അയക്കുകയോ ചെയ്യുക.

രാജേഷ് ഒടയഞ്ചാൽ

×
Verified by MonsterInsights