AWS 학습 링크집 시리즈
- AWS 학습 자료집 http://bit.ly/aws-study-resource
- 비공식 AWS 공인 솔루션스 아키텍트 - 어소시에이트 수험 가이드 http://bit.ly/sacertguide
- 비공식 AWS 공인 개발자 - 어소시에이트 수험 가이드 http://bit.ly/devcertguide
- AWS 보안 관련 컨텐츠 모음집 http://bit.ly/seccontents
| function git-update() { | |
| local current_branch=$(git rev-parse --abbrev-ref HEAD) | |
| git fetch origin --recurse-submodules=no --progress --prune | |
| if [ -z "$1" -o "$current_branch" = "$1" ]; then | |
| git -c core.quotepath=false merge origin/$current_branch --no-stat -v | |
| else | |
| git -c core.quotepath=false fetch origin $1:$1 --recurse-submodules=no --progress --prune | |
| fi | |
| } |
| root = true | |
| [*] | |
| charset = utf-8 | |
| insert_final_newline = true | |
| [*.{java,kt}] | |
| max_line_length = 100 | |
| ij_visual_guides = 80 | |
| indent_style = space |
| package com.ddoong2.autoparams; | |
| import autoparams.customization.CompositeCustomizer; | |
| import autoparams.lombok.BuilderCustomizer; | |
| public class DomainCustomization extends CompositeCustomizer { | |
| public DomainCustomization() { | |
| /** | |
| * 뒤에서 부터 먼저 시작되기 때문에 EntityBuilderCustomizer가 BuilderCustomizer보다 먼저 실행되야 된다. |
| package com.ddoong2.autoparams; | |
| import autoparams.customization.Customizer; | |
| import autoparams.generator.ObjectContainer; | |
| import autoparams.generator.ObjectGenerationContext; | |
| import autoparams.generator.ObjectGenerator; | |
| import autoparams.generator.ObjectQuery; | |
| import jakarta.persistence.Column; | |
| import jakarta.persistence.Entity; | |
| import jakarta.persistence.Id; |
| #!/bin/sh | |
| GROUP=sftponly | |
| USERNAME=test | |
| USERPWD=P@sswOrd | |
| USERHOME=/home/${USERNAME} | |
| PORT=2222 | |
| FTPHOME=chroot | |
| /usr/sbin/groupadd $GROUP |
AWS 학습 링크집 시리즈