Skip to content

Instantly share code, notes, and snippets.

View kxxt's full-sized avatar
🎯
Focusing

Levi Zim kxxt

🎯
Focusing
View GitHub Profile
@FreddieOliveira
FreddieOliveira / docker.md
Last active March 11, 2026 07:12
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

@jclapis
jclapis / skiasharp_arm64.md
Created February 7, 2020 06:13
Building SkiaSharp on a Raspberry Pi 4B

Recently, I've been playing around with a Raspberry Pi 4B that I just picked up. It's an awesome little device for the price; I'm really impressed with what it can do so far. I'm planning to use it as a driver for a DIY observatory I'm working on. As part of that, I'm writing an application that can remote control my camera and a custom motorized mount for my telescope. I decided to use .NET Core as my framework of choice; I'm a big fan of C# and its ecosystem, and the fact that .NET Core 3.1 works on ARM64 systems (which is what the Pi 4B runs) makes it a no-brainer.

Unfortunately, .NET Core doesn't come with any cross-platform UI frameworks out of the box. I use WPF a lot for Windows projects, but one of its biggest weaknesses is that it isn't supported on anything else. The WPF repo already has a very long thread about this very topic, so it's definitely one that's on a lot of peoples' minds. That be

@connordavison
connordavison / inject.js
Created December 31, 2015 14:06
Inject MathJax into the page (protocol agnostic).
(function () {
var cdn, config;
if (typeof MathJax !== "undefined" && MathJax !== null) {
return;
}
config = document.createElement('script');
config.setAttribute('type', 'text/x-mathjax-config');
config.innerHTML = "MathJax.Hub.Config({\n tex2jax: {inlineMath: [['$','$'], ['\\\\(','\\\\)']]}\n});";