Skip to content

Instantly share code, notes, and snippets.

@dimadesu
dimadesu / README.md
Last active June 12, 2026 23:16
Join alpha testing to allow publishing Android IRL live streaming apps to Google Play store

Join alpha testing to allow publishing Android IRL live streaming apps to Google Play store

Alpha benefits over app versions published via GitHub releases

  • Automatic updates when new versions are released.
  • Smaller file sizes.

Closed testing (aka alpha) registration

I have to manually add email that you use to access Google Play account to a list of testers.

@tejainece
tejainece / vscode_marketplace
Last active August 12, 2026 21:40
Marketplace for VS code to be used in Antigravity
https://marketplace.visualstudio.com/items
https://marketplace.visualstudio.com/_apis/public/gallery
@basso
basso / gist:04cbdc9cad5629f2ae83a941875c4ad5
Last active July 27, 2026 05:32
Bazzite Linux How to force transcode Dolby Digital AC3 5.1 over HDMI ARC
COMPATIBILITY WARNINGS:
LG TV 2017: Outputs loud white noise on occation.
CHANGE NOTES:
22.11.25 Added a systemd unit to send backround noise to pcm to make it keep alive, this will stop audio from cutting on idle
23.11.25 Change default bitrate to be 640kbit, max for HDMI ARC.
24.11.25 Workaround for alsa card changing from 0 to 1, or 1 to 0 on reboots.
24.11.25 Normalize working on systemd units, now its only ac3 and ac3-keepalive
I have managed to get the alsa-plugins-a52 to output over HDMI on bazzite.

Setting Up a Meshtastic Repeater Node (Android App)

Prerequisites

  • Android Device: Running Android 5.0 or higher
  • Meshtastic Device: Powered on with firmware flashed
  • Bluetooth Enabled: To connect to the device
  • Meshtastic App Installed: Download from the Google Play Store

Steps

@nghiepdev
nghiepdev / unfollow-tiktok.js
Last active March 30, 2025 23:20
Unfollow Tiktok
function autoScrollToLastFollower() {
const lastFollower = document.querySelector(
'div[data-e2e="follow-info-popup"]>div:last-child>li:last-child'
);
if (lastFollower) {
lastFollower.scrollIntoView();
} else {
console.info('No follower found. Make sure you are on the following page and opening list of followers.');
}
}

Arch Linux

Install the CachyOS keyring

sudo pacman-key --recv-keys F3B607488DB35A47 --keyserver keyserver.ubuntu.com
sudo pacman-key --lsign-key F3B607488DB35A47

Install required packages:

@safijari
safijari / convert_valve_video.py
Created June 27, 2024 04:46
Sketch ass script to convert the m4s files being saved by the new Steam Game Recording feature into an mp4 file. It also allows "clipping" the last 30 seconds of the most recent active background recording.
import os
import subprocess
from random import sample
from uuid import uuid4
from pathlib import Path
def create_filelist(folder, init_file, file_pattern):
files = sorted([f for f in os.listdir(folder) if f.startswith(file_pattern) and f.endswith('.m4s')])
return [f"{os.path.join(folder, init_file)}"] + [f"{os.path.join(folder, file)}" for file in files]
@ammuench
ammuench / 8BitDoUltimateWifi_Linux.MD
Last active July 25, 2026 07:58
8BitDo Ultimate 2.4GHz wifi working in linux
@wrmack
wrmack / Win11.md
Last active May 13, 2026 02:53
Windows 11 on MacBook M1

Windows 11 on MacBook M1 (ARM)

Steps I went through to install a Windows Insider Preview VHDX on a Macbook Pro using UTM. I needed Windows because I was developing an app to submit to the Microsoft Store. With the following setup I was able to develop an electron-based app and submit it to the Microsoft Store.

  1. Download the VHDX from Windows Insider Previews. You need to register for the Insider Program and sign in.
    • under Select edition select the Canary channel and press Confirm
    • select language and confirm
    • press Download
  2. Open UTM and press + to create a new virtual machine
    • Virtualize
  • Windows

yt-dlp termux full installation guide.md

Prepare

  1. Install Termux from Github: https://github.com/termux/termux-app/releases
  2. Download the apk and install it -> Note that installing termux from Play Store is highly discouraged.

In Termux:

pkg update