This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# Finds any application that's stealing window focus and prints its name to the output | |
# Works on Windows 10/11 | |
# Install requirements with: pip install win32gui | |
from win32gui import GetWindowText, GetForegroundWindow | |
import time | |
active_prev = "" | |
while True: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import win32con | |
import win32api | |
import win32gui | |
import time | |
import socket | |
from openrgb import OpenRGBClient | |
from openrgb.utils import DeviceType | |
# While port 6742 is open | |
while True: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name UnSansify Google Search | |
// @namespace http://catto.io/ | |
// @version 1.1 | |
// @description Remove Google Sans font from the search results page | |
// @author Manual | |
// @match www.google.com/* | |
// @match google.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name SS.com improver | |
// @description Makes ss.com bearable | |
// @match *://ss.com/* | |
// @match *://*.ss.com/* | |
// @match *://ss.lv/* | |
// @match *://*.ss.lv/* | |
// ==/UserScript== | |
function deleteElem(elem) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# unlike.py | |
# Delete all likes from your Twitter account | |
# Requires a list of tweet IDs that you should be able to get from your Twitter data backup | |
from time import sleep | |
from timeit import default_timer as timer | |
import requests_oauthlib # install through pip | |
import pdb | |
import logging | |
import json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ACPI</key> | |
<dict> | |
<key>DSDT</key> | |
<dict> | |
<key>AutoMerge</key> | |
<true/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
# Downloads the most recent Archillect picture and sets it as a background. | |
# Get WallpaperChanger from: https://github.com/philhansen/WallpaperChanger/releases | |
import tweepy #https://github.com/tweepy/tweepy | |
import urllib.request | |
import sys | |
import subprocess |