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
########################################################################################################################### | |
# Azure Common Base Linux Mariner | |
########################################################################################################################### | |
=========================================================================================================================== | |
# Linux Mariner | |
=========================================================================================================================== |
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 Debian GNU/Linux # Docker | |
########################################################################################################################### | |
=========================================================================================================================== | |
# Debian GNU/Linux | |
=========================================================================================================================== |
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
########################################################################################################################### | |
# Amazon Linux [centos rhel fedora] # Docker | |
########################################################################################################################### | |
=========================================================================================================================== | |
# Linux centos rhel fedora | |
=========================================================================================================================== |
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
########################################################################################################################### | |
# AWS # amazon-linux-extras # docker build # Node.js | |
*************************************************************************************************************************** | |
# AWS CloudShell | |
*************************************************************************************************************************** |
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
########################################################################################################################### | |
Kubernetes Docker Node.js MongoDB Minio | |
########################################################################################################################### | |
# node-mongodb-app Version 1.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
# Kubernetes | |
• Container management platform | |
• Kubernetes supports container orchestration | |
# What is container management? | |
• Container management is the process of organizing, adding, removing, or updating a significant number of containers. | |
• Containers are an excellent choice when developing software based on microservice architectures. | |
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 21 | |
// OpenJDK 21 | |
// % export PATH="$HOME/Downloads/Software/OpenJDK/JDK21.0.2/jdk-21.0.2.jdk/Contents/Home/bin/":$PATH | |
// Java 21 | |
// Microsoft Build of OpenJDK 21 | |
// % export PATH="$HOME/Downloads/Software/OpenJDK/MicrosoftBuildofOpenJDK/jdk-21.0.4+7/Contents/Home/bin/":$PATH | |
// % java --enable-preview --source 21 --enable-native-access=ALL-UNNAMED --add-modules=jdk.incubator.vector Java21.java | |
// Or |
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 20 | |
// OpenJDK 20 | |
// % export PATH="$HOME/Downloads/Software/OpenJDK/JDK20.0.2/jdk-20.0.2.jdk/Contents/Home/bin/":$PATH | |
// % java --enable-preview --source 20 --enable-native-access=ALL-UNNAMED --add-modules=jdk.incubator.concurrent,jdk.incubator.vector Java20.java | |
// Or | |
// % javac -Xlint:preview --enable-preview --source 20 --add-modules=jdk.incubator.concurrent,jdk.incubator.vector Java20.java | |
// % java --enable-preview --enable-native-access=ALL-UNNAMED --add-modules=jdk.incubator.concurrent,jdk.incubator.vector Java20 | |
// % rm -rf *.class |
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 19 | |
// OpenJDK 19 | |
// % export PATH="$HOME/Downloads/Software/OpenJDK/JDK19.0.2/jdk-19.0.2.jdk/Contents/Home/bin/":$PATH | |
// % java --enable-preview --source 19 --enable-native-access=ALL-UNNAMED --add-modules=jdk.incubator.concurrent,jdk.incubator.vector Java19.java | |
// Or | |
// % javac -Xlint:preview --enable-preview --source 19 --add-modules=jdk.incubator.concurrent,jdk.incubator.vector Java19.java | |
// % java --enable-preview --enable-native-access=ALL-UNNAMED --add-modules=jdk.incubator.concurrent,jdk.incubator.vector Java19 | |
// % rm -rf *.class |
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 12 | |
/* | |
1. Primary constructors | |
2. Collection expressions | |
3. ref readonly parameters | |
4. Default lambda parameters | |
5. Alias any type | |
6. Inline arrays | |
7. Experimental attribute | |
8. Interceptors |