Skip to content

Instantly share code, notes, and snippets.

View dvarlamov's full-sized avatar

Dmitrii Varlamov dvarlamov

  • Novi Sad, Serbia
View GitHub Profile
@zabiralov
zabiralov / ansible_2.9_with_mitogen.txt
Last active May 5, 2024 13:30
Ansible mitogen install
0. Strongly need CPython 3.7 (Only this version)
1. Create venv
python3.7 -m venv ansible29
2. Activate venv
cd ansible29 && source bin/activate
@FreddieOliveira
FreddieOliveira / docker.md
Last active March 16, 2026 21:17
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

@jeanlouisferey
jeanlouisferey / LXD_SSH_KEY.md
Last active August 26, 2024 23:53
How to create a LXD Container with your ssh key in it (and with ssh server in the container)
@devisnotnull
devisnotnull / installing_kubernetes_on_proxox.md
Last active October 30, 2024 20:25
Installing Kubernetes on Proxox, Herzner

Installing Kubernetes on Proxox

For this example i shall be using a dedicated server from Hertzner.https://www.hetzner.de/en/. A shout out to hetzner if your looking for cheap and beefy dedicated hosting then these guys are your best bet.

Setting up the Hertzer server

This guide assumes your server has Debian 8 (Jessie installed)

Config when tested

@lavaxun
lavaxun / README.md
Last active February 18, 2018 00:22 — forked from vincent99/README.md
Rancher on docker-for-mac with xhyve

Install Docker for Mac (http://beta.docker.com)

Install docker-machine-driver-xhyve (https://github.com/zchee/docker-machine-driver-xhyve)

brew install docker-machine-driver-xhyve
sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve

Deploy the latest release

@gaelcolas
gaelcolas / new_unattend_iso.ps1
Created July 9, 2016 21:45
create ISO with my Unattend.xml file
. '.\TestKitchen\script\IsoFile.ps1'
#create ISO with my Unattend.xml file
New-IsoFile -Source .\TestKitchen\Unattend.xml -Path .\TestKitchen\Unattendxml.iso -Force -Title MyISO
@vincent99
vincent99 / README.md
Created May 24, 2016 18:57
Rancher on docker-for-mac with xhyve

Install Docker for Mac (http://beta.docker.com)

Install docker-machine-driver-xhyve (https://github.com/zchee/docker-machine-driver-xhyve)

brew install docker-machine-driver-xhyve sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve

Deploy the latest release

docker run -d --privileged -p 8080:8080 --name=rancher-server rancher/server:latest

or a build-master

@consolewitch
consolewitch / disableRoaming.command
Last active January 15, 2016 08:14
OSX GUI executable script to fix CVE-2016-0777 vulnerability
#!/bin/bash
echo ==========================================================================
echo This will disable openSSH roaming for your user
echo ==========================================================================
echo
ssh -v -T -o StrictHostKeyChecking=no git@github.com 2>&1 | grep Roaming
if [ $? == '0' ]
then
cat <<EOM >>~/.ssh/config
#
@jeffskinnerbox
jeffskinnerbox / apprise.sh
Created September 15, 2015 14:39
This utility does a push notification to the service Pushover - https://pushover.net/
#!/bin/bash
# This utility does a push notification to the service Pushover - https://pushover.net/
APPTOKEN="aegfmQiK9Krrigwmir4fgnoodw8w"
USERKEY="ufwidfifFYQHyggjdpdgeGfehdfpg"
# Parse command line options
USAGE="Usage: `basename $0` [-h] -t title -m message"
while getopts ht:m: OPT; do
@UnderGreen
UnderGreen / installation.rst
Last active October 29, 2020 12:52 — forked from marcinkuzminski/installation.rst
Installation instruction for Kallithea

Setting up Kallithea on Ubuntu Server 12.04

Preparation

  1. Install Ubuntu Server.
  2. Update Ubuntu with the commands: