Skip to content

Instantly share code, notes, and snippets.

View hendisantika's full-sized avatar
💻
Coding... coding.. coding.... and coding..!

Hendi Santika hendisantika

💻
Coding... coding.. coding.... and coding..!
View GitHub Profile
var uuid = require('uuid')
var myUUID = uuid.v4()
console.log(myUUID)
pm.environment.set("myUUID",myUUID)
@hendisantika
hendisantika / sonarcloud.yml
Created January 19, 2025 14:57
Sonar Cloud Template for GitHub Action
name: Sonar Scan
on:
push:
branches:
- sonarqube-setup
jobs:
build-and-analyze:
runs-on: [ ubuntu-latest ]
@hendisantika
hendisantika / DatabaseFailoverExample.java
Created January 15, 2025 03:24
DatabaseFailoverExample with Vertx
import io.vertx.core.Vertx;
import io.vertx.ext.jdbc.JDBCClient;
import io.vertx.ext.jdbc.spi.impl.C3P0DataSourceProvider;
import io.vertx.core.json.JsonObject;
public class DatabaseFailoverExample {
private static final String DB1_URL = "jdbc:mysql://db1:3306/mydb";
private static final String DB2_URL = "jdbc:mysql://db2:3306/mydb";
private static final int TIMEOUT = 5000; // Timeout for DB connection attempts (5 seconds)
@hendisantika
hendisantika / compose.yml
Created December 16, 2024 11:46
MySQL Docker Compose
services:
db:
image: mysql:9.1.0
restart: always
environment:
MYSQL_DATABASE: 'db'
# So you don't have to use root, but you can if you like
MYSQL_USER: 'user'
# You can use whatever password you like
MYSQL_PASSWORD: 'password'
@hendisantika
hendisantika / docker-compose.yml
Created October 9, 2024 11:17
Keycloak Postgres Docker Compose
services:
another-database-if-you-need: # Example. Remove before using.
image: postgres:17beta3-alpine3.20
environment:
POSTGRES_DB: postgres
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
ports:
- "5432:5432"
networks:
@hendisantika
hendisantika / .bashrc
Created August 25, 2024 00:43 — forked from vsouza/.bashrc
Golang setup in Mac OSX with HomeBrew. Set `GOPATH` and `GOROOT` variables in zshell, fish or bash.
# Set variables in .bashrc file
# don't forget to change your path correctly!
export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
@hendisantika
hendisantika / login-keycloak-post.go
Created August 14, 2024 12:06 — forked from mashingan/login-keycloak-post.go
login-keycloak-post.go
func loginPost(in *AuthParam, reqInfo RequestInfo) (*SignInResponse, error) {
keycloakURL := os.Getenv("KEYCLOAK_URL") + "auth/realms/" + os.Getenv("KEYCLOAK_REALM_NAME") + "/protocol/openid-connect/token"
clientToken := base64.StdEncoding.EncodeToString([]byte(os.Getenv("KEYCLOAK_ADMIN_CLIENT_SECRET")))
form := url.Values{
"grant_type": {"password"},
"username": {in.Username},
"password": {in.Password},
"scope": {"openid"},
}
@hendisantika
hendisantika / .gitlab-ci.yml
Created August 8, 2024 09:32
GitLab CI for Flutter App CICD
image: "ghcr.io/cirruslabs/flutter:3.22.3"
stages:
- build
- deploy
variables:
FIREBASE_CLI_VERSION: "11.5.0"
GRADLE_USER_HOME: "/builds/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME/.gradle"
@hendisantika
hendisantika / mysql-daily.backup.sh
Created July 2, 2024 01:40
MySQL Daily Backup Database
# backup-database.sh
#!/bin/bash
# Name: mysql-daily.backup.sh
# Date: Monday, 1 July 2024 09.00 WIB
# Usage: Ubuntu Linux Backup MySQL Server Shell Script
# Author: Hendi Santika https:/s.id/hendisantika under GPL v2.x+
# -------------------------------------------------------------------
# Konfigurasi
DB_NAME="DB_NAME"
DB_USER="DB_USER"
@hendisantika
hendisantika / deploy_dev.yml
Last active June 24, 2024 14:23
GitHub Action template to deploy_dev to AWS ECR
name: Deploy DEV WEB APP
on:
push:
branches:
- master
env:
ENV_GITHUB: ${{ vars.ENV_GITHUB }}
IMAGE_TAG: ${{ github.run_number }}
CONTAINER_NAME: dalim-fe
REGISTRY: docker.io