https://hiseon.me/server/iops-calculator/ IOPS 란? IOPS 계산 방법 - HiSEON IOPS 계산 방법 IOPS 란? IOPS(Input/Output Operations Per Second, IOPS)는 HDD, SDD 또는 NVMe등 저장장치의 속도를 나타내는데 단위입니다. MB/s 또는 GB/s등과 같이 초당 전송량 계산 방법을 알려드립니다. hiseon.me
SES: Simple Email Service; email SQS: Simple Queue Service; 14일 메시지 보관 SNS: Simple Notification Service; PUSH https://velog.io/@zionedoha/SES-SQS-SNS-%EC%B0%A8%EC%9D%B4 SES, SQS, SNS 차이 https://www.youtube.com/watch?v=w7fPh7Z0S8E&list=PLfth0bK2MgIZk4wlPlWItvr5oclZiZ4Laaws강의실 유튜브 보고 정리함!SESAmazon Simple Email Service개발자가 모든 애플리케이션 velog.io http://daplus.net/amazon-web-services-amazon-sns%EC%99%80..
https://docs.aws.amazon.com/athena/latest/ug/ctas.html Creating a Table from Query Results (CTAS) - Amazon Athena Thanks for letting us know this page needs work. We're sorry we let you down. If you've got a moment, please tell us how we can make the documentation better. docs.aws.amazon.com https://docs.aws.amazon.com/athena/latest/ug/create-table-as.html CREATE TABLE AS - Amazon Athena For con..
https://github.com/seunggabi/spring-cloud-config/wiki/Shortcut GitHub - seunggabi/spring-cloud-config: External configuration (server and client) for Spring Cloud External configuration (server and client) for Spring Cloud - GitHub - seunggabi/spring-cloud-config: External configuration (server and client) for Spring Cloud github.com https://madplay.github.io/post/introduction-to-spring-cloud-co..
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" touch ~/.zshrc export PATH=/opt/homebrew/bin:$PATH source ~/.zshrc brew help https://stackoverflow.com/questions/66666134/how-to-install-homebrew-on-m1-mac How to install homebrew on M1 mac I just got a new Mac, the M1 Macbook pro and I am trying to install homebrew, but every time I finish install..
export JAVA_HOME=$(/usr/libexec/java_home -v 17) source ~/.zshenv https://mkyong.com/maven/maven-error-invalid-target-release-17/
brew tap adoptopenjdk/openjdk brew install cask brew install --cask adoptopenjdk8 brew install --cask adoptopenjdk11 brew install --cask adoptopenjdk # latest 16 (2022.04.20) export JAVA_HOME=$(/usr/libexec/java_home -v 1.8) export JAVA_HOME=$(/usr/libexec/java_home -v 11) export JAVA_HOME=$(/usr/libexec/java_home -v 16) echo $JAVA_HOME export PATH=${PATH}:${JAVA_HOME}/bin java -version javac -v..
bin/kafka-consumer-groups.sh --list --bootstrap-server localhost:9092 bin/kafka-consumer-groups.sh --describe --group mygroup --bootstrap-server localhost:9092 https://stackoverflow.com/questions/32697999/kafka-consumer-list Kafka consumer list I need to find out a way to ask Kafka for a list of topics. I know I can do that using the kafka-topics.sh script included in the bin\ directory. Once I ..
https://blog.soobinpark.com/142 ext 파일시스템에 대한 정리(ext4까지) 리눅스에서는 ext포맷을 사용한다. 시스템 파티션에서는 당연히 ext 포맷은 필수이지만, ext 포맷의 장점을 제대로 알아야 추가로 사용하는 파티션에도 FAT나 NTFS, HTFS가 아닌 ext 파티션을 적용할 blog.soobinpark.com https://mapoo.net/os/oslinux/ext-%ED%8C%8C%EC%9D%BC-%EC%8B%9C%EC%8A%A4%ED%85%9Cext1-ext2-ext3-ext4/ EXT 파일 시스템(ext1, ext2, ext3, ext4) - mapoo's blog 3. ext3 ext3는 Stephan Tweedie가 개발하여 2001년 11월에 Linux ..
![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/cqVMiN/btrzXZAiWSn/twPFJkok7FTHo16HpOryG1/img.png)
https://ko.wikipedia.org/wiki/%ED%82%A4%EB%B9%84%EB%B0%94%EC%9D%B4%ED%8A%B8 키비바이트 - 위키백과, 우리 모두의 백과사전 키비바이트(영어: Kibibyte, KiB) 또는 킬로 이진 바이트(Kilo binary byte)는 정보나 컴퓨터 저장장치의 단위이다. 1 킬로 이진 바이트 = 210 바이트 = 1,024 바이트 킬로 이진 바이트와 비슷한 동의어인 킬 ko.wikipedia.org
https://github.com/isaacs/github/issues/65#issuecomment-123740194 UI way to filter issues by label exclusion · Issue #65 · isaacs/github Allowing to filter the issues that doesn't have a specific label is really powefull, especially if combined with other label filters. It works very well with tags like "nice_to_have" ... github.com
![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/4XZGk/btrvJ96LWZR/KW58ky1e0vbOV3hsA17UnK/img.png)
1 테스트 환경 lst1의 원소는 A, B, C, D lst2의 원소는 C, D, E, F 데이터 입력 Python Copy lst1 = ['A', 'B', 'C', 'D'] lst2 = ['C', 'D', 'E', 'F'] 2 합집합 Python CPU 0.0s MEM 8M 0.0s Copy lst1 = ['A', 'B', 'C', 'D'] lst2 = ['C', 'D', 'E', 'F'] union = list(set(lst1) | set(lst2)) print( union ) # ['C', 'F', 'A', 'E', 'B', 'D'] union = list(set().union(lst1,lst2)) print( union ) # ['C', 'F', 'A', 'E', 'B', 'D'] ['F', 'C..
https://kodejava.org/how-do-i-use-the-java-time-dayofweek-enum/ How do I use the java.time.DayOfWeek enum? | Kode Java The java.time.DayOfWeek enums in Java 8 Date-Time API describes the days of the week. The enum has constants value from DayOfWeek.MONDAY through DayOfWeek.SUNDAY. These enums also have their integer values where 1 is equal to MONDAY and 7 is equal to SUNDA kodejava.org https://s..
import inspect def method_name(): return inspect.stack()[1][3] def method_name_caller(): return inspect.stack()[2][3] def asdf(): print(method_name_caller()) print(method_name()) def asdf2(): print(method_name_caller()) print(method_name()) asdf() https://stackoverflow.com/questions/5067604/determine-function-name-from-within-that-function-without-using-traceback Determine function name from wit..
https://stackoverflow.com/questions/1992314/what-is-the-difference-between-single-and-double-quotes-in-sql What is the difference between single and double quotes in SQL? What is the difference between single quotes and double quotes in SQL? stackoverflow.com
FAT32 or FAT 포맷 TeslaCam 디렉토리 생성 https://kirakira0111.tistory.com/577 테슬라 블랙박스 오류 포맷 및 해결법 지금까지 잘 사용하고 있던 블랙박스용 저장장치가 어제부터 오류메시지가 떠서 재정비를 했습니다. 오랜만에 하니까 계속 파일을 읽지 못하는 오류가 발생해 메뉴얼을 찾아봤는데요. 이런 kirakira0111.tistory.com https://chanjae.net/1167 대용량 SSD로 테슬라캠 사용하기 2020.16 업데이트부터 exFAT 포맷지원하고 차량내부에서 포맷, 셋팅 가능합니다. 그냥 사서 꼽으시면 됨 (단 대용량 외장하드나 ssd의 경우 기본 포멧이 NTFS로 나오기때문에 차량에서 인식을 못합니 chanjae.net
$ git ls-remote --heads git@github.com:user/repo.git branch-name http://daplus.net/git-%EC%A7%80%EC%A0%95%EB%90%9C-%EC%9B%90%EA%B2%A9-%EC%A0%80%EC%9E%A5%EC%86%8C%EC%97%90-%EC%9B%90%EA%B2%A9-%EB%B6%84%EA%B8%B0%EA%B0%80-%EC%9E%88%EB%8A%94%EC%A7%80-%ED%99%95%EC%9D%B8%ED%95%98/ [git] 지정된 원격 저장소에 원격 분기가 있는지 확인하는 방법은 무엇입니까? - 리뷰나라 주어진 원격 저장소에있는 경우 특정 분기에 대해 하위 트리 병합을 수행해야합니다. 문제는 원격 저장소가 로컬로 체크 아웃되지 않..
- Total
- Today
- Yesterday
- 유투브
- 연애학개론
- COUNT
- 할인
- Kluge
- 모델y
- Bot
- 모델 Y 레퍼럴
- 테슬라 리퍼럴 코드 혜택
- 팔로워 수 세기
- 김달
- 테슬라 리퍼럴 코드
- wlw
- follower
- 클루지
- 개리마커스
- 레퍼럴
- 테슬라 레퍼럴 코드 확인
- 인스타그램
- 메디파크 내과 전문의 의학박사 김영수
- 테슬라
- 테슬라 추천
- 테슬라 레퍼럴
- 책그림
- 테슬라 레퍼럴 적용 확인
- 어떻게 능력을 보여줄 것인가?
- 테슬라 크레딧 사용
- 테슬라 리퍼럴 코드 생성
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |