일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- eks
- zset
- SW Maestro
- yml
- Database
- hammerDB
- Salting
- minreplica
- traceId
- logback
- MSSQL
- Grafana
- Kubernetes
- Software maestro
- blue-green
- Debezium
- propogation
- docket
- 동등성
- Helm
- slow query
- 스프링부트
- SW 마에스트로
- Leaderboard
- 0 replica
- keda
- Benchmarks
- spring boot
- Strimzi
- Kafka
- Today
- Total
목록전체 글 (64)
김태오

IFS - Inter-Frame Spacing is a parameter used in Ethernet, and it represents the minimum amount of time between two transmissions. If there is no IFS between the transmissions, it is likely to cause a collision error - which might be a cause of corrupted data. In this flow, the IFS is used after the decision of whether the channel is free and the CTS(Clear to send) is received before the time-ou..
I was having this issue on the createdAt and modifiedAt not being created automatically upon posting a new entity. It had worked flawlessly in my previous project, yet when I tried to post a new entity in a postman test, it gave me the 500 Internal Server Error. package com.keyworld.projectboard.domain; import lombok.Getter; import lombok.ToString; import org.springframework.data.annotation.Crea..
기술 포스트는 영어 위주로 작성하려 했으나, 이후 기수들이나 후배들에게 조금이나마 도움이 될 수 있을까 싶어 합격 회고는 한글로 작성한다. SWMaestro는 BOB와 함께 신입생 때부터 선배들에게 들어왔던 인재 양성 과정이다. 저번 기수의 지원기간에는 알고리즘 능력도, 프로젝트의 질도 턱없이 모자랐기에 지원서를 쓰던 도중 14기를 기약했던 기억이 난다. 올해는 프로젝트를 숙지하고 면접을 견고하게 준비하면 합격하기에 최적의 시기라고 생각했다. 1차 코딩 테스트 Programmers에서 2시간동안 시험을 치뤘는데, 서버가 터진건지 1차는 무효가 됐다. 알고리즘 4문제 + SQL 1문제 구성이었다. 간단한 문제 유형과 백준 예상 티어, C++ pseudocode 를 적어본다. 1번 : 그냥 단순구현 (실2)..

Importing Packages from random import random as rand import random import numpy as np import matplotlib.pyplot as plt %matplotlib inline Loading Dataset # Random seed random.seed(1234) # Generate 2-dimensional data points X = [rand() * i * 0.5 - 20 for i in range(0, 100)] y = [x ** 3 * 0.002 - x ** 2 * 0.005 + x * 0.003 + rand() * 5 for x in X] print(len(X), len(y)) Random Sampling + Visualizati..