Skip to content

Instantly share code, notes, and snippets.

View Drift91's full-sized avatar

Kyle J. McKeown Drift91

  • Ontario, Canada
  • 07:23 (UTC -04:00)
  • X @Drift_91
View GitHub Profile
@stucka
stucka / pipreplace.sh
Last active November 23, 2022 02:50
Force pip to reinstall all Python packages (works great with https://gist.github.com/stucka/0ced1cc71e1a5c374a18874471636d69)
#!/bin/bash
apt-get install libxml2-dev libssl-dev libffi-dev libxslt1-dev python-dev libjpeg-dev
pip freeze --local >pipfreeze.txt
tr '\n' ' ' < pipfreeze.txt >pipfreeze2.txt
pip install --upgrade --force-reinstall `cat pipfreeze2.txt`
@chadgroom
chadgroom / connatix_video_downloader.py
Last active July 2, 2024 08:13
Connatix Video Player Downloader [https://www.connatix.com/] - Made a quick downloader for a personal task and decided to upload it as some others may find it useful, enjoy!
#!/usr/bin/env python3
from seleniumwire import webdriver
import requests
from os import path, getcwd, startfile, name
from time import sleep
# from sys import argv
# CHAD GROOM - 2020
# **INTENDED FOR LEGAL PURPOSES**
@rstewa
rstewa / Controller_Overclock_Guide_with_Secure_Boot_Enabled.md
Last active March 21, 2025 08:12
Controller (DS4, Duelsense, Xbox, etc.) Overclock Guide with Secure Boot ON/ENABLED via LordOfMice/Hidusbf

Controller (DS4, Duelsense, Xbox, etc.) Overclock Guide with Secure Boot ON via LordOfMice/Hidusbf for Windows 10/11

Guide created by rstewa35

Update 12/14/24

Removed the registry steps since the drivers are now signed. This should allow you to use hidusbf without affecting secure boot. If you still want to see them, look at the previous revision of this guide.

Warning