GUI Deer Arriving with Global Architect

Has anyone done a visual representation of the architecture of the Internet or its spaces. Would it be organized chaos?

designing
a person who designs hardware, software, or networking applications and services of a specified type for a business or other organization.

Michalangelo, Zaha Hadia and today Maya Lin many more exist. How many here are architect/artist?

-- try:
import tkinter
except ImportError: # python 2
import Tkinter as tkinter

import os
mainWindow = tkinter.Tk()

mainWindow.title("Grid Demo")
mainWindow.geometry('640x480-8-200')

label = tkinter.Label(mainWindow, text="Tkinter Grid Demo")
label.grid(row=0, column=0, columnspan=3)

mainWindow.columnconfigure(0, weight=1)
mainWindow.columnconfigure(1, weight=1)
mainWindow.columnconfigure(2, weight=3)
mainWindow.columnconfigure(3, weight=3)
mainWindow.columnconfigure(4, weight=3)
mainWindow.rowconfigure(0, weight=1)
mainWindow.rowconfigure(1, weight=10)
mainWindow.rowconfigure(2, weight=1)
mainWindow.rowconfigure(3, weight=3)
mainWindow.rowconfigure(4, weight=3)

fileList = tkinter.Listbox(mainWindow)
fileList.grid(row=1, column=0, sticky="nsew", rowspan=2)
fileList.config(border=2, relief="sunken")

for zone in os.listdir('/Windows/System32'):
fileList.insert(tkinter.END, zone)


listScroll = tkinter.Scrollbar(mainWindow, orient=tkinter.VERTICAL, command=fileList.yview)
listScroll.grid(row=1, column=1, sticky="nsw", rowspan=2)
fileList['yscrollcommand']=listScroll.set


#frame for radio buttons
optionFrame = tkinter.LabelFrame(mainWindow, text="File Details")
optionFrame.grid(row=1, column=2, sticky="ne")

rbValue = tkinter.IntVar()
rbValue.set(3)

radio1 = tkinter.Radiobutton(optionFrame, text='Filename', value=1, variable=rbValue)
radio2 = tkinter.Radiobutton(optionFrame, text='Path', value=2, variable=rbValue)
radio3 = tkinter.Radiobutton(optionFrame, text='Timestamp', value=3, variable=rbValue)

radio1.grid(row=0, column=0, sticky='w')
radio2.grid(row=1, column=0, sticky='w')
radio3.grid(row=2, column=0, sticky='w')

mainWindow.mainloop()

A graphics-based operating system interface that uses icons, menus and a mouse (to click on the icon or pull down the menus) to manage interaction with the system. Developed by Xerox, the GUI was popularized by the Apple Macintosh in the 1980s. At the time, Microsoft’s operating system, MS-DOS, required the user to type specific commands, but the company’s GUI, Microsoft Windows, is now the dominant user interface for personal computers (PCs). A comprehensive GUI environment includes four components: a graphics library, a user interface toolkit, a user interface style guide and consistent applications. The graphics library provides a high-level graphics programming interface. The user interface toolkit, built on top of the graphics library, provides application programs with mechanisms for creating and managing the dialogue elements of the windows, icons, menus, pointers and scroll bars (WIMPS) interface. The user interface style guide specifies how applications should employ the dialogue elements to present a consistent, easy-to-use environment (i.e., “look and feel”) to the user. Application program conformance with a single user interface style is the primary determinant of ease of learning and use, and thus, of application effectiveness and user productivity.

Looks cute too and makes you want to click the poetry of graphics