본문 바로가기
반응형

HOW TO4

[Qt Guide][1] Setting Qt development environment on Apple Silicon (m1) Mac (애플실리콘(m1) 맥에서 Qt 개발 환경 세팅) [1] Setting Qt development environment on Apple Silicon (m1) Mac (애플실리콘(m1) 맥에서 Qt 개발 환경 세팅) (추천) Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 강의 - 입문편 https://inf.run/3XmSH Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 - 입문편 강의 - 인프런 Qt QML과 C++를 사용하여 크로스플랫폼 애플리케이션 개발에 입문할 수 있습니다. 해당 강의에서는 윈도우 응용 프로그램 타겟으로 개발을 진행합니다., 강의 주제 📖 이 강의를 통해 참가자들은 www.inflearn.com 추진력을 얻기 위한 준비 단계 (Preparatory steps to gain momentum) Qt 프레임워크 개요 (Q.. 2023. 8. 14.
[Flutter][Solved] The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' [Flutter][Solved] The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' 문제 상황 (Problem) Scaffold의 appBar에 Widget을 대입하면, 아래와 같은 빌드 에러가 발생한다. [English](If Widget is assigned to Scaffold's appBar, the following build error occurs.) The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' 해결 방법 (Solution) Widget을 반환하는 대신에 Preferred.. 2023. 7. 28.
[Solved][Linux] Count grep results: wc command (grep 결과의 개수 세기: wc 명령어) [Solved][Linux] Count grep results: wc command (grep 결과의 개수 세기: wc 명령어) grep의 결과가 너무 많아서 카운트하기 어려울 때 wc -l 옵션을 사용하면 간단히 grep 결과의 전체 라인 행 수를 셀 수 있습니다. ex) grep -r "mem" ./ | wc -l wc 명령어 옵션 -c 지정 파일의 byte -m 지정 파일의 문자 개수 -l 지정 파일의 총 행 개수 -w 지정 파일의 총 단어 개수 -L 지정 파일의 모든 행 중, 가장 길이가 긴 행의 문자 개수 (When there are too many grep results to count, The wc -l option allows you to simply count the total numbe.. 2022. 8. 24.
[Solved][Linux] source Command Description (source 명령 설명) [Solved][Linux] source Command Description source 명령 설명 source는 쉘 스크립트 명령이 childe 프로세스가 아닌, 현재 실행중인 프로세스에서 실행되도록 하는 명령어! 덕분에 스크립트가 끝났을때 바로 명령어를 적용시킬 수 있음 ex) source ./bashrc (source is a command that allows shell script commands to be executed in a currently running process, not in a child process! This allows you to apply the command as soon as the script is finished ex) source ./bashrc) 2022. 8. 24.
반응형