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
@Data | |
public class DriveConfig { | |
@NotNull | |
private String credentials; | |
@NotNull | |
private String driveId; | |
@NotNull |
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
#!/usr/bin/env bash | |
set -euo pipefail | |
# set -x | |
export LC_ALL=C | |
usage() { | |
cat <<EOF | |
Rename a project. | |
Usage: |
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
#!/usr/bin/env bash | |
set -euo pipefail | |
# Install pre-commit hook | |
if [[ $0 != ".git/hooks/pre-commit" ]]; then | |
cp "$0" .git/hooks/pre-commit | |
fi | |
# Do something ... |
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
#!/usr/bin/env bash | |
set -eu -o pipefail | |
# echo to stderr | |
eecho() { echo "$@" 1>&2; } | |
usage() { | |
cat <<EOF | |
Usage: | |
bash $(basename "$0") <python-version> <requirements-file> |
This file has been truncated, but you can view the full file.
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
2021-05-10T11:45:59.934+0900 [INFO] Terraform version: 0.15.1 | |
2021-05-10T11:45:59.934+0900 [INFO] Go runtime version: go1.16.2 | |
2021-05-10T11:45:59.934+0900 [INFO] CLI args: []string{"/usr/local/Cellar/tfenv/2.0.0/versions/0.15.1/terraform", "plan", "-out", "plan.out"} | |
2021-05-10T11:45:59.934+0900 [TRACE] Stdout is a terminal of width 216 | |
2021-05-10T11:45:59.934+0900 [TRACE] Stderr is a terminal of width 216 | |
2021-05-10T11:45:59.934+0900 [TRACE] Stdin is a terminal | |
2021-05-10T11:45:59.934+0900 [DEBUG] Attempting to open CLI config file: /Users/tozawa/.terraformrc | |
2021-05-10T11:45:59.934+0900 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2021-05-10T11:45:59.935+0900 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins | |
2021-05-10T11:45:59.935+0900 [DEBUG] ignoring non-existing provider search directory /Users/tozawa/.terraform.d/plugins |
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
chpwd() { | |
ls_abbrev | |
} | |
ls_abbrev() { | |
# -a : Do not ignore entries starting with .. | |
# -C : Force multi-column output. | |
# -F : Append indicator (one of */=>@|) to entries. | |
local cmd_ls='ls' | |
local -a opt_ls | |
opt_ls=('-aCF' '--color=always') |
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
diff --git a/screen-write.c b/screen-write.c | |
index 2b7fba0..5cd1a48 100644 | |
--- a/screen-write.c | |
+++ b/screen-write.c | |
@@ -1052,6 +1052,7 @@ screen_write_cell(struct screen_write_ctx *ctx, const struct grid_cell *gc) | |
* If the width is zero, combine onto the previous character, if | |
* there is space. | |
*/ | |
+ /* | |
if (width == 0) { |
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
require 'frisky/ssdp' | |
require 'httpclient' | |
require 'nokogiri' | |
require 'json' | |
require 'bindata' | |
require 'benchmark' | |
require 'logger' | |
require 'byebug' | |
module Logging |
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
#!/bin/bash | |
set -u | |
export LANG="C" | |
function usage() { | |
cat <<EOT | |
Usage: bash ${0##*/} <interface-name> | |
EOT | |
} |
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
#!/bin/bash | |
set -u | |
export LANG="C" | |
function usage() { | |
cat <<EOT | |
Usage: bash ${0##*/} <interface-name> | |
EOT | |
} |
NewerOlder