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
########################################################################################################################### | |
# Google Cloud | |
########################################################################################################################### | |
*************************************************************************************************************************** | |
# Google Cloud CLI # gcloud | |
*************************************************************************************************************************** |
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
########################################################################################################################### | |
# touch # cat # tee # tac # sed # echo | |
########################################################################################################################### | |
# mkdir -p "A/B" | |
% touch File.txt | |
% touch "A/B/File.txt" |
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
########################################################################################################################### | |
# Flutter # Dart | |
########################################################################################################################### | |
*************************************************************************************************************************** | |
# Verify zsh was set as the default macOS shell | |
% dscl . -read ~/ UserShell | |
# The command should print the following as its response |
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
########################################################################################################################### | |
# Python # Django | |
########################################################################################################################### | |
*************************************************************************************************************************** | |
# Django | |
*************************************************************************************************************************** |
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
########################################################################################################################### | |
# Ruby on Rails | |
########################################################################################################################### | |
*************************************************************************************************************************** | |
# Ruby on Rails App http 127.0.0.1 3000 | |
*************************************************************************************************************************** |
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
########################################################################################################################### | |
# Podman # Node.js # MongoDB # MinIO | |
########################################################################################################################### | |
*************************************************************************************************************************** | |
# Node.js # node-mongodb-app:version1.0.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
########################################################################################################################### | |
# Gradle # Kotlin # Groovy # Maven # Java # Spring Boot # Spring Web # Spring MVC # Spring Data JPA # Spring JPA Hibernate # Docker | |
########################################################################################################################### | |
*************************************************************************************************************************** | |
# Gradle # Kotlin # Java # Spring Boot # gradle init | |
*************************************************************************************************************************** |
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
########################################################################################################################### | |
# WebAssembly (Wasm) | |
########################################################################################################################### | |
*************************************************************************************************************************** | |
# Emscripten # WebAssembly (Wasm) # emsdk # emcc # em++ # Node.js # HTML # Python # Web Audio | |
*************************************************************************************************************************** |
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
// Java 23 | |
// OpenJDK 23 | |
// $ wget https://download.java.net/java/GA/jdk23.0.2/6da2a6609d6e406f85c491fcb119101b/7/GPL/openjdk-23.0.2_linux-x64_bin.tar.gz | |
// $ sudo tar -xvzf openjdk-23.0.2_linux-x64_bin.tar.gz | |
// $ export PATH="$HOME/jdk-23.0.2/bin/":$PATH | |
// $ java --enable-preview --source 23 --enable-native-access=ALL-UNNAMED --add-modules=jdk.incubator.vector Java23.java && java Program | |
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
// CS 13 | |
/* | |
$ wget https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-x64.tar.gz | |
$ DOTNET_FILE=dotnet-sdk-9.0.102-linux-x64.tar.gz | |
$ export DOTNET_ROOT=$HOME/.dotnet | |
$ mkdir -p "$DOTNET_ROOT" && tar zxf "$DOTNET_FILE" -C "$DOTNET_ROOT" | |
$ export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools | |
$ vim ~/.bashrc | |
export DOTNET_ROOT=$HOME/.dotnet |
NewerOlder