AWS re/Start

For the past 3 years, I have been experimenting with cloud computing with a heavy focus on AWS as the cloud provider, and initially, due to my frequent interaction with AWS I had planned to get certif...
0 Read More

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

Key Features of Java

bject-Oriented: Java's object-oriented nature promotes modularity and code reuse, allowing developers to create flexible and maintainable applications. ​ w3schools.comPlatform Independence: Java app...
0 Read More