Skip to content

Instantly share code, notes, and snippets.

View out0fmemory's full-sized avatar
💭
I may be slow to respond.

out0fmemory out0fmemory

💭
I may be slow to respond.
  • Earth Of Course
View GitHub Profile

features

  • working macvlan with docker
  • systemd network devices
  • each container can reach the whole nework (full routing)
  • docker-compose.yml example with static ipv4 on macvlan
  • if no ip defined, container get a ip within 192.168.155.192/27
@out0fmemory
out0fmemory / starUML.md
Created April 4, 2018 07:54 — forked from trandaison/starUML.md
Get full version of StarUML

StarUML

Download: StarUML.io

Crack

Source: jorgeancal

After installing StartUML successfully, modify LicenseManagerDomain.js as follow:

/**
@out0fmemory
out0fmemory / git-mv-with-history
Created October 19, 2016 00:53 — forked from emiller/git-mv-with-history
git utility to move/rename file or folder and retain history with it.
#!/bin/bash
#
# git-mv-with-history -- move/rename file or folder, with history.
#
# Moving a file in git doesn't track history, so the purpose of this
# utility is best explained from the kernel wiki:
#
# Git has a rename command git mv, but that is just for convenience.
# The effect is indistinguishable from removing the file and adding another
# with different name and the same content.