Transport Layer Security (TLS) encrypts data sent over the Internet to ensure that eavesdroppers and hackers are unable to see what you transmit which is particularly useful for private and sensitive information such as passwords, credit card numbers, and personal correspondence.
The TokenRequest API enables the creation of tokens that aren’t persisted in the Secrets API, that are targeted for specific audiences (such as external secret stores), have configurable expiries, and are bindable to specific pods. These tokens are bound to specific containers. Because of this, they can be used as a means of container identity. The current service account tokens are shared among all replicas of a deployment and thusly, are not a good means of unique identity.
Some sorting algorithms written using golang generics.
Study notes, some algorithm problems and golang solutions done recently.
Recursion is a technique used to solve computer problems by creating a function that calls itself until your program achieves the desired result.
A stack is a memory in which values are stored and retrieved in “last in first out” manner. Data is added to stack using push operation and data is taken out of stack using pop operation.
This post is an about an array-related question that often comes up in interviews, and the solution. Before that, we learned the basic data structures of the Go programming language. It is a good way to further relate to what we have learned earlier.