일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 파이썬
- license delete
- Python
- zip 암호화
- zip 파일 암호화
- matplotlib
- analyzer test
- sort
- ELASTIC
- springboot
- 900gle
- aggs
- MySQL
- License
- docker
- Elasticsearch
- query
- licence delete curl
- API
- Java
- Mac
- token filter test
- Kafka
- flask
- plugin
- high level client
- 차트
- aggregation
- Test
- TensorFlow
- Today
- Total
목록분류 전체보기 (475)
개발잡부
Mac OS Big Sur 11.6 설치되어 있나??? mvn -v mvn 설치 Homebrew를 사용한 메이블 설치명령어 brew install maven 에러 case 1 에러 case 2 Error: You are using macOS 10.14. We (and Apple) do not provide support for this old version. 아.. 망할노무 회사야 돈좀 쓰자 OS 업데이트 못하게 했으니.. maven 버전을 낮춰서 설치해봄 repository 버전확인 brew search maven (base) ➜ ~ brew search maven ==> Formulae maven maven-completion maven-shell maven@3.2 maven@3.3 maven@3.5..
/etc/rc.d/rc.local : 부팅작업이 완료된후 마지막에 실행 (runlevel) sudo vi /etc/rc.d/rc.local /home/ec2-user/start.sh 등록 # Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure -> 실행권한을 주세요 지발..
아나콘다 설치 후 가상환경 목록확인 conda info --envs 가상환경 생성 conda create --name "doo" python="3.7" shell 껏다 키고 가상환경 실행 conda activate doo 텐서플로우 설치 conda install tensorflow 주피터 노트북 설치 conda install jupyter notebook 주피터 노트북 실행 jupyter notebook 텐서플로 확인 import tensorflow as tf with tf.compat.v1.Session() as sess: hello = tf.constant("Hello") world = tf.constant("World") sentence = hello + world pr = sess.run(sent..
aws sdk 를 사용 파일 업로드 테스트 java 1.8 implementation 'com.amazonaws:aws-java-sdk-s3' package com.etoos.edlfilebatch.service; import com.amazonaws.auth.AWSStaticCredentialsProvider; import com.amazonaws.auth.BasicAWSCredentials; import com.amazonaws.services.s3.AmazonS3; import com.amazonaws.services.s3.AmazonS3ClientBuilder; import com.amazonaws.services.s3.model.PutObjectRequest; import java.io.File..
하나의 버킷에만 풀 권한을 부여 계정과 버킷은 만들었다고 치고 1. 정책생성 IAM > 엑세스 관리 > 정책 우측 상단 [정책생성] 클릭 JSON 텝 선택 { "Version": "2012-10-17", "Statement": [ { "Sid": "ConsoleAccess", "Effect": "Allow", "Action": [ "s3:GetAccountPublicAccessBlock", "s3:GetBucketAcl", "s3:GetBucketLocation", "s3:GetBucketPolicyStatus", "s3:GetBucketPublicAccessBlock", "s3:ListAllMyBuckets" ], "Resource": "*" }, { "Sid": "ListObjectsInBucket"..
Elasticsearch : PUT _component_template/component_template1 { "template": { "mappings": { "properties": { "@timestamp": { "type": "date" } } } } } PUT _component_template/runtime_component_template { "template": { "mappings": { "runtime": { "day_of_week": { "type": "keyword", "script": { "source": "emit(doc['@timestamp'].value.dayOfWeekEnum.getDisplayName(TextStyle.FULL, Locale.ROOT))" } } } } }..
이건 뭐 맨날 할때마다 귀찮아 죽것네 변환 방법은 여러가지가 있지만.. 그중에서 // https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' 심플이라고 하니 진짜 심플한지.. 봐야지 디펜던시 추가 build.gradle dependencies { .... // https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple implementation group: 'com.googlecode.json-si..
삽질 삽질 개삽질.. 지미 프론트개발 안한지가 몇년인데.. API 를 만들었는데 post method 에서 문제가 발생 @CrossOrigin("*") @ApiOperation(value = "로그인", notes = "이메일 회원 로그인을 한다.") @PostMapping(value = "/signin") public SingleResult signin(@ApiParam(value = "회원ID : 이메일", required = true) @RequestParam String id, @ApiParam(value = "비밀번호", required = true) @RequestParam String password) { User user = userJpaRepo.findByUid(id).orElseThro..
에러상태 리턴값 이기.. 이걸.. Exception 이 발생하는 경우 공통으로 처리해보자 import com.etoos.datalake.model.response.CommonResult; import com.etoos.datalake.service.ResponseService; import lombok.RequiredArgsConstructor; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web...