apt install로 패키지를 설치하는데 E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? 이라며 fix-missing을 시도해보라고 한다. :~$ apt update --fix-missing 시도해보았지만, Some index files failed to download. They have been ignored, or old ones used instead. 이런 오류를 뿜으며 업데이트가 되지 않는다. :~$ sudo vi /etc/apt/sources.list # deb cdrom:[Ubuntu-Server 14.04.5 LTS _Trusty Tahr_ - Release amd64 (201608..
Jade's Hello World
Ajax 통신으로 공유하기 버튼을 클릭한 횟수와 공유한 게시글을 통해 유입된 인구수를 조사하기 위해 각각의 php파일을 만들고 서버와 통신을 시도했는데, 아래와 같은 오류를 내보냈다. Access to XMLHttpRequest at 'https://url/ajax.php' from origin 'https://this\_url/' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.로컬에서 테스트했을 때는 같은 url상의 경로이기 때문에 당연하게 되었던 것이, 실제 경로에 스크립트 삽입 후 url이 바뀌었기 때문에 C..
for(초기화;조건문;증감문) { 반복할 내용; } 예시) #include int main(void) { int sum, i; sum = 0; for(i=1;i
문자 출력하기 > DC(Device Context) : 출력에 필요한 모든 정보를 가지는 구조체 switch(iMessage) { case WM_LBUTTONDOWN: hdc = GetDC(hWnd); TextOut(hdc,135,115,"Beautiful Korea",15); //TextOut(hdc, x좌표, y좌표, "문자열", 공백포함 문자열 길이); ReleaseDC(hWnd,hdc); return 0; 실행 결과 문자 출력 (2) [한줄 출력] > SetTextAlign(HDC hdc, 정렬모드) : 문자열 정렬 함수 : 정렬 모드 - TA_TOP - TA_BOTTOM - TA_CENTER - TA_LEFT - TA_RIGHT - TA_UPDATECP - 바로 이전에 출력한 끝 위치(Curre..
윈도우 프로그래밍 처리 과정 WndClass 정의 RegisterClass CreateWindow ShowWindow 메세지 루프 윈도우 특성을 정의 윈도우 클래스 정의 메모리에 윈도우 저장 윈도우를 화면에 표시 사용자의 메세지 처리 ▶ 기본 윈도우 배경색 사용하기 1) GetStockObject() winclass.hbrBackground = GetStockObject(WHITE_BRUSH); WHITE, GREY, BLACK 등 윈도우에서 기본적으로 제공하는 브러쉬만 사용 가능함. ▶ 브러시 만들어서 사용하기 1) CreateSolidBrush() winclass.hbrBackground = CreaeSolidBrush(RGB(0,0,255)) 2) CreateHatchBrush() winclass...