Skip to content

Instantly share code, notes, and snippets.

View bdazl's full-sized avatar
🖥️

Jacob Peyron bdazl

🖥️
View GitHub Profile
@bdazl
bdazl / gist:2ad3858561a95499e24f843668e844bd
Last active May 3, 2018 11:11 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream https://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git

3. Updating your fork from original repo to keep up with their changes:

@bdazl
bdazl / balloontip.py
Created March 20, 2018 10:17 — forked from wontoncc/balloontip.py
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: