Skip to content

Instantly share code, notes, and snippets.

@ivunchata
ivunchata / docker.md
Created March 7, 2023 07:40 — 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

@ivunchata
ivunchata / autokey_clicker.py
Last active September 3, 2017 22:14
AutoKey script that clicks on the current cursor location until invoked for a second time
# AutoKey script that clicks on the current cursor location until invoked for a second time.
# https://github.com/autokey-py3/autokey
# Create the value on the first run of the script
if not store.has_key("run"):
store.set_value("run", 0)
# Flip run flag
store.set_value("run", int(not store.get_value("run")))
tools | options |c/c++ |code assistance | macro definitions
add '__GXX_EXPERIMENTAL_CXX0X__=1'
credit: ctapmex from http://forums.netbeans.org