Introduction Nginx Ingress Controller is a popular implementation of the Ingress resource in Kubernetes. It is built around the Nginx web server, a high-performance and widely used web server and reverse proxy. The Nginx Ingress Controller extends the functionality of Nginx to efficiently route incoming HTTP and HTTPS traffic to different services within your Kubernetes…
In today’s digital landscape, secure communication and data exchange are paramount. When it comes to remotely accessing servers and systems, Secure Shell (SSH) has become the go-to protocol for secure and encrypted connections. SSH provides a reliable means of establishing a secure channel over an unsecured network, ensuring confidentiality and integrity of data transfers. One…
Using a Prompt Using Registry Editor
What’s WSL? Windows Subsystem for Linux (WSL) is a compatibility layer developed by Microsoft that allows you to run a Linux environment directly on Windows. It provides a way for developers and users to utilize Linux tools, run command-line utilities, and even install and run Linux distributions from the Microsoft Store. WSL bridges the gap…
After reading this post, you should be able to mastering array slicing. Many don’t understand what is slicing, you can consider slicing as select elements by index in an array. (All experiments are done using python with NumPy) First we need to know what’s the meaning of [:] or [::], what you might already seen…
Assume you are using LAMP stack to deploy wordpress, you can create or edit php.ini to increase the maximum upload file size. You could find php.ini file by typing find / -iname php.ini, and it should locate at /etc/php/x.x/apache2/php.ini. Then you can edit it using vim or any editor you like. Find the following lines…
What is Callback? For many starters, a callback function may be hard to understand. And it seems that a callback function is unnecessary in our code, but it can be quite useful once you learn what callback means and how to use it in your code. Let’s say you write a programme which has two…
First, let’s learn what exactly Flask is. Flask is a web application framework written in Python. It was developed by Armin Ronacher, who led a team of international Python enthusiasts called Pocco. Flask is based on the Werkzeg WSGI toolkit and the Jinja2 template engine. Both are Pocco projects. In general, we can deploy a…
A Briefly Introduction to RNN First, let’s break down a RNN module. Here’s the structure of a RNN node, which has two inputs, where $X_t$ represent current time’s input, $H_{t-1}$ represent previous hidden state. After go through $\phi$ which is a FC layer with active function(by default it’s a $tanh$ function), it has two outputs…
[Refer To] https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ Kubernetes This page shows how to create a Pod that uses a Secret to pull an image from a private container image registry or repository. There are many private registries in use. This task uses Docker Hub as an example registry. Log in to Docker Hub First log in to you private registry with: View the config.json file:…