This file contains hidden or 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
| #!/bin/bash | |
| PAGE_URL="https://www.bitwig.com/previous_releases/" | |
| # Fetch page HTML | |
| HTML=$(curl -sS "$PAGE_URL") | |
| # Extract the first version number from <th> | |
| VERSION=$(echo "$HTML" | grep -oE '<th>[0-9.]+</th>' | sed 's/<\/\?th>//g' | head -1) |
This file contains hidden or 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 Outfitting Search Multi-Column Sort | Inara.cz Elite Dangerous | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-05-07 | |
| // @description Adds multi-column sorting to the Outfitting Search page on Inara.cz | |
| // @author JamesDBartlett3 | |
| // @match https://inara.cz/elite/nearest-outfitting/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=inara.cz | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or 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" ?> | |
| <Root PresetName="Jules Vector" MajorVersion="4" MinorVersion="2"> | |
| <KeyboardLayout>en-US</KeyboardLayout> | |
| <MouseXMode Value="" /> | |
| <MouseXDecay Value="0" /> | |
| <MouseYMode Value="" /> | |
| <MouseYDecay Value="0" /> | |
| <MouseReset> | |
| <Primary Device="{NoDevice}" Key="" /> | |
| <Secondary Device="{NoDevice}" Key="" /> |
This file contains hidden or 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
| /* ==UserStyle== | |
| @name Microsoft Build 2023 - Hide Chat | |
| @version 20230524.16.47 | |
| @namespace ? | |
| ==/UserStyle== */ | |
| @-moz-document domain("build.microsoft.com") { | |
| #studioplayer-container > div > div.home-page__live-stream--content__video { | |
| width: 100%; |
This file contains hidden or 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
| @-moz-document url-prefix("https://radacad.6connex.com/event/") { | |
| .related-content .self-content .screen-container { | |
| width: 100% !important; | |
| min-height: 600px !important; | |
| max-height: 1024px !important; | |
| margin-bottom: 6px !important; | |
| height: 100% !important; | |
| } |
This file contains hidden or 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
| # WARNING: NON-WORKING CODE - DO NOT USE IN PRODUCTION! | |
| #TODO: Implement $AppName & $MainWindowHandle parameters | |
| function Set-WindowState { | |
| <# | |
| .SYNOPSIS | |
| Set a given window state using WinAPI. | |
| .DESCRIPTION | |
| Use the ShowWindowAsync function to set the Window state for |
This file contains hidden or 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
| # To download and install, run this command in PowerShell: | |
| # PowerShell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/JamesDBartlett3/40d4459e39402cbc30a73731e310a27c/raw/'))" | |
| #Install WinGet | |
| #Based on this gist: https://gist.github.com/Codebytes/29bf18015f6e93fca9421df73c6e512c | |
| $hasPackageManager = Get-AppPackage -name 'Microsoft.DesktopAppInstaller' | |
| if (!$hasPackageManager -or [version]$hasPackageManager.Version -lt [version]"1.10.0.0") { | |
| "Installing winget Dependencies" | |
| Add-AppxPackage -Path 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx' |
This file contains hidden or 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"?> | |
| <root> | |
| <version major="2" minor="19" revision="2" build="0" /> | |
| <OfficeMouse Enable="false" /> | |
| <Layers Number="3" /> | |
| <Cursor Allow="true" Speed="6" CS1="6" CS2="7" CS3="10" CS4="2" ChangeLayer="true" ChangeChord="1" ChangeHeld="1" EnhancePointerPrecision="1" /> | |
| <Logging Disable="false" Thread="false" /> | |
| <RazorMouse DoubleClickFix="false" /> | |
| <ScrollWheel ScrollWindowUnderCursor="true" /> | |
| <ScrollLock BypassAll="true" BypassDisabled="false" /> |
This file contains hidden or 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
| <# | |
| Custom PowerShell Functions and Aliases | |
| Author: @JamesDBartlett3 | |
| #> | |
| ################################################################################################## | |
| <# | |
| Stop-ProcessName | |
| Alias: spn | |
| Example 1: Stop-ProcessName explorer |
NewerOlder