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 window creation, input management, both 2D or 3D graphics and sound. It may leverage 3D graphics libraries like OpenGL or Vulkan. You can read this post about 3D graphics libraries. Graphics…
JavaScript, commonly abbreviated as JS, is a programming language focused on web development. This post is an introduction to JavaScript ecosystem, encompassing the JavaScript programming language, engines and runtime environments. JavaScript Description JavaScript is a multi-purpose, multi-paradigm, interpreted programming language.…
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. React is part of the MERN development framework, that stands for MongoDB, Express, React and Node.js. You can find an introduction to JavaScript on this post. You can…
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,…