일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 도커
- bootstrap
- JavaScript
- codepipeline
- or some instances in your deployment group are experiencing problems.
- Spring Error
- node
- Kafka
- aws cicd
- docker
- codebuild
- AWS CI/CD 구축하기
- Airflow
- chartjs
- java bigdecimal
- VPN
- Spring
- codedeploy error
- aws
- codedeploy
- Flux
- Jenkins
- COALESCE
- IntelliJ
- PostgreSQL
- kubeflow
- SQL
- chart.js
- Python
- redis
- Today
- Total
목록분류 전체보기 (632)
Small Asteroid Blog
Windows, Linux, Chrome 에서는 Ctrl + Shift + n 맥에서는 command + shift + n 단축키를 눌러 개인정보보호 페이지에서 하면 된다. 크롬환경에서 해야하는데 나는 사파리에서 하다보니 연결이 계속 끊겼다.. HTML 삽입 미리보기할 수 없는 소스 "이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."

블로그 방문시 adblock 을 사용하면 종료 요청을 하는 스크립트를 추가하려고 한다. 아래 사이트에서 스크립트를 생성해준다. https://blockadblock.com/configure.php Configuration Options | BlockAdBlock - Stop Losing Ad Revenue Unobtrusive BlockAdblock branding is included in a lower corner of the block screen. If you are concerned about file-sizes and site-speed, you may opt to remove the branding image. Removing the branding image will reduce the s..

도커 설치 명령어이다. 기본 명령어로 환경설정은 하지 않고 시작했다. docker run -d -p 3000:3000 grafana/grafana-enterprise 도커를 띄우고 url 에 접속하면 로그인창이 나온다. 초기 정보는 admin/admin 이고 바로 비밀번호 변경할 수 있게 나온다. 운영체제에 따른 설치 방법과 자세한 내용은 아래 사이트를 참고하면 된다. https://grafana.com/docs/grafana/latest/installation/
뒤에서 3개만 출력 a = "abc1234가나다" print(a[-3:]) # 가나다 뒤에 3개 빼고 출력 a = "abc1234가나다" print(a[:-3]) # abc1234 뒤에서부터 출력 a = "abc1234가나다" print(a[::-1]) # 다나가4321cba
python 에서 csv 를 열 때 encoding 에서 생기는 오류로 utf-8 을 사용해준다. 'cp949' codec can't decode byte 0xbf in position 2: illegal multibyte sequence 'euc_kr' codec can't decode byte 0xbf in position 2: illegal multibyte sequence df.to_csv("/home/test.csv", encoding='utf-8')