본문 바로가기

Programming

(138)
클린코딩/더 나은 코딩을 하는 10가지 방법, 10 Tips for clean code/ better code/ quality code. 클린코딩/더 나은 코딩을 하는 10가지 방법, 10 Tips for clean code/ better code/ quality code. 기본적이면서 필수적인 내용이길래 읽고 번역해봄 It was kinda basic stuff, but necessary things so i translated this article 원본 ( 여기 )Origin ( Here ) Did you ever look into your or your team members code and think ‘What a hack? Why does this method look like a cat was walking on the keyboard?’. If so, then you definitely need to spend some ti..
How to make Date format in Java, 자바 SimpleDateFormat 연월일/날짜 형식, time, 시분초 How to make Date format in Java, 자바 SimpleDateFormat 연월일/날짜 형식, time, 시분초, basic grammar Sameple code public void dateFormatTest() {String dateFormat = "yyyyMMddHHmmss";SimpleDateFormat simpleDateFormat = new SimpleDateFormat(dateFormat);String dateString = simpleDateFormat.format(new Date()); System.out.println(dateString);} You can use various dateFormat string to print different format using ..
How to get image from usb camera using OpenCV in Java, 자바 openCV 이용하여 usb 카메라에서 이미지 저장, c++,영상처리,imageProcessing How to get image from usb camera/webcam using OpenCV in Java, 자바 openCV 이용하여 usb 카메라에서 이미지 저장, c++,영상처리,imageProcessing 보드와 연결된 카메라에서 OpenCV를 이용하여 이미지 캡처~ 단일 이미지 외에 여러 프레임으로 쭉 이어지는 실시간 영상 출력 방법 ( 여기 ) - 아직 //처리과정//1. VideoCapture 객체를 만들어 카메라와 연결해준다.//2. 만든 객체에서 카메라 세팅을 설정한다.//3. 찍는다.//4. 다 끝나면 할당해제 //Process//1. Make VideoCapture object and connect to usb camera//2. Set camera param to the objec..
How to use RxTx libraries, error/bug. RxTx Serial 통신 라이브러리 사용 방법,에러,버그 / Java How to use RxTx libraries, error/bug. RxTx Serial 통신 라이브러리 사용 방법,에러,버그 / Java I got error msg "package gnu.io does not exist", when I make jar file with all jar,dll in the project. referenced stackoverflow ( HERE ) 나의 경우에는 예전에 이미 만들어진 lib 클래스를 사용하거나, jar 파일로 묶는 과정에서 "package gnu.io does not exist" 에러가 발생했다. stackoverflow 에서 참조 ( 여기 ) 추가로, RxTx Serial 통신 라이버리 고질적인 문제가 있다. 아래와 같이, 통신 중에 하드웨어와의 연결이..
How to setup/install Oracle Java OpenJDK with OpenJFX and Eclipse IDE, whole development environment. 오라클 자바 OpenJDK, OpenJFX, Eclipse 전체 개발환경 설치 방법 / javafx, ojdk, ojfx, sceneBuilder How to setup/install Oracle Java OpenJDK with OpenJFX and Eclipse IDE, whole development environment. 오라클 자바 OpenJDK, OpenJFX, Eclipse 전체 개발환경 설치 방법 / javafx, ojdk, ojfx, sceneBuilder 작년부터 openJdk 와 openJfx 를 쓰다가 최근 이클립스에서 뭔지 모르게 에러가 생겨서 전부 지우고 개발환경 재설치를 하면서 순서를 적어보았다. I used openJDK and openJFX last year, but recently eclipse got some errors so I removed all and setup development environment ag..
자바 메모리 누수 체크/확인/고치는 방법, Memory leak check/fix in Java application, cleanCode/좋은코드/oop/객체지향 자바 메모리 누수 체크/확인/고치는 방법, Memory leak check/fix in Java application, cleanCode/좋은코드/oop/객체지향 만들고 있는 Java application 에서 메모리 누수가 의심되어 이것저것 체크하며 검색하던 도중에 읽은 것 중에서 가장 좋았던 글불필요한 부분은 좀 지워버림 The best article I read during searching and checking about memory leak in Java application now I making.I deleted a few useless part of it. 원문 ( 여기 )Origin ( HERE ) **20191004 - 이 포스팅은 전반적으로 자바 프로그래밍 시에 메모리 누수가 일어날..
Android Application Launch checklist, 안드로이드 어플리케이션 앱 출시 체크리스트, ios, 플레이스토어, playstore, appstore, 앱스토어, 어플만들기 Android Application Launch checklist, 안드로이드 어플리케이션 출시 체크리스트, ios, 플레이스토어, playstore, appstore, 앱스토어, 어플만들기 I already made almost of function i wanted to implement, but didn't design yet. That was so hard for me to do decorate.. anyway, I'll launch app asap, just wanna finish. So I read this from google official site, and translate it for studying myself. What IF you wanna do make app with me, th..
Perfecting OO's Small Classes and Short Methods. 완벽한 객체지향의 작은 클래스와 짧은 메소드, Book:ThoughtWorks Anthology, Java,cpp,자바,oop,좋은코드,객체지향프로그래밍 - (#9, Tell, Don't Ask) Perfecting OO's Small Classes and Short Methods. 완벽한 객체지향의 작은 클래스와 짧은 메소드, Book:ThoughtWorks Anthology, Java,cpp,자바,oop,좋은코드,객체지향프로그래밍 - (#9, Tell, Don't Ask) 원글 ( 여기 )Origin ( Here ) TellDontAsk 말해라, 묻지말고 Tell-Don't-Ask is a principle that helps people remember that object-orientation is about bundling data with the functions that operate on that data. It reminds us that rather than asking an o..