|
|
|
|
|
by chmod775
2414 days ago
|
|
> To be fair, though, a LOT has changed about the nature of computer programming since 1965. Has it though? The Von-Neumann-architecture was already a thing back then, programming languages (BASIC, Fortran, ...) already had many of the things you are still using today (such as for-loops) and any algorithm and data structure thought up back then is still perfectly usable today in most modern languages. Sure, the whole tooling and library situation is not comparable to back then, but the fundamentals haven't really changed. Consider these things: - Binary search trees (1960) - Linked lists (1955) - Quicksort (1959) - Hash tables (1953) Looking back I rather have to say I am not impressed with advances in practical computer programming since then. The only major change was the introduction of type systems and OO imho, though these were technically a thing already back then too on an academic level. |
|