Skip to content

Instantly share code, notes, and snippets.

@dimadesu
dimadesu / README.md
Last active February 13, 2026 06:53
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.

@dimadesu
dimadesu / README.md
Last active March 1, 2025 03:56
Unofficial SRT Ingest for Belabox

Unofficial SRT Ingest for Belabox

Originally, I started it as Git Gist and later converted it into Git repo as it should probably be easier to find it and suggest changes.

Background

As of now (February 2025) Belabox doesn't have an SRT ingest, only RTMP one.

I read on the Belabox Discord server that the reason for this is that a version of GStreamer library that Belabox uses has a broken SRT ingest.

@dimadesu
dimadesu / .bashrc
Created August 3, 2017 22:37
Start SSH-agent (for Git) on shell start and share the same connection for new instances. (Copy-pasted somewhere, works like a charm)
#
# This should only prompt for a password the first time you login after each reboot. It will keep reusing the ssh-agent as long as it stays running.
#
if [ ! -S ~/.ssh/ssh_auth_sock ]; then
eval `ssh-agent`
ln -sf "$SSH_AUTH_SOCK" ~/.ssh/ssh_auth_sock
fi
export SSH_AUTH_SOCK=~/.ssh/ssh_auth_sock
ssh-add -l | grep "The agent has no identities" && ssh-add