Skip to content

Instantly share code, notes, and snippets.

// ==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==

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