Software
Software is a collection of programs and data that tell a computer how to perform specific tasks. Software is a term that opposes to hardware, from which the system is built and which actually performs the work. You can read…
Software is a collection of programs and data that tell a computer how to perform specific tasks. Software is a term that opposes to hardware, from which the system is built and which actually performs the work. You can read…
This post provides some hints to do a free and open source (FOSS) software project. Aspects to consider when building a Free and Open-source Software Project Aspects to take into account when making a free and open-source software (FOSS) project:…
This post summarizes libraries to create multimedia content, including both 2D or 3D graphics and sound. For those libraries to create only graphics (without sound), you can check this post. Graphics and multimedia libraries should not be confused with game…
JavaScript, commonly abbreviated as JS, is a programming language focused on web development. JavaScript Description JavaScript is a multi-purpose, multi-paradigm, interpreted programming language. It is extensively used on web development as a programming language for the front-end and back-end functionality.…
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,…
This post explains some aspects specific to Python programming language. If you want to read a more general introduction to Python and not only the programming language itself (including how to learn Python or getting support on Python), please read…
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…
React is a web front-end framework written in JavaScript (JS) programming language. You can find an introduction to JavaScript on this post. You can find a list of alternative front-end web frameworks on this post. React Components JSX is a…
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.…
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,…