Tag programming

Introduction to C++

This post is an introduction to C++. C++ is an adaptation of C to the object-oriented paradigm. It was originally developed by Bjarne Stroustrup. C++ Versions and Standards There are different standard versions of C++. Each version is standardized through…

Debugging Tools

This post features debugging tools. List of Debugging Tools Popular Debugging Tools: OllyDbg OllyDbg is a debugger for Windows that is primarily used for user-mode binary analysis and reverse engineering. For Windows. WinDbg WinDbg is more focused on kernel-mode debugging…

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,…

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…

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.…

Functional Programming Languages

This post discuss about functional programming languages, it means, programming languages that use the functional paradigm. List of Functional Programming Languages Functional programming languages featured on this post: Haskell Haskell is a purely functional programming language, and one of the…