Skip to content

Instantly share code, notes, and snippets.

View nguyen0096's full-sized avatar
๐Ÿ”
Actively looking for job

Nguyen DN nguyen0096

๐Ÿ”
Actively looking for job
  • Persefoni
  • Viet Nam
  • 07:36 (UTC +07:00)
View GitHub Profile
@nguyen0096
nguyen0096 / having-multiple-jdk-macos.md
Created August 14, 2025 13:04 — forked from gramcha/having-multiple-jdk-macos.md
Managing multiple Java versions in MacOS

Installing different versions of open jdk through Homebrew(assuming already installed) and already having Java 8.

We need to install a tool called jenv - Java version manager which is similar to nvm(nodeJs version manager).

brew install jenv

Export the jenv path to .bash_profile or .zshrc - whatever you are using. I am using .zshrc

@nguyen0096
nguyen0096 / latest-protobuf-ubuntu-18-04.md
Created January 17, 2021 04:09 — forked from diegopacheco/latest-protobuf-ubuntu-18-04.md
How to Install Latest Protobuf on Ubuntu 18.04
sudo apt-get install autoconf automake libtool curl make g++ unzip -y
git clone https://github.com/google/protobuf.git
cd protobuf
git submodule update --init --recursive
./autogen.sh
make
make check
sudo make install
sudo ldconfig