분류 전체보기(229)
-
git bash git 계정변경
meaownworld.tistory.com/78
2021.03.17 -
대출관련
신용(거래)융자 : 주식매수를 할 때 필요한 부족금액을 신용대출로 빌려드리는 서비스 주식 담보대출 : 보유중인 주식을 담보로 자금을 대출받는 서비스 예탁증권 담보대출 : 보유중인 유가증권 (주식,펀드,채권,ELS/DLS 등)을 담보로 현금을 대출받는 서비스 주식매도대금 담보대출 : 주식매도하고 매도금액을 결제 전에 먼저 바로 사용할 수 있는 단기대출 서비스
2021.03.16 -
does not find tools .jar-
does not find tools .jar 시스템이 JRE 폴더경로를 잘못 참조하고 있어서 발생하는 에러 gradle.properties 에 아래와 같은 코드를 추가한다. #fastlane 에러 org.gradle.java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_271.jdk/Contents/Home
2021.03.11 -
[fastlane]fastlane beta - Permission denied - /Users/gradlew
Wow, that was weird since I didn't change anything with permissions. Anyway, chmod a+x gradlew solved problem 참조 : github.com/fastlane/fastlane/issues/9995
2021.03.10 -
[fastlane] setup and test 2021.03.10
-
curl to java code (HttpURLConnection, URL, JSONparser,JSONObject)
curl to java code (HttpURLConnection, URL, JSONparser,JSONObject) 아래와 같은 curl이 있을 때, curl -H 'Authorization: Basic {인증키}' -XGET 'myurl' 자바코드 String url = "myurl" String authorizationKey = "Basic {인증키}"; URL urlObject = null; HttpURLConnection con = null; StringBuffer response = new StringBuffer(); try { urlObject = new URL(url); con = (HttpURLConnection) urlObject.openConnection(..
2021.03.10