lsof -ti:80 | xargs kill -9 lsof -ti:80 1234 ps -ef | grep 1234 https://stackoverflow.com/questions/11583562/how-to-kill-a-process-running-on-particular-port-in-linux How to kill a process running on particular port in Linux? I tried to close the tomcat using ./shutdown.sh from tomcat /bin directory. But found that the server was not closed properly. And thus I was unable to restartMy tomcat is ..
https://hashcode.co.kr/questions/475/%ED%85%8D%EC%8A%A4%ED%8A%B8-%ED%8C%8C%EC%9D%BC%EC%97%90-%EC%9E%88%EB%8A%94-%EB%AA%A8%EB%93%A0-%ED%8C%A8%ED%82%A4%EC%A7%80%EB%A5%BC-%EC%84%A4%EC%B9%98%ED%95%98%EB%A0%A4%EB%A9%B4-%EC%96%B4%EB%96%BB%EA%B2%8C-%ED%95%B4%EC%95%BC%ED%95%98%EB%82%98%EC%9A%94 텍스트 파일에 있는 모든 패키지를 설치하려면 어떻게 해야하나요? 발생하는 문제 및 실행환경 가상 환경에 원래 갖고 있던 패키지를 전부 설치하려고 합니다. 다음과 같이 패키지 목록을 requireme..
https://stackoverflow.com/questions/13673060/split-string-into-strings-by-length Split string into strings by length? Is there a way to take a string that is 4*x characters long, and cut it into 4 strings, each x characters long, without knowing the length of the string? For example: >>>x = "qwertyui" &... stackoverflow.com
https://www.cyberciti.biz/faq/linux-show-directory-structure-command-line/ Linux see directory tree structure using tree command - nixCraft Linux see directory tree structure - Explains how to use Linux tree command to list contents of directories in a tree-like format. www.cyberciti.biz
https://www.tutorialspoint.com/python/string_replace.htm Python String replace() Method - Tutorialspoint Python String replace() Method Advertisements Description Python string method replace() returns a copy of the string in which the occurrences of old have been replaced with new, optionally restricting the number of replacements to max. Syntax Following is www.tutorialspoint.com
M is the maximum number of digits (the precision). It has a range of 1 to 65. (Older versions of MySQL allowed a range of 1 to 254.) D is the number of digits to the right of the decimal point (the scale). It has a range of 0 to 30 and must be no larger than M. https://stackoverflow.com/questions/1818046/what-does-m-d-mean-in-decimalm-d-exactly What does M,D mean in decimal(M,D) exactly? Does an..
sudo apt-get update && sudo apt-get dist-upgrade sudo apt-get install mysql-server sudo ufw allow mysql sudo systemctl start mysql sudo systemctl enable mysql sudo /usr/bin/mysql -u root -p CREATE USER 'seunggabi'@'%' IDENTIFIED BY '********'; GRANT ALL PRIVILEGES ON *.* TO seunggabi@'%'; FLUSH PRIVILEGES; sudo /usr/bin/mysql -u seunggabi -p # open port sudo iptables -I INPUT -p tcp --dport 3306..
https://engineering.linecorp.com/ko/blog/line-notify-with-node-js-python-1-basic/ Node.js와 Python으로 LINE Notify 사용해보기(1) - 기본 - LINE ENGINEERING 안녕하세요. LINE Developer Relations 팀의 Developer Advocate 윤인성입니다. 오늘은 LINE이 무료로 제공하고 있는 LINE Notify API에 대해서 함께 살펴보도록 하겠습니다. 서버를 운영할 때는 서버에 문제가 생겼을 때 등의 상황에서, 이를 즉각적으로 알 수 있는 장치가 필요합니다. 이를 위해서 다양한 Notification API를 활용하게 되는데요. LINE은 무료로 쉽게 사용할 수 있는 Notificat..
it's private https://stackoverflow.com/questions/20677249/why-we-add-underscore-before-variable-name Why we add _ (underscore) before variable name? I know this can be silly question but I actually don't know that why we add _ (underscore) before variable name in java while Variable declaration. I have tried on google but I actually can't find... stackoverflow.com
https://engineering.linecorp.com/ko/blog/line-messaging-api-samplebot/ LINE Messaging API 사용해보기 - LINE ENGINEERING 안녕하세요. 이번 글에서는 LINE에서 제공하는 LINE Messaging API에 대해 간단히 알아보려고 합니다. 채널을 열고 heroku를 이용해 샘플봇을 빌드하고 실행한 후, 내 LINE 계정과 테스트 메시지를 주고 받는 것까지는 코딩이 '하나도' 들어가지 않습니다(단, 기본적으로 git이 설치되어 있고 간단한 사용법은 알고 있다고 가정하겠습니다). 그럼 부담없이 시작해보겠습니다. engineering.linecorp.com https://github.com/happyhj/dhsports-line..
git init git add . git commit -m "init project" git remote add origin https://github.com/seunggabi/repo.git git remote -v git remote set-url origin https://github.com/seunggabi/repo.git git push origin https://geoseong.tistory.com/59 Git : 원격 repository의 연결 url 변경 참고url : https://help.github.com/articles/changing-a-remote-s-url/ Git : 원격 repository의 연결 url 변경 맨 처음 로컬에 Git repository를 아래처럼 세팅 했을 ..
brew install python3 # linux sudo apt-get update && sudo apt-get dist-upgrade sudo apt-get install python3 # mac brew install python brew install python3 python3 -m venv venv source venv/bin/activate pip install --upgrade pip pip -V python --version pip3 -V python3 --version deactivate https://stackoverflow.com/questions/17271319/how-do-i-install-pip-on-macos-or-os-x How do I install pip on macO..
ServiceContext.setContentType("application/octet-stream"); ServiceContext.setHeader("Content-Disposition", disposition); # IE11 - rv:11.0 # IE - MSIE # Edge - Edge # Android - Android # Safari - Safari "attachment; filename=%s", URLEncoder.encode(filename, "UTF-8").replaceAll("\\+", "%20") # Firefox - Firefox # Chrome - Chrome # iPhone - iPhone "attachment; filename=%s", new String(filename.getB..
# 두번 적어줘야 escape 가 된다. '##TEST##' # 쿼리 수행시 '#TEST#' '$$TEST$$' # 쿼리 수행시 '$TEST$' https://crowelee.wordpress.com/2006/09/08/pound-dollar-symbols-in-ibatis/ iBatis에서 ‘#’과 ‘$’ Escape 하기 삽질 iBatis에서 질의 작성중 $를 사용할 필요가 있었다. 가령 다음과 같은 코드.. select decode(isenable, ‘Y’, ‘${red}’, ‘${blue}’) || name from item 그런데.. $ 문자가 iBatis에서 사용하는 것이라고 오동작을 하고 있었다. 쿼터… crowelee.wordpress.com
# Locale unaware '{:,}'.format(value) # For Python ≥2.7 f'{value:,}' # For Python ≥3.6 Locale aware # import locale locale.setlocale(locale.LC_ALL, '') # Use '' for auto, or force e.g. to 'en_US.UTF-8' '{:n}'.format(value) # For Python ≥2.7 f'{value:n}' # For Python ≥3.6 https://stackoverflow.com/questions/1823058/how-to-print-number-with-commas-as-thousands-separators How to print number with c..
- Total
- Today
- Yesterday
- 개리마커스
- COUNT
- 모델y
- 테슬라
- 김달
- 메디파크 내과 전문의 의학박사 김영수
- follower
- 팔로워 수 세기
- 인스타그램
- 테슬라 레퍼럴 적용 확인
- 테슬라 크레딧 사용
- wlw
- 연애학개론
- 모델 Y 레퍼럴
- 테슬라 레퍼럴
- 테슬라 추천
- Kluge
- 테슬라 리퍼럴 코드 생성
- 할인
- 유투브
- 클루지
- 테슬라 리퍼럴 코드
- 어떻게 능력을 보여줄 것인가?
- 책그림
- 레퍼럴
- 테슬라 리퍼럴 코드 혜택
- 테슬라 레퍼럴 코드 확인
- Bot
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |