본문 바로가기

Programming424

python decode error - UnicodeDecodeError: ‘utf-8’ codec can’t decode python decode error - UnicodeDecodeError: ‘utf-8’ codec can’t decode Download file from web in Python 3decode 시에 error 가 발생하면 error 파라미터를 같이 넘긴다. >>> html = html.decode('utf-8') Traceback (most recent call last): File "", line 1, in UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb8 in position 38395: invalid start byte The errors argument specifies the response when the input string can’t.. 2016. 6. 22.
[AHK] 무료 E-BOOK 얻기 https://www.packtpub.com/packt/offers/free-learning# 접속 프로그램 autohotkey GUI 사용법을 익히기 위해서 만들서 보았습니다. https://www.packtpub.com/packt/offers/free-learning# 에 접속해서 등록된 계정에 로그인하여 무료 책을 신청하는 버튼을 클릭하는 프로그램입니다. 최초 exe 파일을 실행한 후 ID, PW 를 입력 후 Save 버튼을 클릭하면 txt 파일이 저장됩니다. 이 후 exe 파일을 실행하면, id.txt, pw.txt 에 저장된 내용을 읽어서 GUI 화면 없이 실행됩니다. 스케쥴 등록을 원할 경우에는, 시간을 선택한 후에 SetSchedule 버튼을 클릭합니다. 스케쥴 제거 시에는 Delete Schedule 버튼을 클릭합니다. 실행파일 지정된 텍스트 파일들에, 아이디와 비밀번호가 모두 있는지 확인합니다... 2016. 5. 28.
[ionic] ionic 프레임워크에서 외부 URL 열기 ionic 프레임워크에서 외부 URL 열기 프로젝트를 생성합니다. ionic start ExampleProject blank --v2 cd ExampleProject ionic platform add ios ionic platform add android cordova inappbrowser 를 설치합니다. ionic plugin add cordova-plugin-inappbrowser 실행할 함수를 추가합니다. launch(url) { this.platform.ready().then(() => { window.open(url, '_blank'); }); } Code Description window.open(‘http://example.com’, ‘_system’); Loads in the system.. 2016. 5. 24.
[ahk] packtpub.com 에서 제공하는 무료 ebook을 받기 위한 프로그램 packtpub.com 에서 제공하는 무료 ebook을 받기 위한 프로그램 스케쥴러로 매일 동작하도록 설정 필요.id.txt, pw.txt 에 각각 아이디와 비밀번호를 입력하여, 같은 폴더에 위치하도록 함. 실행파일 을 실행하면, Internet Explorer가 실행되어, 지정한 주소로 접속함. 전체 소스 #NoEnv #SingleInstance force SendMode Input SetWorkingDir %A_ScriptDir% FileRead, Loginname, id.txt FileRead, Password, pw.txt Loginname := Trim(Loginname) Password := Trim(Password) URL = https://www.packtpub.com/packt/offer.. 2016. 5. 22.
[ionic] Promise resolve 으로 변경 [ionic] Promise resolve 으로 변경 home.ts getList(page) { return new Promise(resolve => { this.dataportal.getList(page).subscribe((data) => { if (!data.response.body.items.item) resolve(true); for (let d of data.response.body.items.item) { this.datas.push(d); } resolve(true); }, e=> console.log("error") , () => console.log("complet")); }); } doInfinite(infiniteScroll: any) { console.log('doInfinite,.. 2016. 5. 17.
[ionic] open api 로 데이터 가져와서 적용하기 [ionic] open api 로 데이터 가져와서 적용하기 cordova-plugin-whitelist 추가하기 ionic plugin add cordova-plugin-whitelist http://www.gajotres.net/ionic-2-making-rest-http-requests-like-a-pro/ INSTALL CORDOVA WHITELIST PLUGIN If you’re using Cordova 4+ and especially if you’re accessing remote content don’t forget to install Cordova Whitelist plugin: cordova plugin add cordova-plugin-whitelist Open www folder and.. 2016. 5. 17.