Skip to content

Instantly share code, notes, and snippets.

View zillydev's full-sized avatar

Zilly zillydev

View GitHub Profile
@zillydev
zillydev / Daily driver software.md
Last active November 1, 2025 04:46
Daily driver software.md

Windows:

  • ClipboardFusion - clipboard manager.
  • Desktop Switcher - super convenient AHK script that copies the instant window switches using Alt+Tab behaviour over to instant virtual desktop switches using Capslock+Tab (I've personally changed the shortcut to Windows+Tab)
  • Directory Opus - superior file manager in every way. blazing fast, supports tabs, multi-panes, custom context menus, custom scripts, custom navigation shortcuts, almost EVERYTHING about it is customizable. this youtube video sold me and I haven't looked back since.
  • EarTrumpet - enhances the volume menu. open-source
  • File Converter - what it says, but super lightweight and handy, and handles pretty much every mainstream file type. open-source
  • [FlowLauncher](https://githu
@zillydev
zillydev / Session 1 notes.md
Last active June 28, 2024 14:20
Session 1 notes.md
  • screen = pygame.display.set_mode((width, height))
    • This function creates a window surface of a specified size.
    • It takes a tuple as a paramater, which must have the values for the width and height of the window.
    • We store this surface in the screen variable for future use.
    • The window screen is a basically a grid of pixels, onto which we can draw objects using the standard coordinate system of x-axis and y-axis and xy-coordinates.
  • pygame.display.set_caption('SST')
    • Sets the title of the window.
  • while True:
    • An infinite while loop is required because the game needs to constantly fetch inputs, process game logic, and output it on the screen.
  • for event in pygame.event.get():