Tkinter GUI guide

1.Create the window ⛶from tkinter import * b = Tk() b.title("tkinter project") b.geometry("400x300") b.minsize(400,400) b.mainloop() 2.Label(Display text) ⛶from tkinter import *...
0 Read More

Load-balancing using docker and nginx

Load-balancing using docker and nginx
Let me be clear this article is not a tutorial on NGINX or Docker. Just how to setup Load-balancing using both (Nginx and Docker). I will be assuming pre-requiste knowledge of both subjects.In this ar...
0 Read More