Skip to content

Instantly share code, notes, and snippets.

@rafaeltuelho
rafaeltuelho / jvm-useful-arguments.md
Last active May 21, 2018 11:57
Useful JVM command line arguments (gc logging)
  • used to start a Standalone EAP instance:
/usr/lib/jvm/java/bin/java -D[Standalone] -server \
-verbose:gc \
-Xloggc:$EAP_HOME/standalone/log/gc_%p_%t.log \
-XX:+PrintGCDetails \
-XX:+PrintGCDateStamps \
@asukakenji
asukakenji / 0-go-os-arch.md
Last active July 11, 2025 08:25
Go (Golang) GOOS and GOARCH

Go (Golang) GOOS and GOARCH

All of the following information is based on go version go1.17.1 darwin/amd64.

GOOS Values

GOOS Out of the Box
aix
android
@moeinxyz
moeinxyz / README.md
Last active May 12, 2025 13:31
Integrate SDKMAN and Direnv

Direnv and SDKMAN integration

Motivation

In a time when you work on multiple projects with different development environments (mostly in JVM ecosystem), It's hard and repetitive work to change your env or java version, etc. I found the integration between sdkman and direnv as a solution for myself.

Requirments

  • Install sdkman SDKMAN! is a tool for managing parallel versions of multiple Software Development Kits on most Unix based systems.
  • Install direnv direnv is an extension for your shell. It augments existing shells with a new feature that can load and unload environment variables depending on the current directory.