# compression tar -cvf a.tar a tar -zcvf a.tar.gz a zip a.zip -r a # decompression tar -xvf a.tar tar -zxvf a.tar.gz unzip a.zip -c: tar -z: gz -x: decompression -v: showing status -f: filename -r: recursive https://brownbears.tistory.com/161 [Linux] tar, gz, zip 압축 및 압축 해제 압축하기 tar 압축 $ tar -cvf [파일명.tar] [폴더명] # abc라는 폴더를 aaa.tar로 압축 예시 $ tar -cvf aaa.tar abc tar.gz 압축 $ tar -zcvf [파일명.tar.gz]..
com.naver.music.data core ${core-version} org.springframework spring-aop ${spring-core-version} org.springframework spring-aspects ${spring-core-version} org.springframework spring-beans ${spring-core-version} org.springframework spring-context ${spring-core-version} org.springframework spring-context-support ${spring-core-version} org.springframework spring-core ${spring-core-version} org.sprin..
if [[ "$OSTYPE" == "linux-gnu" ]]; then # ... elif [[ "$OSTYPE" == "darwin"* ]]; then # Mac OSX elif [[ "$OSTYPE" == "cygwin" ]]; then # POSIX compatibility layer and Linux environment emulation for Windows elif [[ "$OSTYPE" == "msys" ]]; then # Lightweight shell and GNU utilities compiled for Windows (part of MinGW) elif [[ "$OSTYPE" == "win32" ]]; then # I'm not sure this can happen. elif [[ "..
while true; do ... condition || break done https://unix.stackexchange.com/questions/60098/do-while-or-do-until-in-posix-shell-script do...while or do...until in POSIX shell script There is the well known while condition; do ...; done loop, but is there a do... while style loop that guarantees at least one execution of the block? unix.stackexchange.com
coord:dateOffset(String baseDate, int instance, String timeUnit) coord:dateTzOffset(String baseDate, String timezone) coord:formatTime(String ts, String format) ${coord:dateOffset(coord:nominalTime(), -1, 'DAY')} ${coord:formatTime(coord:nominalTime(), 'yyyyMMdd')} ${coord:dateTzOffset(coord:nominalTime(), 'KST')} ${coord:dateTzOffset(coord:nominalTime(), 'PST')} https://118k.tistory.com/770 [oo..
# MacOSX START=20200101 END=20201231 if [[ "$OSTYPE" == "darwin"* ]]; then startDate=$(date -jf "%Y%m%d" ${START} +"%Y%m%d") endDate=$(date -jf "%Y%m%d" ${END} +"%Y%m%d") else startDate=$(date --date=${START} +"%Y%m%d") endDate=$(date --date=${END} +"%Y%m%d") fi while true; do d=$startDate echo "$d" [ "$startDate" != "$endDate" ] || break if [[ "$OSTYPE" == "darwin"* ]]; then startDate=$(date -j..
#!/bin/bash IP=$(curl automation.whatismyip.com/n09230945.asp) echo "$IP" https://stackoverflow.com/questions/8737638/assign-output-to-variable-in-bash Assign output to variable in Bash I'm trying to assign the output of cURL into a variable like so: #!/bin/sh $IP=`curl automation.whatismyip.com/n09230945.asp` echo $IP sed s/IP/$IP/ nsupdate.txt | nsupdate However, when I run the stackoverflow.com
https://echarts.apache.org/en/tutorial.html#Add%20interaction%20to%20the%20chart%20component ECharts Documentation Apache ECharts is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. We are working on redirecting this Website to https://echarts.apache.org. You may visit our new official Website now. echarts.apache.org https://dullyathub.i..
curl -s 'https://api.github.com/users/lambda' | \ python3 -c "import sys, json; print(json.load(sys.stdin)['name'])" https://stackoverflow.com/questions/1955505/parsing-json-with-unix-tools Parsing JSON with Unix tools I'm trying to parse JSON returned from a curl request, like so: curl 'http://twitter.com/users/username.json' | sed -e 's/[{}]/''/g' | awk -v k="text" '{n=split($0,a,","); for (i=..
str="abc@naver.com;bcd@naver.com;cde@naver.com" mails=$(echo $str | tr ";" "\n") for mail in $mails do echo "[$mail]" done https://m.blog.naver.com/PostView.nhn?blogId=qbxlvnf11&logNo=221419256533&proxyReferer=https:%2F%2Fwww.google.com%2F 리눅스 쉘 스크립트 문자열 분리(string split) 명령어 구현 - 출처split 명령어는 구분자(delimiter)를 기준으로 문자열을 분리하는 명령어입니다. 쉘 스크립트에서는 ... blog.naver.com t="one,two,three" a=($(echo $t | tr ..
mkdir -m 777 name https://stackoverflow.com/questions/5786326/how-to-create-a-directory-and-give-permission-in-single-command How to create a directory and give permission in single command How to create a directory and give permission in single command in Linux? I have to create lots of folder with full permission 777. Commands mkdir path/foldername chmod 777 path/foldername I d... stackoverflo..
# check redirect curl -i -L url https://hadoop.apache.org/docs/r1.0.4/webhdfs.html WebHDFS REST API WebHDFS REST API Document Conventions MonospacedUsed for commands, HTTP request and responses and code blocks. User entered values. [Monospaced]Optional values. When the value is not specified, the default value is used. ItalicsImportant phrases and words. hadoop.apache.org https://socurites.tisto..
a:hover, a:focus { animation-duration: 3s; animation-name: rainbowLink; animation-iteration-count: infinite; } @keyframes rainbowLink { 0% { color: #ff2a2a; } 15% { color: #ff7a2a; } 30% { color: #ffc52a; } 45% { color: #43ff2a; } 60% { color: #2a89ff; } 75% { color: #202082; } 90% { color: #6b2aff; } 100% { color: #e82aff; } } https://medium.com/guleum/css-%EB%A7%81%ED%81%AC-hover%EC%8B%9C-%EB%..
# pip install pytz from pytz import timezone from datetime import datetime fmt = "%Y-%m-%d %H:%M:%S %Z%z" UTC = datetime.now(timezone('UTC')) KST = datetime.now(timezone('Asia/Seoul')) print UTC print KST print UTC.strftime(fmt) print KST.strftime(fmt) https://technote.kr/202 [04-3] Python - Timezone 변경하기 개인적으로 사용하고 있는 서버의 System time은 UTC(세계표준시간)로 설정되어 있다. KST로 설정하면 별다른 코드없이 바로 해당 시간 사용이 가능하겠지만..
![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/bYJrc7/btqDureAgTM/9oVUHHmbIpOtRPPaUe6me1/img.jpg)
인생은 '의사결정 게임' 의사결정 능력을 획기적으로 변화시켜 줄 수 있는 책 작은 선택들이 모여 인생의 격차가 된다. 클루지를 이해한다. == '심리적 오류'는 큰 영향을 준다. 인류가 진화과정에서 새로운 도전을 하고 행동하는 것을 꺼리도록 진화했기 때문이다. 사람의 인생을 방해하는 '과거의 유물'을 가리켜 클루지라고 한다. "내가 지금 무언가를 시작하기 두려워하는 건 클루지 때문이다. 새로운 걸 꺼려하는 건 쓸데없는 유전자가 박혀 있기 때문이다." 더 이상 두려워하지 말고 시작하기를... 100명이 망설이는 일을 당장 시작한다면 100명 중에 1등으로 출발할 수 있다. 의사결정이나 생각의 오류 들을 줄인다면 수년간 인생을 허비했던 일도 바로잡을 수 있다. 100가지 판단 중에 20개만 옳은 판단을 하던..
- Total
- Today
- Yesterday
- 테슬라 크레딧 사용
- 테슬라 리퍼럴 코드 혜택
- 모델y
- COUNT
- 테슬라 리퍼럴 코드
- 테슬라 레퍼럴 코드 확인
- 연애학개론
- 유투브
- 테슬라 레퍼럴 적용 확인
- 개리마커스
- 인스타그램
- 테슬라 추천
- 테슬라 레퍼럴
- wlw
- 테슬라 리퍼럴 코드 생성
- 클루지
- Kluge
- 김달
- 책그림
- 레퍼럴
- 모델 Y 레퍼럴
- 팔로워 수 세기
- 테슬라
- 메디파크 내과 전문의 의학박사 김영수
- 할인
- Bot
- 어떻게 능력을 보여줄 것인가?
- 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 |