You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2.2 KiB

Future-Proof Technology

Future-proof technology is technology that is very likely to stay functional for a very long time with minimal to no maintenance. This feature is generally pretty hard to achieve and today's consoomerist society makes the situation much worse by focusing on immediate profit without long-term planning and by implementing things such as bloat and planned obsolescence.

A truly good technology is trying to be future-proof because this saves us the great cost of maintenance and reinventing wheels.

Despite the extremely bad situation not all hope is lost. At least in the world of software future-proofing can be achieved by:

  • Building on top of already well established and time-tested technology such as the C language. Choosing to use the older standards with fewer features helps greatly as the less-feature-rich versions of languages are always more supported (for example there is many more C89 compilers than C17 compilers).
  • Minimizing dependencies to absolute bare minimum. Dependencies are likely the single greatest cause of software death because if one of your dependencies dies, you whole project dies, and this goes recursively for all of the dependencies of the dependencies etc. This usually means software libraries but also goes for other software such as build systems and also hardware dependencies such as requiring GPU, floating point, special instructions etc.
  • Practicing minimalism and reducing complexity which minimizes the maintenance cost and therefore raises the probability of someone being able to fix any issues that arise over time.
  • Making hard dependencies soft, i.e. optional. For example if your software is using GPU for real-time rendering, it should also offer a software rendering option in case GPU is not present or is unsupported.
  • Avoiding the hyped "modern" "feature-rich" (bloated) technology arising from the consumerist market.

See Also