History
Everything on SkillVeris tagged History — collected across the glossary, study notes, blog, and cheat sheets.
19 resources across 1 library
Study Notes(19)
What Is MFC?
An introduction to the Microsoft Foundation Classes (MFC), the C++ framework that wraps the Win32 API into an object-oriented class library for building native…
What Is Fortran?
An introduction to Fortran, the pioneering language built for numerical and scientific computing that still powers weather models and supercomputers today.
What Is the D Programming Language?
An introduction to the D programming language -- its history, design philosophy, and the features that set it apart from C++, Java, and Go.
What Is Groovy?
An introduction to Groovy, a dynamic, optionally-typed language for the JVM that extends and simplifies Java for scripting, testing, and build automation.
What Is Perl?
An introduction to Perl's history, design philosophy, and the kinds of real-world problems it is still used to solve today.
History and Evolution of C++
Learn how C++ evolved from `C with Classes` into a modern, standardized systems programming language used across the software industry today.
History and Evolution of C
Trace C's evolution from Dennis Ritchie's 1972 creation at Bell Labs through K&R C, ANSI C, and modern C99/C11 standards.
History and Evolution of Java
Trace Java's origins from Sun Microsystems' 'Oak' project through its 1995 public release to its current ownership by Oracle, and understand key milestones in…
History and Evolution of Python
A timeline of Python's origins, major version milestones, and the design philosophy that shaped it from 1989 to today.
History and Evolution of JavaScript
A timeline of JavaScript's creation, standardization as ECMAScript, and major milestones through modern ES6+ releases.
History and Evolution of TypeScript
A timeline of TypeScript's origins at Microsoft, its major version milestones, and how it grew into a dominant language for web development.
History and Evolution of Go
Learn how Go was created at Google in 2007 and evolved into a widely adopted language for modern software.
History and Evolution of Rust
A look at how Rust originated at Mozilla Research and evolved into an independently governed language.
History and Evolution of Kotlin
How Kotlin evolved from a JetBrains research project in 2011 to Google's preferred language for Android development.
History and Evolution of Swift
Swift evolved from a 2014 Apple announcement into an open-source, ABI-stable language used across and beyond Apple platforms.
History and Evolution of React
A look at how React was created at Facebook, its major milestones, and how it evolved into the modern hooks-based library it is today.
Common Git Pitfalls
A field guide to the mistakes that trip up both new and experienced Git users, why each one happens, and how to avoid or recover from it.
git revert vs git reset
Two different ways to undo changes in Git — revert creates a new commit that inverses a prior one, while reset moves the branch pointer and rewrites history —…
Viewing History with git log
Learn to inspect a repository's commit history using git log's filtering, formatting, and graph options to understand who changed what and why.