본문 바로가기

Face to something

(6)
해결)Jupyter notebook does not launch due to ssl error in windows 근래 나는 구글에 아래와 같은 영문을 검색해댔다. 이유는 잘 되던 jupyter notebook이 갑자기 실행시키면 바로 꺼지고, cmd 창에서 jupyter notebook을 검색하면 에러가 났기 때문이다. python 입문자라 관련에러는 잘 모르겠지만 Anaconda 재설치만 2번해봤고, 결과는 똑같았다. 다른 명령으로 해도 무조건 ssl 에러만 뱉으니...답이 없었다. max retries exceeded with url: /simple/pip/ (caused by sslerror("can't connect to https url because the ssl module is not available. in windows warning: pip is configured with locations t..
JSON 이 뭐니? JSON on(JavaScript Object Notation) - 자바스크립트의 객체를 문자열로 표현하는 방법프로그램간에 전달하기 편리, 서버에서 데이터를 가져와서 브라우저에 표현할때 Server 에서 Browser로 보낼때 json 형태로 전송하고,수신한 Browser는 javascript를 통해 해당 데이터를 parsing하여 문서에 반영. JSON APIJSON.stringify(object) -인자로 받은 객체를 JSON 문자열로 반환.JSON.parse(string) -인자로 받은 문자열을 Javascript Object로 변경하여 반환.
AJAX 의미와 기본 동작에 대하여.. AJAX (Asynchronous JavaScript and XML) - 페이지를 이동하지 않고도 자바스크립트를 통해 HTTP Request를 보내고 그 응답을 받아 처리할 수 있는 기술을 의미. var req = new XMLHttpRequest(); //XMLHttpRequest 객체가 만들어지고 그 변수가 저장됨.req.onreadystatechange = function a (){ //req변수에 onreadystatechange 이벤트 추가.console.log(this.readyState, this.status); if(this.readyState==4&&this.status==200){ //모든 응답이 수신되고, Response code값이 200이면,console.log(this.respo..
function 의 scope관련/ 구구단문제 구구단 2단에서 9단까지 출력하는 스크립트를 구현해보는데,아래와 같은 스크립트에서 문제가 생겼다.!뭐가 잘못되었을까? function printTimesTable(a){ for( i = 1 ; i
디렉토리에 install.res.1028.dll 와 같은 파일은 뭐지? 언젠가부터 D드라이브에 아래와 같은 파일이 생성되어있었다.install.exeinstall.res.1028.dllinstall.res.1031.dllinstall.res.1033.dllinstall.res.1036.dllinstall.res.1040.dllinstall.res.1041.dllinstall.res.1042.dllinstall.res.2052.dllinstall.res.3082.dllvcredist.bmpglobdata.iniinstall.inieula.1028.txteula.1031.txteula.1033.txteula.1036.txteula.1040.txteula.1041.txteula.1042.txteula.2052.txteula.3082.txtVC_RED.MSIVC_RED.cab 그냥..
IE11, 개발자도구 에러 Exception in window.onload: Error: An error has occurredJSPlugin.3005 해결. 얼마 전 IE9를 사용하다가 IE11 setup파일을 설치했다.그런데 개발자 도구(F12) 에서 콘솔창을 이용하려 했더니 콘솔창에는 빈창이, DOM탐색기에는 아래와 같은 에러가 발생했다. Exception in window.onload: Error: An error has occurredJSPlugin.3005 이게 무언가 검색했더니https://connect.microsoft.com/IE/feedback/details/1053496/f12-developer-tools-dom-explorer-exception-in-window-onload-in-11-0-9600-17501-update-11-0-15F12 Developer Tools DOM Explorer Exception in window.onload ..