본문 바로가기

분류 전체보기

(78)
Eclipse integrate with Github(이클립스 깃허브 연동) eclipse와 원격 저장소의 연결 방법은 크게 2가지이고 후자의 방법을 추천한다. 1. eclipse에서 github와 연결하기 clone해오기(git reposit 자동생성) 직접 git reposit 만들어서 커밋하기 이 말이 이해가 안 갈수가 있다. local에서 eclipse-workspace와 git repository라는 폴더 2개에서 eclipse-workspace에서 작업을 하고 git repository폴더에 올리는 식이다. GUI를 지원을 하지만 컴팩트한 환경이 아니기에 과감히 포기. +eclipse 연결할 때 따로 github에서 토큰을 발행 후 인증을 해줘야하는 것으로 바뀌었다.아무것도 모르고 이메일과 비밀번호를 입력 칸에 넣는다면 git-receive-pack not permit..
[Error] MySQL Could not acquire management access for administrationsolution solution 실행 console(window + R) services.msc 입력 MySQL 찾아서 수동으로 실행 시켜주기 +8.026 최신 버전에서는 connection상태에서도 Workbench는 런타임 에러가 있으니 좀 더 낮은 버전으로 하는 것을 추천. Mysql Workbench : current profile has no WMI enabled solution mysql workbench의 버그이므로 단순하게 재접속하면 풀린다.
[Error] Tomcat the server cannot be started because one or more of the ports are invalid. open the server editor and correct the invalid ports. 라는 에러의 발생. why? tomcat설치 후 8080으로 http/1.1이 연결되있었지만, admin port번호가 공란으로 되있었다. solution server tab의 overview에서 tomcat admin port and http/1.1를 각기 다른 번호로 포트번호를 수정을 하면된다. 참고로 이미 사용중이거나, 다른곳에 쓰이는 포트번호 괜히 건들지말고 무난하게 8081같은걸로 하자. hosting은 http/1.1번호로 되지만 admin port 설정이 이상해도 ..
Web Server vs Application Server 웹서버(WS)와 웹어플리케이션서버(WAS)에 관한 포스팅 입니다. static page 와 dynamic page Static Pages Web Server는 파일 경로를 받아, file contents를 반환 항상 동일한 페이지 반환(img, html, js.. 컴퓨터에 저장되어 있는 파일) Dynamic Pages 인자에 맞는 동적인 contents를 반환 웹 서버에 의해 실행되는 프로그램을 통해 만들어진 결과물(컴퓨터에 저장되어 있는 파일x) Servlet: WAS 위에서 돌아가는 Java Program 개발자는 Servlet에 doGet()을 구현 Web Server와 WAS Web Server의 개념 하드웨어 : Web 서버가 설치되어 있는 컴퓨터 소프트웨어 : 웹 브라우저(클라이언트)로 부터 ..
Python GIL(Global Interpreter Lock) about Global Interpreter Lock in python. korean version what is the GIL? Global Interpreter Lock is a mutex that allows only one thread to hold the control of the python interpreter how does python works? interpreter is loaded in memory python code is run through interpreter python's memory management python object's creation and destruction is managed through reference count refcount is attribu..
N Notation For Python(파이썬 에서의 진법 변환) about binary, decimal, octal and hex conversion for Python(파이썬으로 2진법 8진법 10진법 16진법 변환) Notation binary and decimal conversion binary → decimal : The multiplier of 2 increases by one $1010101(2) -> 2^6 + 2^4 + 2^2 + 2^0 = 64 + 16 + 4 +1 = 85$ decimal → binary : Divide by 2 each time 85 = (42)2 + 1 = 85 = (21)2 + 0 = 42 = (10)2 + 1 = 21 = (5)2 + 0 = 10 = (2)2 + 1 =5 =(1)2 + 0 = 2 =(0)*2 + 1 = 1 → ..