git config credential.helper store git config credential.helper cache git config credential.helper 'cache --timeout=3600' git config credential.helper store --global https://www.hahwul.com/2018/08/git-credential-helper.html Git pull/push 시 Password 물어보지 않도록 설정하기(credential.helper) Git pull/push 시 Password 물어보지 않도록 설정하기 www.hahwul.com
UPDATE table_users SET cod_user = (case when user_role = 'student' then '622057' when user_role = 'assistant' then '2913659' when user_role = 'admin' then '6160230' end), date = '12082014' WHERE user_role in ('student', 'assistant', 'admin') AND cod_office = '17389551'; https://stackoverflow.com/questions/25674737/mysql-update-multiple-rows-with-different-values-in-one-query/25674827 MySQL - UPD..
>>> s = "foobar" >>> list(s) ['f', 'o', 'o', 'b', 'a', 'r'] https://stackoverflow.com/questions/4978787/how-to-split-a-string-into-array-of-characters How to split a string into array of characters? I've tried to look around the web for answers to splitting a string into an array of characters but I can't seem to find a simple method str.split(//) does not seem to work like Ruby does. Is ther.....
mvn -f path/to/pom.xml ... https://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException MissingProjectException - Apache Maven - Apache Software Foundation This error indicates that you tried to execute a goal which requires a POM but Maven didn't find a pom.xml file in the directory you invoked it from. In most cases, fixing this is merely a matter of changing the current directory..
java -jar example.jar java -jar example.jar & nohup java -jar example.jar & http://blog.naver.com/PostView.nhn?blogId=moonv11&logNo=221429285547&parentCategoryNo=&categoryNo=16&viewDate=&isShowPopularPosts=true&from=search Spring Boot - jar 실행 1. $ java -jar example.jar- 위와 같이 실행하면 ssh 연결이 끊어질때 프로그램도 같이 종료된다.2. $ j... blog.naver.com https://heowc.tistory.com/38 Spring Boot - jar로 Deploy(배포)하기 S..
java -version J2SE 8 = Version 52 J2SE 7 = Version 51 J2SE 6.0 = Version 50 J2SE 5.0 = Version 49 JDK 1.4 = Version 48 JDK 1.3 = Version 47 JDK 1.2 = Version 46 JDK 1.1 = Version 45 https://dwfox.tistory.com/25 [Java] Unsupported major.minor version 52.0 오류 / 해결 Java Exception : Unsupported major.minor version 52.0 에러 내용 Java Version 52.0 (JDK 8.0) 버전에서 컴파일하고 이하 버전에서 실행할때 발생 에러 Version 별 JDK 버전 ..
ex_list = [ 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'a', 'b', 'c', 'd' ] ex_list = list(set(ex_list)) print(ex_list) # ['a', 'c', 'b', 'e', 'd', 'g', 'f'] https://bluese05.tistory.com/13 python list 값 중복 제거하기 Python 의 List 에 중복된 값이 있을 경우, 중복 제거를 하고 싶은 경우가 있다. 물론 직접 해당 기능을 구현할 수 있으나, 간단한 방법이 있다. 바로 python의 자료형 중 set 을 이용한 방법이다. 자료형 set은.. bluese05.tistory.com
SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version ** # chrome driver version == browser chrome version https://chromedriver.chromium.org/downloads Downloads - ChromeDriver - WebDriver for Chrome WebDriver for Chrome chromedriver.chromium.org chrome://version https://codechacha.com/ko/selenium-chromedriver-version-error/ selenium 버..
# 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로 설정하면 별다른 코드없이 바로 해당 시간 사용이 가능하겠지만..
인생은 '의사결정 게임' 의사결정 능력을 획기적으로 변화시켜 줄 수 있는 책 작은 선택들이 모여 인생의 격차가 된다. 클루지를 이해한다. == '심리적 오류'는 큰 영향을 준다. 인류가 진화과정에서 새로운 도전을 하고 행동하는 것을 꺼리도록 진화했기 때문이다. 사람의 인생을 방해하는 '과거의 유물'을 가리켜 클루지라고 한다. "내가 지금 무언가를 시작하기 두려워하는 건 클루지 때문이다. 새로운 걸 꺼려하는 건 쓸데없는 유전자가 박혀 있기 때문이다." 더 이상 두려워하지 말고 시작하기를... 100명이 망설이는 일을 당장 시작한다면 100명 중에 1등으로 출발할 수 있다. 의사결정이나 생각의 오류 들을 줄인다면 수년간 인생을 허비했던 일도 바로잡을 수 있다. 100가지 판단 중에 20개만 옳은 판단을 하던..
- Total
- Today
- Yesterday
- 테슬라 레퍼럴
- 클루지
- follower
- 어떻게 능력을 보여줄 것인가?
- 유투브
- 테슬라
- 김달
- 레퍼럴
- 테슬라 추천
- Kluge
- 테슬라 레퍼럴 적용 확인
- 책그림
- 테슬라 리퍼럴 코드 혜택
- 개리마커스
- 테슬라 크레딧 사용
- 연애학개론
- 메디파크 내과 전문의 의학박사 김영수
- 모델y
- Bot
- wlw
- 팔로워 수 세기
- 테슬라 리퍼럴 코드 생성
- 모델 Y 레퍼럴
- 인스타그램
- 할인
- COUNT
- 테슬라 레퍼럴 코드 확인
- 테슬라 리퍼럴 코드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |