Go variables of different types can be declared in one go using type inference.
Dynamic Type Declaration in Go
A dynamic type variable declaration requires the compiler to interpret the type of the variable based on the value passed to it. The compiler does not require a variable to have type statically as a necessary requirement.
Static Type Declaration in Go
A static type variable declaration provides assurance to the compiler that there is one variable available with the given type and name so that the compiler can proceed for further compilation without requiring the complete detail of the variable. A variable declaration has its meaning at the time of compilation only, the compiler needs the actual variable declaration at the time of linking of the program.
Hello World in Go
Pure Python Spell Checking
Pure Python Spell Checking based on Peter Norvig’s blog post on setting up a simple spell checking algorithm.
Run your Own Moodle Server
Students can now create a fully functional Moodle server from a template in XOA. By doing this they can gain valuable experience in setting up an Online Learning Platform. Moodle is offered as a cloud application by many providers and used by schools and colleges across the world, so this tutorial is worth a read!
kind – Kubernetes IN Docker
Kubernetes (commonly shortened to “k8s”) is an open-source container-orchestration system for automating application deployment, scaling, and management. It was originally designed by Google, and is now maintained by the Cloud Native Computing Foundation. It aims to provide a “platform for automating deployment, scaling, and operations of application containers across clusters of hosts”. It works with a range of container tools, including Docker.