Skip to content

Instantly share code, notes, and snippets.

@EnderRobber101
EnderRobber101 / docker.md
Created March 23, 2025 19:54 — forked from FreddieOliveira/docker.md
This tutorial shows how to run docker natively on Android, without VMs and chroot.

Docker on Android πŸ‹πŸ“±

Edit πŸŽ‰

All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.


Summary

@EnderRobber101
EnderRobber101 / Jellyfin-api-auth-example.py
Created February 28, 2025 23:50 — forked from mcarlton00/Jellyfin-api-auth-example.py
Example for authenticating to Jellyfin API from Python
import requests
# Define connection details
server_url = 'http://192.168.0.200:8096'
username = 'User'
password = 'Password'
# Build json payload with auth data
auth_data = {
'username': username,
@EnderRobber101
EnderRobber101 / mathtool.py
Created February 12, 2025 04:27
ti-84 python simplify radical
def simplify_radical():
index = int(input("Enter index: "))
radicand = int(input("Enter radicand: "))
if index <= 1 or radicand <= 0 : # Handle invalid input
return "Invalid input. Index must be greater than 1 and radicand must be positive."
coefficient = 1
simplified_radicand = radicand
@EnderRobber101
EnderRobber101 / script.sh
Created December 24, 2024 21:02
#include <bits/stdc++.h> working on mac (M1, M2, ect)
#video in reference https://www.youtube.com/watch?v=LmR8sRcqbq0
echo | g++ -v -x c++ -E -
https://gist.github.com/Einstrasse/ac0fe7d7450621a39364ed3b05cacd11