'Programming'에 해당되는 글 1786건

  1. 2019.01.24 안드로이드 스튜디오 - 앱 이름 변경하기
  2. 2019.01.24 안드로이드 스튜디오 레이아웃 보기
  3. 2019.01.16 opencv cannyedge
  4. 2019.01.16 opencv 원 추정
  5. 2019.01.15 jar 실행하기
  6. 2019.01.10 react.js 2
  7. 2019.01.10 js import babel transpiler
  8. 2019.01.10 js class extend
  9. 2019.01.09 Object.clone() 2
  10. 2019.01.08 spring 변수 생명주기
Programming/android2019. 1. 24. 10:16

manifests/AndroidManifest.xml 에서 android:label로 존재하는데 이걸 바로 수정해도 되지만

 <?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapplication">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>



res/values/strings.xml 에 app_name 이라는 string이 존재하고 이걸 변경하면 된다.

 <resources>

    <string name="app_name">My Application</string>
</resources>


[링크 : https://stackoverflow.com/questions/5443304/how-to-change-an-android-apps-name]

[링크 : https://chobbang.tistory.com/16]

Posted by 구차니
Programming/android2019. 1. 24. 09:58

Do IT 책을 보는데 나랑 다르게 나와서 헤매다가 찾아보니..

눈깔 아이콘에 Show Layout Decorations를 눌러야 상단의 앱 이름이 뜬다.



머.. 그렇다고 해서 My Application 이라는 명칭을 클릭해서 바꿀수 있는건 또 아니니...


Posted by 구차니
Programming/openCV2019. 1. 16. 19:13

cv2.Canny() 함수 사용법


[링크 : https://docs.opencv.org/3.1.0/da/d22/tutorial_py_canny.html]

'Programming > openCV' 카테고리의 다른 글

opencv face detect  (0) 2019.05.10
vscode python3 opencv lint  (0) 2019.05.10
opencv 원 추정  (0) 2019.01.16
OpenCV 분산처리  (0) 2018.04.25
openCV release mode와 debug mode 속도 차이  (0) 2018.03.19
Posted by 구차니
Programming/openCV2019. 1. 16. 19:10


[링크 : https://docs.opencv.org/2.4/doc/tutorials/imgproc/imgtrans/hough_circle/hough_circle.html]

[링크 : https://kr.mathworks.com/help/images/ref/imfindcircles.html]


[링크 : https://code.i-harness.com/ko-kr/q/96763b]

[링크 : http://k-imagineer.tistory.com/7]

[링크 : https://dreamaz.tistory.com/431]

[링크 : https://docs.opencv.org/3.4.1/.../group__imgproc__feature.html#ga47849c3be0d0406ad3ca45db65a25d2d]

'Programming > openCV' 카테고리의 다른 글

vscode python3 opencv lint  (0) 2019.05.10
opencv cannyedge  (0) 2019.01.16
OpenCV 분산처리  (0) 2018.04.25
openCV release mode와 debug mode 속도 차이  (0) 2018.03.19
openCV multicore support  (0) 2018.03.19
Posted by 구차니
Programming/Java2019. 1. 15. 11:06

eclipse에서 그냥 export jar 해서 하니

위의 방법으로는 안되고, 아래 방법으로 하니 되긴 하는데

실행가능한 jar 만드는 법을 좀 찾아 봐야겠다.


javaw -jar 파일명

java -jar 파일명 

[링크 : https://zetawiki.com/wiki/윈도우_jar_파일_실행]


java -cp app.jar com.somepackage.SomeClass 

[링크 : https://code.i-harness.com/ko-kr/q/93dac1]



java -cp filename.jar packagename.classname

으로 실행하면 끝

(실행 오류 나는건 알아서 잡아야지 머.. ㅠㅠ)


+

[링크 : https://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftasks-37.htm]

[링크 : https://ojava.tistory.com/112]

'Programming > Java' 카테고리의 다른 글

java cipher  (0) 2019.11.25
jaxb - Java Architecture for XML Binding  (0) 2019.06.25
Object.clone()  (2) 2019.01.09
javax print  (0) 2019.01.03
jar 만들기 export  (0) 2019.01.03
Posted by 구차니
Programming/react.js2019. 1. 10. 18:54

회사에서 다른 팀이 react 쓴대서 한번 조사.

그나저나..  typescript 이후로 무언가 변환을 해서 쓰는게 유행인건가..


[링크 : https://velopert.com/3613]

[링크 : https://blog.coderifleman.com/2015/06/23/learning-react-1/]

[링크 : https://www.inflearn.com/course/reactjs-web/]

[링크 : https://www.w3schools.com/whatis/whatis_react.as]


[링크 : https://reactjs.org/]

[링크 : https://devhints.io/react]

'Programming > react.js' 카테고리의 다른 글

react import {}  (0) 2019.01.31
react html to jsx  (0) 2019.01.29
webpack react  (0) 2019.01.28
react.js tutorial  (0) 2019.01.28
react.js + spring  (2) 2019.01.28
Posted by 구차니

자바 스크립트 문법이 아니라 자바 문법인줄 알았는데

js에도 import나 class나 extend가 있을 줄이야..


아무튼 찾아보니 ES5랑 ES6 에서 지원하는게 다르다 보니

ES5에 ES6을 지원하기 위해서라도 Typescript 등과 같은 변환용 무언가가 필요한 듯?

[링크 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Statements/import]

[링크 : https://jeong-pro.tistory.com/122]


소스를 다른 소스로 변경하는 녀석들을 이렇게 표현하는 듯

 A source-to-source compiler, transcompiler or transpiler

[링크 : https://en.wikipedia.org/wiki/Source-to-source_compiler]

'Programming > javascript & HTML' 카테고리의 다른 글

HTML video 태그 loop 와 webalizer hit  (0) 2019.02.28
자바 스크립트 다시 공부 - 이벤트 관련  (0) 2019.02.28
js class extend  (0) 2019.01.10
img vertical-align  (0) 2018.12.28
css text-indent  (0) 2018.12.28
Posted by 구차니

'Programming > javascript & HTML' 카테고리의 다른 글

자바 스크립트 다시 공부 - 이벤트 관련  (0) 2019.02.28
js import babel transpiler  (0) 2019.01.10
img vertical-align  (0) 2018.12.28
css text-indent  (0) 2018.12.28
localstorage sessionStorage  (0) 2018.12.18
Posted by 구차니
Programming/Java2019. 1. 9. 21:00

크.. 망할 자바 ㅠㅠ


아무생각 없이 Point 객체를 = 으로 넣어서 복사될 줄 알았는데

(아니 이렇게 관대한 녀석 아니었어?)

계속 값이 초기화 되서 지인에게 물어봤더니 clone()을 쓰라고..


일단은.. call by reference인지 call by value 인지 조금 더 공부해봐야겠다.. -_ㅠ


protected Object clone()

                throws CloneNotSupportedException

Creates and returns a copy of this object. The precise meaning of "copy" may depend on the class of the object. The general intent is that, for any object x, the expression: 

[링크 : https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html#clone()]

'Programming > Java' 카테고리의 다른 글

jaxb - Java Architecture for XML Binding  (0) 2019.06.25
jar 실행하기  (0) 2019.01.15
javax print  (0) 2019.01.03
jar 만들기 export  (0) 2019.01.03
Java SE 8 설치해보려고 했더니..  (2) 2019.01.03
Posted by 구차니
Programming/Java(Spring)2019. 1. 8. 23:02

싱글톤 패턴인데 의도한거랑 다르게 작동하는것 같아서

생명주기가 다른가 하고 찾는 중.. 근데 읽어도 먼 소리인지 모르겠다 ㅠㅠ


[링크 : http://enterkey.tistory.com/300]

'Programming > Java(Spring)' 카테고리의 다른 글

gradle 에 jar 추가하여 빌드하기  (0) 2019.03.08
maven 빌드하기  (0) 2019.03.08
gradle buildship  (0) 2019.01.02
spring for android  (0) 2018.12.28
sts gradule spring boot howto  (0) 2018.12.28
Posted by 구차니