The world of software is constantly changing at a very fast pace. Yesterday’s axioms might be tomorrow’s anti-patterns. Newborn technologies rise to popularity only to become obsolete sooner than expected and hardware advancements make things that were considered science-fiction a few years ago possible. The only certainty is that we don’t know what the future will bring us. Emerging Technologies Here is a partial list of emerging technologies in recent years: Needless to say that blockchain has a good chance to disrupt the world as we know today. 1. Blockchain The increase of hardware capabilities has brought a new wave of tools and disruption to many industries that take advantage of machine learning. 2. The machine learning renaissance Now it’s much easier to deploy self-contained isolated components to the cloud. Container orchestration infrastructures that only giants like Google previously had in-house are now publicly available for everyone (Kubernetes is the king here for now but the future will surely bring new tools). 3. Containers The motivation is to have one universal bytecode that will be used not only in browsers but in everything (desktop/smartphones/god knows). This technology will transform the portability of software between platforms. 4. WebAssembly One of the most innovative programming languages ever invented, Rust makes system programming a real joy. The most loved programming language in Stack Overflow surveys for the last 4 years. 5. Rust The solution to making Erlang virtual machines (called BEAM) mainstream, mainly thanks to its Ruby-like syntax and great tooling. 6. Elixir Why deploy containers to the cloud when we want only a single function that doesn’t need to be up 24x7? 7. Serverless REST API is not ideal for every problem, many data models are actually viewed better as a graph and this protocol plays nicely with them. 8. GraphQL An innovative key-value database with so many data-structures. The most loved database in Stack Overflow surveys for the last 3 years. 9. Redis Distributed commit log that serves as the single point of truth of a system data. It makes it very easy to add/remove independent producers/consumers for our system architecture. Thanks to Kafka it’s easy to select a checkpoint and historical data. 10. Kafka “re-play” On the one hand, it’s an exciting time to be a software developer. On the other, it means that in order to keep up, we can’t stop learning or we’ll become irrelevant. I’ve always loved (and still do) learning. I love reading technical books (I own too many). I love reading beautiful pieces of source code. I always seek for ways to be more productive and get out of my comfort zone. But, I think there is one important thing that people often overlook and it is the importance of unlearning things. Unlearning Unlearning means we need to accept that there might be more than one solution to a given problem, and this solution might be counterintuitive for us. It also requires humility and willingness to start over in order to gain a new perspective and extend our toolbox. Let’s review the above list of technologies: In order to understand how blockchain technologies work, we must forget about the centralized middleman model. 1. Blockchain For example, we need to accept here that computer neural networks can output results which are impossible for us to understand exactly where they came from. 2. Machine Learning Containers disrupted the DevOps world and are the key reason for the micro-services architecture explosion. Without them, we’d stay with more monolithic systems. 3. Containers Will open many opportunities, the obvious is using new programming languages for Frontend Programming. Another world of possibilities will be consuming WebAssembly libraries and using them within our applications. For example, a Rust program that will initiate a WebAssembly runtime hosting other wasm programs that were originally coded in Golang/Swift/other). 4. WebAssembly Learning the Rust programming language in terms of borrowing/ownership. 5. Rust requires us to think of resources differently The philosophy of Erlang asks us to accept unknowns and that things will break and prepare for them from the beginning. 6. Elixir Let it crash Asks us to stop thinking only about services but also about single functions. It opens new opportunities to save money since we only pay for when the usage of a function (which might not be available 24x7). 7. Serverless Requires us to accept that REST isn’t always the best for every scenario and that sometimes there is actually a graph. (I personally think that starting from a REST API and gradually move towards a GraphQL is less risky for a green-field project) 8. GraphQL Requires us to represent data in many more shapes: Key-Value/Hashes/ Set/SortedSets/Lists etc. 9. Redis Once we start viewing our , we can think more about replaceable components on our system. For example, we can easily add a new consumer and make it process data and spill it into a new database and know it won’t interfere with the rest of the system. 10. Kafka system data as a log Unlearning is a continuous inner fight. If done properly can be a huge enabler and if not, then we risk missing growth opportunities. "A change in perspective is worth 80 IQ points." - Alan Kay Previously published at: https://gryphon.dev/2019/06/27/the-importance-of-unlearning/