This script has been moved to a full GitHub repository: milkey-mouse/backup-vm
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
| diff --git a/proc/numa.h b/proc/numa.h | |
| index c198d9d..1b2b4eb 100644 | |
| --- a/proc/numa.h | |
| +++ b/proc/numa.h | |
| @@ -22,7 +22,9 @@ | |
| #include <features.h> | |
| -__BEGIN_DECLS | |
| +#ifdef __cplusplus |
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
| diff -ruN compiler-rt-6.0.0.src/lib/asan/asan_linux.cc compiler-rt-6.0.0.src-musl/lib/asan/asan_linux.cc | |
| --- compiler-rt-6.0.0.src/lib/asan/asan_linux.cc 2018-02-07 20:51:13.000000000 +0100 | |
| +++ compiler-rt-6.0.0.src-musl/lib/asan/asan_linux.cc 2018-03-20 11:57:12.381740075 +0100 | |
| @@ -46,7 +46,7 @@ | |
| #include <link.h> | |
| #endif | |
| -#if SANITIZER_ANDROID || SANITIZER_FREEBSD || SANITIZER_SOLARIS | |
| +#if SANITIZER_ANDROID || SANITIZER_FREEBSD || SANITIZER_SOLARIS || SANITIZER_NONGNU | |
| #include <ucontext.h> |
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
| # Makefile for musl-clang crt's | |
| all: | |
| clang -fPIC -c crtbegin.c -o /usr/lib/crtbegin.o | |
| ln -s /usr/lib/crtbegin.o /usr/lib/crtbeginS.o | |
| ln -s /usr/lib/crtbegin.o /usr/lib/crtbeginT.o | |
| clang -fPIC -c crtend.c -o /usr/lib/crtend.o | |
| ln -s /usr/lib/crtend.o /usr/lib/crtendS.o | |
| ln -s /usr/lib/crtend.o /usr/lib/crtendT.o | |
| clean: |
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
| $ ./gradlew build --stacktrace | |
| Incremental java compilation is an incubating feature. | |
| Skipping debug jar:microg-ui-tools:preBuild UP-TO-DATE | |
| :microg-ui-tools:preDebugBuild UP-TO-DATE | |
| :microg-ui-tools:checkDebugManifest | |
| :microg-ui-tools:preDebugAndroidTestBuild UP-TO-DATE | |
| :microg-ui-tools:preDebugUnitTestBuild UP-TO-DATE | |
| :microg-ui-tools:preReleaseBuild UP-TO-DATE | |
| :microg-ui-tools:preReleaseUnitTestBuild UP-TO-DATE | |
| :microg-ui-tools:prepareComAndroidSupportAnimatedVectorDrawable2531Library |
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
| #!/bin/bash | |
| set -euo pipefail | |
| TMPDIR="" | |
| function cleanup { | |
| [[ ! -z $TMPDIR ]] && rm -r "$TMPDIR" | |
| } | |
| trap cleanup EXIT |
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
| START 34.38152 39.70302 | |
| MOVE 34.38152 39.70302 | |
| MOVE 34.37993 39.70004 | |
| MOVE 34.37515 39.69118 | |
| MOVE 34.36719 39.67657 | |
| MOVE 34.35603 39.65633 | |
| MOVE 34.34169 39.63058 | |
| MOVE 34.32415 39.59944 | |
| MOVE 34.30342 39.56303 | |
| MOVE 34.27949 39.52149 |
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
| Index: server_http.c | |
| =================================================================== | |
| RCS file: /cvs/src/usr.sbin/httpd/server_http.c,v | |
| retrieving revision 1.117 | |
| diff -u -p -r1.117 server_http.c | |
| --- server_http.c 15 May 2017 10:40:47 -0000 1.117 | |
| +++ server_http.c 18 Jul 2017 02:51:19 -0000 | |
| @@ -1388,7 +1388,8 @@ server_response_http(struct client *clt, | |
| /* Set media type */ |
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
| from xml.dom.minidom import parse, parseString | |
| fp = r"C:\Program Files (x86)\Steam\SteamApps\common\Besiege\Besiege_Data\SavedMachines\binch.bsg" | |
| dom = parse(fp) | |
| nummemes = 0 | |
| for block in dom.getElementsByTagName("Block"): | |
| if block.attributes["id"].value == "59": |
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
| form_consts = { | |
| "ice": { | |
| "temp": 0.0, | |
| "c": 2.06, | |
| "water": 334.0 | |
| }, | |
| "water": { | |
| "temp": 100.0, | |
| "c": 4.184, | |
| "ice": -334.0, |
NewerOlder