Skip to content

Instantly share code, notes, and snippets.

@ongkiii
ongkiii / IPA-Sources.md
Last active December 11, 2025 19:41
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
// ==UserScript==
// @name Open Instagram App
// @version 1.4.1
// @author ryuya
// @match *://*.instagram.com/*
// @downloadURL https://gist.github.com/ryuya0124/79fad15aa00e536cac7cae2bad6283c6/raw/Open%2520Instagram%2520App.user.js
// @updateURL https://gist.github.com/ryuya0124/79fad15aa00e536cac7cae2bad6283c6/raw/Open%2520Instagram%2520App.user.js
// @homepage https://gist.github.com/ryuya0124/79fad15aa00e536cac7cae2bad6283c6
// ==/UserScript==
// ==UserScript==
// @name Open X(Twitter) App
// @version 1.1.1
// @author ryuya
// @match https://x.com/*
// @downloadURL https://gist.github.com/ryuya0124/e6e59ceba8f03bf40f3b5accedc52e44/raw/Open%2520X(Twitter)%2520App.user.js
// @updateURL https://gist.github.com/ryuya0124/e6e59ceba8f03bf40f3b5accedc52e44/raw/Open%2520X(Twitter)%2520App.user.js
// @homepage https://gist.github.com/ryuya0124/e6e59ceba8f03bf40f3b5accedc52e44
// ==/UserScript==
@Aldaviva
Aldaviva / wmp_h.265_hevc.md
Last active November 26, 2025 20:40
Play H.265/HEVC videos in Windows Media Player (Classic) without a third-party codec pack or media player. Tested using Microsoft.HEVCVideoExtension_2.0.60091.0_x64__8wekyb3d8bbwe with WMP 12.0.20348.1311 on Windows Server 2022 21H2 and 12.0.22621.1105 on Windows 11 22H2.

Download

  1. Go to https://store.rg-adguard.net.
  2. Search for the HEVC Video Extensions from Device Manufacturer (Microsoft.HEVCVideoExtension) app by entering the following store URL into the search box and clicking the button.
    https://www.microsoft.com/en-us/p/hevc-video-extensions-from-device-manufacturer/9n4wgh0z6vhq
    
    • Do not use the normal HEVC Video Extensions app URL, because that can't play HEVC videos in Windows Media Player for some inscrutable reason.
  3. Download the AppxBundle file.
    • You may have to right click › Save Link As because the URL scheme is http, not https, if your browser is set to enforce HTTPS-only mode.
  • If it tries to save as a filename that's just a GUID, you may copy the correct .AppxBundle filename and save it as that instead.

How to install Homebrew package manager on Steam Deck

(See also installing Distroboxm, which is included in SteamOS 3.5 and newer: https://distrobox.it/ )
(See also installing Nix package manager: https://determinate.systems/posts/nix-on-the-steam-deck )

You can install Homebrew (a package manager for macOS and Linux) without disabling the read-only partition with sudo steamos-readonly disable.
The package manager can be used alongside Flatpaks. Some software is only available on Flathub, and some software is only available on Homebrew.

  1. Switch to desktop mode (hold power button until a menu appears, then select "Switch to desktop mode")
  2. Click the logo at the bottom left, go to System, then go to Konsole
@CannonballSkippy
CannonballSkippy / Video-and-Subtitle-merger-batch-for-mkvmerge.bat
Created May 15, 2017 13:27
This is a batch script that will merge subtitles with a video file, resulting in an *.mkv file with internal subtitles.
@echo off
echo ----------------------------------------------------------------------
echo VIDEO AND SUBTITLE MERGER
echo version 1.0.0 by Seyoum
echo ----------------------------------------------------------------------
:: Set file video extention
:VIDEOFILEEXTENTION
echo.
set /p videofileformat=Enter the video file type extension (e.g mp4):
if /I "%videofileformat%" EQU "webm" echo You have chosen %videofileformat% as your video file format&goto:SUBTITLEFILEEXTENTION