Tag dev

Software Versioning

Software versioning is the process of assigning version names or numbers to software Software created Visual Studio separates four numbers with dots. The meaning of each number is: Example: 4.5.13.89 Software Code Version Control System Some software assigns the version…

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…

Disassemblers and Decompilers

A disassembler is a computer program that converts machine code into assembly language. A decompiler is a computer program that converts a machine code into programming language. This post features a list of disassemblers and decompilers. They are used on…

Introduction to JavaScript

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