Category Archives: Uncategorized
Programming And Algorithm
This is python coding for Network commands import tkinter as windowToolKitInterfaceimport osdef routeCommand(): result= os.system(“route”)def netStatCommand(): result= os.system(“netstat”) print(result)def nbtStatCommand(): result = os.system(“nbtstat “) print(result)def tracertCommand(): result = os.system(“tracert “) print(result)def pathPingCommand(): result = os.system(“pathping “) print(result)def ipconfigCommand(): result = os.system(“ipconfig”) print(result)myWindow = windowToolKitInterface.Tk()myWindow.title(“Networking program”)myWindow.configure(background=’green’)myWindow.geometry(“300×170″)myWindowFrame = windowToolKitInterface.Frame(myWindow)myWindowFrame.pack()routeButton = windowToolKitInterface.Button(myWindowFrame, text=”route”, fg=”black”,command=routeCommand)netStatButton= windowToolKitInterface.Button(myWindowFrame, text=”Netstat”, fg =Continue reading “Programming And Algorithm”
Test 2
Design program
My First Blog Post
Be yourself; Everyone else is already taken. — Oscar Wilde. This is the first post on my new blog. I’m just getting this new blog going, so stay tuned for more. Subscribe below to get notified when I post new updates.
Introduce Yourself (Example Post)
This is an example post, originally published as part of Blogging University. Enroll in one of our ten programs, and start your blog right. You’re going to publish a post today. Don’t worry about how your blog looks. Don’t worry if you haven’t given it a name yet, or you’re feeling overwhelmed. Just click theContinue reading “Introduce Yourself (Example Post)”