본문 바로가기
반응형

방법55

How to check target os version of dylib library file on Mac OS (Mac OS에서 dylib 라이브러리 파일의 타겟 os 버전 확인하는 방법) How to check target os version of dylib library file on Mac OS (Mac OS에서 dylib 라이브러리 파일의 타겟 os 버전 확인하는 방법) 빌드한 라이브러리의 타겟 OS 버전을 확인이 필요할 때가 있다. 그럴 때는 otool 명령어에 간단한 옵션을 줘서 확인할 수 있다. 터미널을 열고 아래와 같이 커맨드를 내려보자! (Sometimes it is necessary to check the target OS version of the built library. In such a case, you can check by giving a simple option to the otool command. Open a terminal and run the comma.. 2022. 10. 4.
[Solved][qml] An abstract class cannot be instantiated. (추상 클래스를 인스턴스화 할 수 없습니다) [qml] An abstract class cannot be instantiated. 추상 클래스를 인스턴스화 할 수 없습니다. (추천) Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 강의 - 입문편 https://inf.run/3XmSH Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 - 입문편 강의 - 인프런 Qt QML과 C++를 사용하여 크로스플랫폼 애플리케이션 개발에 입문할 수 있습니다. 해당 강의에서는 윈도우 응용 프로그램 타겟으로 개발을 진행합니다., 강의 주제 📖 이 강의를 통해 참가자들은 www.inflearn.com 배경 지식 (background) 추상 클래스 : 순수 가상 함수를 1개 이상 가지고 있는 클래스 순수 가상 함수 : 가상 함수 중에 구현부(중괄호 내부)를 정.. 2022. 9. 23.
How to write a project scenario (UML, Usecase) (프로젝트 시나리오 작성 방법) How to write a project scenario (UML, Usecase) 프로젝트 시나리오 작성 방법 (UML, 유스케이스) 유스케이스는 고객의 요구사항을 정리하기 위해 사용된다. (고객(비개발자) -> 업주(개발자)) 실무에서도 고객의 요청사항을 개발자에게 전달하는데 유용하게 사용된다. (Use cases are used to organize customer requirements. (Customer (Non-Developer) -> Owner (Developer)) In practice, it is usefully used to deliver customer requests to developers.) 시나리오? 유스케이스? (scenario? use case?) 시나리오란 사용자가 프로그.. 2022. 9. 4.
[Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) [Linux] Change and add ssh port number (ssh 포트 번호 바꾸기, 추가하기) 리눅스의 OpenSSH 설정 파일에서 포트 번호를 수정 또는 추가하면 된다. (You can edit or add the port number in the Linux OpenSSH configuration file.) sudo vim /etc/ssh/sshd_config #Port 22 -> Port 22 -> Port 2022 service sshd restart 또는 /etc/rc.d/init.d/sshd restart 2022. 9. 3.
반응형