| | GitHub Copilot | Amazon Q Developer | Gemini Code Assist (Google Cloud) | |------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
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
#!/usr/bin/ruby | |
# To run in terminal: | |
# | |
# `ruby json_to_graph.rb <json_input_file_path> <output_path>` | |
# | |
# | |
# Make sure you install the following gems: | |
# | |
# `gem install ruby-graphviz` |
To write the application you should use JS and any frontend framework that may help you to achieve the display. It should work in the web browser. There should be no/ minimal server side rendering here.
You can post it as a gist, upload to github or send us via email, anything works as long as the code is correct and you send us instructions how to use it.
=QUERY(A2:A, "
SELECT
A, COUNT(A)
WHERE
A IS NOT NULL AND
A != 'Others (Custom)'
GROUP BY
A
ORDER BY
Section | Summary |
---|---|
What is Duet AI? | Introduces what "Duet AI" is. We cover the multiple pr |
Method | Cloud Console | Kubectl | Kubernetes Dashboard | K9s |
---|---|---|---|---|
CRUD usage (Functionality) | ✅❌❌ | ✅✅✅ | ✅✅❌ | ✅✅✅ |
Metrics Dashboard (Functionality) | ✅✅✅ | ❌❌❌ | ✅✅✅ | ✅❌❌ |
Declarative deployments (Functionality) | ❌❌❌ | ✅✅✅ | ❌❌❌ | ❌❌❌ |
Ease of setup (Usability) | ✅✅✅ | ✅✅❌ | ✅❌❌ | ✅✅❌ |
User interface (Usability) | ✅✅✅ | ❌❌❌ | ✅✅✅ | ✅✅❌ |
Uptime (Reliability) | ✅✅✅ | ✅✅✅ | ✅✅❌ | ✅✅✅ |
Self-hosted (Reliability) | ❌❌❌ | ✅✅✅ | ✅✅❌ |
# | Figuring It Out — Kubernetes, GKE, Google Cloud | GitHub Project Link |
---|---|---|
1 | Getting Started | 1.0.0 |
1.0.1 | Budgeting woes | 1.0.1 |
2 | Best ways to manage your GKE Cluster! | [2.0.0](https://github.com/Weiyuan-Lane/gcp-gke-tf/releases/tag |
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/sh | |
TMP_DIR=".tmp" | |
mkdir -p $TMP_DIR | |
PROMPT_DIR="prompt" | |
mkdir -p $TMP_DIR/$PROMPT_DIR | |
# INPUT VARIABLES | |
# $1 - Global variable name to write prompt into | |
# $2 - Input prompt message for user |
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/sh | |
TMP_DIR=".tmp" | |
PROMPT_DIR="prompt" | |
mkdir -p $TMP_DIR | |
mkdir -p $TMP_DIR/$PROMPT_DIR | |
promptUserEntry(){ | |
local _outputVar=$1 | |
local _inputPrompt=$2 |
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/sh | |
TMP_DIR=".tmp" | |
mkdir -p $TMP_DIR | |
promptGCPEntry(){ | |
local _gcpIDCacheFilename="$TMP_DIR/gcpprojectid" | |
if [ -e $_gcpIDCacheFilename ]; then | |
gcpProjectId=`cat $_gcpIDCacheFilename` |
NewerOlder