This file contains 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
//http://www.navision-blog.de/blog/2015/12/21/adding-background-tasks-to-suave-io-websites/ | |
let startApp path = | |
let info = ProcessStartInfo(FileName = path) | |
let proc = new System.Diagnostics.Process(StartInfo = info) | |
start proc | |
proc | |
This file contains 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
<domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'> | |
<name>Windows8-OVMF1</name> | |
<uuid>d3d9d84e-3ce4-d77e-9bcc-d1fb5ba85813</uuid> | |
<memory unit='GiB'>8</memory> | |
<memoryBacking> | |
<hugepages/> | |
<locked/> | |
<nosharepages/> | |
</memoryBacking> | |
<memtune> |
This file contains 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
docker rmi $(docker images -q -f dangling=true) |
This file contains 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
To remove a submodule you need to: | |
Delete the relevant line from the .gitmodules file. | |
Delete the relevant section from .git/config. | |
Run git rm --cached path_to_submodule (no trailing slash). | |
Commit and delete the now untracked submodule files. |