THE WIZARD


  • About me
  • Bladesmithing
  • Design
  • Writing

  • Tissue engineering
  • Manufacturing
  • Laboratory automation
  • Art
  • Store
  • Offensive and defense weapon systems
  • Biomechanical Cybergenetics
  • Architecture
  • Games
  • Fashion
  • Nanotechnology
  • Satellites
  • Bio-Chips/Microchips
  • Ai modeling super clusters1
  • Software Portfolio
  • Autonomous vehicle and drone design
  • Ai
  • Contact Information

Software Portfolio



Software Portfolio of projects.
Machine learning projects.
Programming languages I use the most so far all it seems very much the same thing to me now and the language doesn't matter python, SQL, javascript.


I would say I am at a basic to soon competent level I just need more time to learn.



Real time Face Emotion Recognition project.

Ganns

Gpt
Python Guis
Web browser development
Search engine development

Extensions and Ui overlays

Discord applications, bots, games.

Pixel GBA like games. I probably will create low cost hand held systems.


I have a strong Interest in design copilot like coding tools and hardware systems





Website design I like the idea and concept of digital gardens in a world of increasingly monetized collection of personal data being able to have youre own personal social media profile in the form of a highly personal website.



Basic Python screenshot tutorial



Python screen script tool and Documentation to install



import pyautogui

import tkinter as tkfrom tkinter.filedialog import *

root = tk.Tk() canvas1 = tk.Canvas(root, width = 300, height = 300)

canvas1.pack()

def takeScreenshot ():

myScreenshot = pyautogui.screenshot()

save_path = asksaveasfilename() myScreenshot.save(save_path+"_screenshot.GIF")

myButton=tk.Button(text="Take_Screenshot",command=takeScreenshot,font=10) canvas1.create_window(150,150,window=myButton) root.mainloop()