Category IT

Python Modules

This post explains what are modules in Python and summarizes some popular libraries. Explaining Python Modules Python modules allow to add to your computer libraries, functionalities and tools already done, tested and provided by others. This enables reusability of code,…

Disk Partition Tables

A partition table or partition scheme is a resource that allocates all partitions within the system. Type of partition table: MBR Master Boot Record (MBR) is older than GPT. GPT Each partition within a GUID Partition Table (GPT) uses a…

Python Development

This post introduces to some aspects of Python development. Python Programming Language Python applications are developed using Python programming language. You can find more information about Python programming language on this post. Integrated Development Environments (IDEs) for Python It is…

Open Content Licenses

This post introduces to free, libre or open content licenses. The term “content” is used to refer to the combination of text, images, sound and/or artwork. This post is part of the main post about open licenses. Relationship between Open…

Introduction to Django

Django is a back-end web framework written in Python. It follows the model-template-view (MTV) architectural pattern. The Model-Template-View Architecture The Model-Template-View (MTV) architecture separates logically the definitions of a project in the following components: Django apps follows the MTV architecture.…

Source Code Editors

This post lists some source code editors for software development or coding. What is the Difference between a Source Code Editor and an IDE? An Integrated Development Environment (IDE) offers tools to create software projects considering all operative aspects (code,…