Skip to content

Instantly share code, notes, and snippets.

View Drift91's full-sized avatar

Kyle J. McKeown Drift91

  • Ontario, Canada
  • 06:17 (UTC -04:00)
  • X @Drift_91
View GitHub Profile
@rstewa
rstewa / Controller_Overclock_Guide_with_Secure_Boot_Enabled.md
Last active June 18, 2024 04:13
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

Warning

Use the guide at your own risk. Read the warnings/risks HERE.

Step 1

@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**
@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`