Android Webview custom error page
Let’s launch a custom error page when the network is down in the Android WebView App.
Let’s launch a custom error page when the network is down in the Android WebView App.
버스에서 간단히 읽으려고 집어든 책인데, 얇은 두께에도 불구하고 의외로 깊이가 있어 놀랐다. 일단 이 책은 초보자용 책은 아니다. 책 표지에도 초중급 독자를 대상으로 한다고 (작게) 써져있다. Vue.js에 대해 어느 정도 알고 있고, 적어도 실전 프로젝트로 개발을 하고 있는 분들...
I picked this book up to read casually on the bus, but despite its slim thickness it had surprising depth. To begin with, this is not a book for beginners. T...
Android Honeycomb부터는 Main Thread에서 네트워킹 처리를 하면 안된다. 이를 어겼다가는 이런 에러가 뜬다!
Starting from Android Honeycomb, you must not do networking on the Main Thread. Break this rule and you’ll get an error like this!
설문조사 서비스를 만들었다. Vue.js와 SurveyJS를 사용하여 SPA로 만들었다. 소스코드는 여기서 볼 수 있다.
I built a survey service. I built it as an SPA using Vue.js and SurveyJS. You can find the source code here.
SurveyJS로 설문조사 서비스를 개발하다가 발견한 것을 공유한다.
Here’s something I discovered while building a survey service with SurveyJS.
무슨 서비스가 되었든 로그인(인증)을 구현하기란 상당히 까다롭다. 요즘에는 좋은 라이브러리나 모듈이 많이 있어 그 고통에서 많이 해방되었지만, 여전히 이런저런 사정상 직접 구현해야 하는 경우도 있다. 이번에는 내가 그런 경우다. 그래서 하나 만들어보았다. 로그인 화면이 수문장처럼 ...
No matter what kind of service it is, implementing login (authentication) is quite tricky. These days there are plenty of good libraries and modules that hav...
Vue.js로 만든 기존 코드를 es6로 바꾸는 작업을 하고 있다. 하다보니 methods를 정의할 때, 화살표 함수를 사용하면 안된다는 사실을 알게됐다. 아래와 같이 정리해 보았다. 이 글로부터 큰 도움을 받았다.
I’ve been working on converting existing Vue.js code to es6. While doing so, I learned that you should not use arrow functions when defining methods. I’ve pu...
요즘 종일 Vue.js만 보고 있었더니, 함께 일하는 나이 지긋한(?) 개발자께서 이런 말을 하신다.
I had been staring at nothing but Vue.js all day long, when a seasoned (?) developer I work with said this to me:
Linux에서 Java10을 설치하는 방법을 정리해보았다. 우분투와 리눅스 민트에서 다 잘 설치된다. linuxuprising의 문서를 참조하였다.
I’ve put together how to install Java 10 on Linux. It installs just fine on both Ubuntu and Linux Mint. I referred to the linuxuprising documentation.
axios에는 HTTP request 여러 개를 한번에 묶어 던지는 기능이 있다. 이 기능을 사용하여 기껏 개발해놨는데, 기능 변경으로 인해 코드를 지워야 한다. 잊기 전에 박제해두자.
axios has a feature that lets you bundle several HTTP requests and fire them off at once. I went to the trouble of building something with this feature, but ...
AWS의 서버리스 웹 애플리케이션 구축 튜토리얼을 따라하고 있다. AWS를 내가 직접 만지는건 3년만이다. 그간 모르긴 몰라도 많이 바뀌었다. aws cli조차도 구성하기 힘들었다. 튜토리얼을 따라하기 위하여 aws cli로 S3를 만질 수 있도록 설정하는 과정을 정리해보았다.