Skip to content

Instantly share code, notes, and snippets.

View K0sh1R1zumu's full-sized avatar
🚩
red flagging

John Benedict Monares K0sh1R1zumu

🚩
red flagging
View GitHub Profile
@MrDMurray
MrDMurray / windfromsounderrors.py
Created February 2, 2019 17:49
winsound errors
import winsound
#List of mistakes I have made using winsound:
########################################################################
# I hear nothing?
########################################################################
winsound.PlaySound("", winsound.SND_FILENAME)
#You hear nothing because you're missing your sound name
@wontoncc
wontoncc / balloontip.py
Last active July 6, 2024 19:59
Balloon tip module, Python, using win32gui.
# -- coding: utf-8 --
from win32api import *
from win32gui import *
import win32con
import sys, os
import struct
import time
class WindowsBalloonTip: