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
date time [thread name/id ] file:line v | | |
2024-06-06 22:27:09 [MainThread ] Log.cpp:285 INFO| Opened log file Hades II.log | |
2024-06-06 22:27:09 [MainThread ] Program.cpp:2142 INFO| Previous stack guard size was 0 bytes | |
2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /c | |
2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: ../ | |
2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /steampowered | |
2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /VerboseScriptLogging=false | |
2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /DebugKeysEnabled=false | |
2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /UnsafeDebugKeysEnabled=false | |
2024-06-06 22:27:09 [MainThread ] OptionSet.cpp:157 INFO| argument: /LiveCreateTextures=false |
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 | |
# How to use: | |
# Store this file as .git/hooks/pre-commit and make it executable | |
# Or, to share the hook with your team, store as .githooks/pre-commit, | |
# make this file executable and run: | |
# git config core.hooksPath .githooks | |
# A pre-commit hook for go projects. In addition to the standard |
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 | |
# tardiff tar1.tar.gz tar2.tar.gz | |
diff -q <(tar -xOvzf $1 | rev | cut -d\/ -f1 | rev) <(tar -xOvzf $2 | rev | cut -d\/ -f1 | rev) |
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
package config | |
import ( | |
"errors" | |
"fmt" | |
"os" | |
"reflect" | |
"strconv" | |
"strings" |
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
package config | |
import ( | |
"errors" | |
"fmt" | |
"log" | |
"net/url" | |
"os" | |
"strings" | |
"sync" |
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
package form | |
import ( | |
"io" | |
"net/url" | |
"strings" | |
"github.com/lestrrat-go/jwx/jwt" | |
) |
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
package client | |
import ( | |
"sync" | |
"github.com/go-resty/resty/v2" | |
) | |
var ( | |
factoryOnce sync.Once |
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
FROM golang:latest AS builder | |
##### Only for PRIVATE git repositories ##### | |
# required credentials for go package repositories | |
# bitbucket user and token MUST be either URL encoded or only contain alphanumeric characters. | |
# Kaniko --build-arg ${item.key}=${item.value} " | |
#ARG BITBUCKET_USER | |
#ARG BITBUCKET_TOKEN | |
#ARG BITBUCKET_DOMAIN |
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
global: | |
imageRegistry: docker.io | |
imagePullSecrets: [] | |
image: | |
repository: bitnami/keycloak | |
tag: 18.0.1-debian-11-r2 | |
auth: | |
adminUser: admin |
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
global: | |
postgresql: | |
auth: | |
postgresPassword: "postgres" | |
username: "user" | |
password: "password" | |
database: "database" | |
image: |
NewerOlder