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
<!doctype html> | |
<html> | |
<head> | |
<script src="https://d3js.org/d3.v5.min.js"></script> | |
</head> | |
<body> | |
<svg width="600" height="400" style="background: #ccc" font-family="sans-serif" font-size="10" text-anchor="middle"></svg> | |
<script> | |
const width = 600, height = 400; |
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/sh -eu | |
. shell-error | |
. shell-signal | |
PROG_VERSION=1.0 | |
show_help() | |
{ | |
cat <<-EOF |
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 -u | |
# Released into the Public Domain. | |
# | |
# Original implementation in C by Brad Conte ([email protected]) <https://github.com/B-Con/crypto-algorithms> | |
# Ported to Bash (lol) by Josh Junon ([email protected]) <https://github.com/qix-> | |
# | |
# Original gist is https://gist.github.com/Qix-/affef08b50686e54e1f2ca18f97a6ff7 | |
# Removed external utilities. | |
# |
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/vendor/github.com/docker/distribution/registry/storage/driver/swift/swift.go b/vendor/github.com/docker/distribution/registry/storage/driver/swift/swift.go | |
index 4b7aa4e9f2..27f15bfd25 100644 | |
--- a/vendor/github.com/docker/distribution/registry/storage/driver/swift/swift.go | |
+++ b/vendor/github.com/docker/distribution/registry/storage/driver/swift/swift.go | |
@@ -31,6 +31,7 @@ import ( | |
"strings" | |
"time" | |
+ "github.com/coreos/go-semver/semver" | |
"github.com/mitchellh/mapstructure" |
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
14:58.76 gmake[4]: Leaving directory '/usr/src/RPM/BUILD/firefox-61.0/mozilla/objdir/media/webrtc/trunk/webrtc/modules/desktop_capture/desktop_capture_gn' | |
14:59.34 error: linking with `/usr/src/RPM/BUILD/firefox-61.0/mozilla/build/cargo-linker` failed: exit code: 1 | |
14:59.34 | | |
14:59.34 = note: "/usr/src/RPM/BUILD/firefox-61.0/mozilla/build/cargo-linker" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/usr/lib64/rustlib/x86_64-unknown-linux-gnu/lib" "/usr/src/RPM/BUILD/firefox-61.0/mozilla/objdir/toolkit/library/release/build/style-cfd05dae3d00f247/build_script_build-cfd05dae3d00f247.build_script_build0.rcgu.o" "-o" "/usr/src/RPM/BUILD/firefox-61.0/mozilla/objdir/toolkit/library/release/build/style-cfd05dae3d00f247/build_script_build-cfd05dae3d00f247" "/usr/src/RPM/BUILD/firefox-61.0/mozilla/objdir/toolkit/library/release/build/style-cfd05dae3d00f247/build_script_build-cfd05dae3d00f247.crate.allocator.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-z,relro,-z,now" "-Wl,-O1" "-nodefaultlibs" "-L" "/usr/src/RPM/ |
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/sh | |
gettimeofday() { | |
date '+%s%N' | |
} | |
bash_timing() { | |
local LANG=C rc=$? | |
if [ "$BASH_COMMAND" == "$PROMPT_COMMAND" ]; then | |
[ -n "${__BASH_TIMING__-}" ] || |
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
#define _GNU_SOURCE | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <sys/un.h> | |
#include <stdio.h> | |
int main(int argc, const char *argv[]) | |
{ | |
int sock_pair[2]; | |
if (socketpair(AF_UNIX, SOCK_SEQPACKET, 0, sock_pair) < 0) { |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <keymap.h> | |
int main(int argc, char **argv) | |
{ | |
lk_table_shape table = LK_SHAPE_DEFAULT; | |
int rc = -1; | |
char numeric = 0; |
NewerOlder