Skip to content

Instantly share code, notes, and snippets.

View CodeMouse92's full-sized avatar
Sipping coffee at my local café.

Jason C. McDonald CodeMouse92

Sipping coffee at my local café.
View GitHub Profile
@Kenny2github
Kenny2github / git-del-branches.cmd
Created July 6, 2022 16:31
A git script to batch delete branches by glob pattern.
@echo off
if "%1"=="" (
echo usage: git del-branches ^<glob pattern^>
) else (
for /f "usebackq" %%b in (`git branch --list %1`) do (
git branch -d %%b
)
)
NAME = 'Omission'
import os
from os.path import join
from kivy.utils import platform
if platform == 'win':
from kivy.deps import sdl2, glew
else:
glew = sdl2 = None