본문 바로가기

분류 전체보기

(73)
JAVE List Data를 JSON 으로 변환 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 function fn_javaListToJson(obj){ var resultJson = []; var str = obj.split(obj.substring(0, obj.indexOf('list=[{')) + 'list=[{').join('').split('}]}').join('');// 리스트로 담기위해 list의 양끝 문자열 제거 var rows = str.split('}, {'); //str는 배열 for(var i = 0; rows.length > i; i++){ // rows 배열만큼 for돌림 var cols = rows[i].split(', '); var rowData = {}; ..
git reset, revert로 이전 커밋으로 돌리기 https://kyounghwan01.github.io/blog/etc/git/git-reset-revert/#%E1%84%8B%E1%85%B5-%E1%84%8C%E1%85%A1%E1%86%A8%E1%84%8B%E1%85%A5%E1%86%B8%E1%84%8B%E1%85%B3%E1%86%AF-%E1%84%92%E1%85%A1%E1%84%82%E1%85%B3%E1%86%AB-%E1%84%8B%E1%85%B5%E1%84%8B%E1%85%B2 git reset, revert로 이전 커밋으로 돌리기 git reset, revert로 이전 커밋으로 돌리기, git, github, issue, projects, milestone kyounghwan01.github.io
[IntelliJ, Tomcat, spring boot dev tools] 소스코드 변경사항을 서버 재기동 없이 적용하는 방법 서버를 실행 시킨 후, 위의 소스 코드를 "Hello" 로 변경 후에 웹브라우저를 새로고침하면 변경사항이 적용되지 않는다. 해결 방안 - https://alwaysbemoon.tistory.com/107
[크롬] 크롬 개발자도구 붙여놓기 오류 Warning: Don’t paste code into the DevTools Console that you don’t understand or haven’t reviewed yourself. This could allow attackers to steal your identity or take control of your computer. Please type ‘allow pasting’ below to allow pasting. console 에 allow pasting 붙이기
[Linux] 명령어 https://dora-guide.com/linux-commands/ 리눅스 명령어 모음 BEST 50 초보자 및 전문가용 - 도라가이드 리눅스 명령어 모음 입니다. 오늘날 배울 수있는 가장 유용한 리눅스 명령어들이며, 리눅스 기본 명령어와 함께 정기적으로 사용할 50가지 최고의 Linux 명령어를 간략하게 요약하여 이 안내서를 dora-guide.com # 파일 편집, https://javaoop.tistory.com/43 [Linux] vi, cat 파일 편집, 파일 읽기 명령어 리눅스 vi와 cat 알아보기 Cat 명령어 - 출력만 가능 (읽기,보기) 1. 파일 열기(출력,보기) Cat [파일이름] 2. 각 행에 번호 붙여서 출력하기 cat -b [파일이름] 3. 빈 행에 번호 붙여서 출력하기 ca..
[jenkins] https://yeonyeon.tistory.com/56 [Jenkins] Jenkins 개념부터 설치, 연동까지 회사 스터디로 Jenkins 공부를 하게 되었다... Jenkins : www.jenkins.io/ Jenkins Jenkins – an open source automation server which enables developers around the world to reliably build, test, and deplo.. yeonyeon.tistory.com # git + jenkins 연동 test2 [ success ] https://roqkfwkdldirl.tistory.com/31 Jenkins와 github 연동 (sonarqube제외^^) 1. Github 계정의 Jenk..
[Rust] Rocket + Diesel(mysql) # 참고 URL : https://cprimozic.net/blog/rust-rocket-cloud-run/ Deploying a REST API with Rust, Diesel, Rocket, and MySQL on Google Cloud Run - Casey Primozic's Homepage cprimozic.net # terminal 에서 실행 1 cargo install diesel_cli --no-default-features --features mysql cs ## EROOR 1 2 3 4 error: failed to compile `diesel_cli v1.4.1`, intermediate artifacts can be found at `/tmp/cargo-installl2UFJW` Ca..
이진, 10 진수, 16 진수, ASCII 코드 및 일반 텍스트 간 변환 프로그램 https://ko.rakko.tools/tools/74/ 이진 번역기 / 변환기 : 이진, 십진, 헥사, 아스키 코드 및 일반 텍스트 | RAKKOTOOLS🔧 이진수, 10 진수, 16 진수, ASCII 숫자 및 텍스트 간 변환 ko.rakko.tools
encode decode 변환 프로그램 https://dencode.com/ Encoding & Decoding Online Tools Encoding and Decoding site. e.g. HTML Escape / URL Encoding / Base64 / MD5 / SHA-1 / CRC32 / and many other String, Number, DateTime, Color, Hash formats! dencode.com
[rust] windows10 ERROR # error : linker `link.exe` not found 1 2 3 4 5 6 7 8 9 10 11 12 error: linker `link.exe` not found | = note: 지정된 파일을 찾을 수 없습니다. (os error 2) note: the msvc targets depend on the msvc linker but `link.exe` was not found note: please ensure that VS 2013, VS 2015, VS 2017 or VS 2019 was installed with the Visual C++ option error: aborting due to previous error [Done] exited with code=1 in 0.704 se..