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…

MS-DOS Video Game Reimplementations

This post features some reimplementations of MS-DOS video games. List of Reimplementations of MS-DOS Game Engines List of reimplementations of MS-DOS Video Games featured on this post: ScummVM (SCUMM) ScummVM is a reimplementation of the SCUMM game engine (1987), used…

Software Reverse-Engineering

This post is an introduction to software reverse-engineering (RE). Software reverse-engineering is the process of reverse-engineering existing software where there is no or little or no insight about how the program works. For example, if we have already access to…

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. In functional programming languages, a desired result is declared as the value of a series of function evaluations, uses evaluation of mathematical functions and…