Skip to content

Instantly share code, notes, and snippets.

View inxomnyaa's full-sized avatar
🐺
Working on WolvesFortress MCBE RPG Server

inxomnyaa inxomnyaa

🐺
Working on WolvesFortress MCBE RPG Server
View GitHub Profile
@inxomnyaa
inxomnyaa / better-github-profile-status.css
Last active January 14, 2022 09:59
GitHub better profile status
/* ==UserStyle==
@name GitHub better profile status
@version 1.0.0
@description Puts the status below the profile picture and makes it always show
@namespace GitHub
@author XenialDan
@homepageURL https://gist.github.com/thebigsmileXD/667a5a024be03d4ac788dde9d2cb69d1
@supportURL https://gist.github.com/thebigsmileXD/667a5a024be03d4ac788dde9d2cb69d1
@updateURL https://gist.githubusercontent.com/thebigsmileXD/667a5a024be03d4ac788dde9d2cb69d1/raw/1a78e232ab96ecde110eea0fca5e566331533a2a/better-github-profile-status.css
==/UserStyle== */
@inxomnyaa
inxomnyaa / winget-upgrade-selected.ps1
Last active November 25, 2024 17:46
Upgrade Selected Apps via Winget
# Based on https://www.codewrecks.com/post/general/winget-update-selective/ (gist at https://gist.github.com/alkampfergit/2f662c07df0ca379c8e8e65e588c687b)
# Adds a grid for selecting multiple apps
# Fixes packages with truncated names
# Adds a confirmation dialogue before actually upgrading
class Software {
[string]$Name
[string]$Id
[string]$Version
[string]$AvailableVersion
@inxomnyaa
inxomnyaa / tiktok-live-autohotkey.ahk
Last active April 3, 2025 23:35
Automatic Scene Switcher for TikTok LIVE Studio (AHK & shortcuts)
#Persistent
SetTimer, CheckWindows, 100 ; Check frequently for window changes
global lastActiveWindow := ""
CheckWindows:
; Only run when TikTok LIVE Studio is running
if !WinExist("ahk_exe TikTok LIVE Studio.exe")
return