Skip to content

Instantly share code, notes, and snippets.

View kidmam's full-sized avatar
😍

Park Sang kil kidmam

😍
View GitHub Profile
@Hakky54
Hakky54 / cheat_sheet_http_client_ssl_configuration_for_java_kotlin_scala.md
Last active November 4, 2025 14:33
Cheat Sheet - Http Client SSL TLS Configuration for Java Kotlin and Scala with example http requests
version: '2'
services:
config-server:
image: benwilcock/spring-petclinic-config-server-native:2.4.3
container_name: config-server
mem_limit: 1024M
ports:
- 8888:8888
@thomaspoignant
thomaspoignant / Makefile
Last active February 6, 2026 15:00
My ultimate Makefile for GolangΒ Projects
GOCMD=go
GOTEST=$(GOCMD) test
GOVET=$(GOCMD) vet
BINARY_NAME=example
VERSION?=0.0.0
SERVICE_PORT?=3000
DOCKER_REGISTRY?= #if set it should finished by /
EXPORT_RESULT?=false # for CI please set EXPORT_RESULT to true
GREEN := $(shell tput -Txterm setaf 2)
@serithemage
serithemage / aws-tnc-introduce.md
Last active January 30, 2025 15:30
AWS νŠΈλ ˆμ΄λ‹ 및 자격증 μ†Œκ°œ

AWS νŠΈλ ˆμ΄λ‹ 및 자격증 μ†Œκ°œ(http://bit.ly/aws-tnc-intro)

AWS ν•™μŠ΅ 링크집 μ‹œλ¦¬μ¦ˆ

@npearce
npearce / install-docker.md
Last active January 28, 2026 11:06
Amazon Linux 2 - install docker & docker-compose using 'sudo amazon-linux-extras' command

UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.

Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/

Docker CE Install

sudo amazon-linux-extras install docker
sudo service docker start
@serithemage
serithemage / aws-study-resource.md
Last active October 4, 2025 21:25
AWS ν•™μŠ΅ μžλ£Œμ§‘

AWS ν•™μŠ΅ 링크집 μ‹œλ¦¬μ¦ˆ

@godrm
godrm / swift_api_guideline.md
Last active January 28, 2026 15:35
μŠ€μœ„ν”„νŠΈ API κ°€μ΄λ“œλΌμΈ

1. μŠ€νƒ€μΌ/문법 리뷰

1-1 μŠ€μœ„ν”„νŠΈ API λ””μžμΈ κ°€μ΄λ“œλΌμΈ

https://swift.org/documentation/api-design-guidelines/

  • μ‚¬μš©ν•  λ•Œ κΈ°μ€€μœΌλ‘œ λͺ…ν™•ν•˜κ²Œ μž‘μ„±ν•˜λŠ” 게 κ°€μž₯ μ€‘μš”ν•œ μ§€ν–₯점이닀. λ©”μ†Œλ“œλ‚˜ ν”„λ‘œνΌν‹° 같은 개발 μš”μ†ŒλŠ” ν•œ 번만 μ„ μ–Έν•˜κ³  반볡적으둜 μ‚¬μš©ν•œλ‹€. APIλ₯Ό λ§Œλ“€ λ•ŒλŠ” μ‚¬μš©ν•˜κΈ° λͺ…ν™•ν•˜κ³  νŽΈν•˜κ²Œ λ§Œλ“€μ–΄μ•Ό ν•œλ‹€. 섀계λ₯Ό 검증할 λ•Œ μ„ μ–Έ 뢀뢄을 μ½λŠ” κ²ƒλ§ŒμœΌλ‘œλŠ” λΆ€μ‘±ν•˜λ‹€. κ·Έ λŒ€μ‹  μ‚¬μš©ν•˜λŠ” μƒν™©μ—μ„œ λ§₯락에 맞고 λͺ…ν™•ν•œ μ§€ 늘 κ³ λ €ν•΄μ•Ό ν•œλ‹€.

  • λͺ…ν™•ν•œ ν‘œν˜„μ΄ μ••μΆ•ν•œ 간결성보닀 더 μ€‘μš”ν•˜λ‹€. μŠ€μœ„ν”„νŠΈ μ½”λ“œλŠ” μ••μΆ•ν•΄μ„œ κ°„κ²°ν•˜κ²Œ μž‘μ„±ν•  수 μžˆμ§€λ§Œ, 단지 κΈ€μžμˆ˜λ₯Ό μ€„μ—¬μ„œ κ°€μž₯ 짧은 μ½”λ“œλ₯Ό λ§Œλ“œλŠ” 게 λͺ©ν‘œλŠ” μ•„λ‹ˆλ‹€. μŠ€μœ„ν”„νŠΈ μ½”λ“œμ˜ 간결성은 μžμ—°μŠ€λŸ½κ²Œ 반볡적으둜 μž¬μ‚¬μš©ν•˜λŠ” μ½”λ“œ(boilerplate)λ₯Ό μ€„μ΄λŠ” κΈ°λŠ₯κ³Ό κ°•ν•œ νƒ€μž… μ‹œμŠ€ν…œμ˜ λΆ€μˆ˜νš¨κ³Όλ‘œ λ“œλŸ¬λ‚  뿐이닀.

@edsiper
edsiper / kubernetes_commands.md
Last active April 8, 2025 09:02
Kubernetes Useful Commands
@thanasik
thanasik / tx_send_example.go
Created March 27, 2017 20:43
Sending an Ethereum transaction in Go
package main
import (
"fmt"
"math/big"
"context"
"io/ioutil"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/accounts/keystore"
@serithemage
serithemage / AWSSecurityContents.md
Last active July 24, 2025 04:30
AWS λ³΄μ•ˆ κ΄€λ ¨ 자료 λͺ¨μŒμ§‘

AWS ν•™μŠ΅ 링크집 μ‹œλ¦¬μ¦ˆ