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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Moonlight embedded for libreelec | |
# See https://github.com/clarkemw/moonlight-embedded-launcher for installation instructions | |
# See https://github.com/irtimmer/moonlight-embedded/wiki/Usage for command instructions | |
# | |
# Run syntax: | |
# docker run -it -v moonlight-home:/home/moonlight-user \ | |
# -v /var/run/dbus:/var/run/dbus --device /dev/vchiq:/dev/vchiq \ | |
# moonlight [action] (options) [host] | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Serve is a very simple static file server in go | |
Usage: | |
-p="8100": port to serve on | |
-d=".": the directory of static files to host | |
Navigating to http://localhost:8100 will display the index.html or directory | |
listing file. | |
*/ | |
package main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xrandr -s 800x600 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xrandr -s 0 |
Notes by Jeremy W. Sherman, October 2013, based on:
Feathers, Michael. Working Effectively with Legacy Code. Sixth printing, July 2007.
Foreword:
- Software systems degrade into a mess.
- Requirements ALWAYS change.
- Your goal as a software developer: Create designs that tolerate change.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steamcmd +@sSteamCmdForcePlatformType windows +login [userid] [password] +force_install_dir [install_dir] +app_update [steam_app_id] validate +quit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.7) | |
project(SDL2Boilerplate) | |
find_package(SDL2 REQUIRED) | |
include_directories(${SDL2_INCLUDE_DIRS}) | |
add_executable(SDL2Boilerplate main.cpp) | |
target_link_libraries(SDL2Boilerplate ${SDL2_LIBRARIES}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nano /etc/openvpn/server.conf | |
[Add this line to server.conf] crl-verify /etc/openvpn/pki/crl.pem | |
cd /etc/openvpn/ | |
easyrsa revoke [client-name] | |
easyrsa gen-crl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
easyrsa build-client-full [client-name] nopass | |
ovpn_getclient [client-name] > [client-name].ovpn |
NewerOlder