Skip to content

Instantly share code, notes, and snippets.

View adisaputra10's full-sized avatar
πŸ˜‡
I may be slow to respond.

Adi Saputra adisaputra10

πŸ˜‡
I may be slow to respond.
View GitHub Profile
@adisaputra10
adisaputra10 / gist-content-en.md
Created April 22, 2026 16:22 — forked from junbaor/gist-content-en.md
AI Coding Plan Comparison 2026 β€” Claude Code vs GLM vs MiniMax vs Kimi vs Qwen (CodingPlan.org)

AI Coding Plan Comparison 2026 β€” CodingPlan.org

Side-by-side comparison of the best AI coding subscriptions: Claude Code, GLM, MiniMax, Kimi, and Qwen

πŸ”— Full comparison: https://codingplan.org/en


🎯 Why This Comparison?

@adisaputra10
adisaputra10 / harbor.sh
Created December 11, 2025 04:32 — forked from kacole2/harbor.sh
Quick Start Harbor Installation Script on Ubuntu 18.04
#!/bin/bash
#Harbor on Ubuntu 18.04
#Prompt for the user to ask if the install should use the IP Address or Fully Qualified Domain Name of the Harbor Server
PS3='Would you like to install Harbor based on IP or FQDN? '
select option in IP FQDN
do
case $option in
IP)
@adisaputra10
adisaputra10 / harbor.sh
Created December 11, 2025 04:32 — forked from kacole2/harbor.sh
Quick Start Harbor Installation Script on Ubuntu 18.04
#!/bin/bash
#Harbor on Ubuntu 18.04
#Prompt for the user to ask if the install should use the IP Address or Fully Qualified Domain Name of the Harbor Server
PS3='Would you like to install Harbor based on IP or FQDN? '
select option in IP FQDN
do
case $option in
IP)
@adisaputra10
adisaputra10 / sonarqube.shared.jenkins.md
Created September 3, 2020 00:51
shared library jenkins to check quality code when running jenkins and Notif to Telegram

Shared Jenkins

Overview

As Pipeline is adopted for more and more projects in an organization, common patterns are likely to emerge. Oftentimes it is useful to share parts of Pipelines between various projects to reduce redundancies and keep code "DRY" [1]. Pipeline has support for creating "Shared Libraries" which can be defined in external source control repositories and loaded into existing Pipelines

Defining Shared Libraries

A Shared Library is defined with a name, a source code retrieval method such as by SCM, and optionally a default version. The name should be a short identifier as it will be used in scripts. The version could be anything understood by that SCM; for example, branches, tags, and commit hashes all work for Git. You may also declare whether scripts need to explicitly request that library (detailed below), or if it is present by default. Furthermore, if you specify a version in Jenkins configuration, you can block scripts from selecting a different version.

@adisaputra10
adisaputra10 / route.md
Last active September 2, 2020 01:51
manage route okd

Route

Overview

An OKD route exposes a service at a host name, such as www.example.com, so that external clients can reach it by name.

DNS resolution for a host name is handled separately from routing. Your administrator may have configured a DNS wildcard entry that will resolve to the OKD node that is running the OKD router. If you are using a different host name you may need to modify its DNS records independently to resolve to the node that is running the router.

Each route consists of a name (limited to 63 characters), a service selector, and an optional security configuration.

# Download and Install the Latest Updates for the OS
apt-get update && apt-get upgrade -y
# Set the Server Timezone to CST
# Enable Ubuntu Firewall and allow SSH & MySQL Ports
ufw enable
ufw allow 22
ufw allow 3306
@adisaputra10
adisaputra10 / install-sonar-scanner.sh
Last active December 9, 2019 12:20 — forked from chetanppatil/install-sonar-scanner.sh
Install sonar-scanner in linux mint, ubuntu...
#!/bin/bash
cd /tmp || exit
echo "Downloading sonar-scanner....."
if [ -d "/tmp/sonar-scanner-cli-4.0.0.1744-linux.zip" ];then
sudo rm /tmp/sonar-scanner-cli-4.0.0.1744-linux.zip
fi
wget https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.0.0.1744-linux.zip
echo "Download completed."
@adisaputra10
adisaputra10 / docker-compose.yml
Created November 28, 2019 14:38 — forked from pantsel/docker-compose.yml
example docker-compose.yml for kong, postgres and konga
version: "3"
networks:
kong-net:
driver: bridge
services:
#######################################
# Postgres: The database used by Kong