Tip(24)
-
[Java] Stream to List
일반적으로 Stream을 List로 바꾸는 방법은 다음과 같다. 하지만 Programmers의 JDK 14.0.2 컴파일 환경은 toList() 메소드를 지원하지 않는다. collect(Collectors.toList())를 사용하면 대체가 가능하다.
2023.04.12 -
[해커톤] 웹 개발 팁 정리
해커톤으로 배포까지 진행한 과정 중 팁 정리 Step 1: 프론트 기초 (index.html 작성) 더보기 * Code alignment in Visual Studio Code IDE * WIndows: [Alt + Shift + F] Mac: [Shift + Option + F] 둘 다 손가락 형태가 비슷하게 나온다. 까먹었으면 [오른쪽 클릭 > 문서 서식]의 단축키 참고. * Import Google Fonts * Visit Browse Fonts - Google Fonts Choose a font style Follow the 'Use on the web' in the drawer box * Background style setting * background-color: url(''); backgr..
2023.04.02 -
[Visual Studio] Error Code: LNK1168 Tip
콘솔의 비정상적 종료에도 LNK1168 오류를 방지할 수 있음
2022.11.16 -
[Java GUI Design- Eclipse] Using WindowBuilder Plug-in 2022.11.01
-
Github Desktop Commit & Fetch
1. 원하는 branch를 선택 (중앙 상단에 Current branch 선택) 2. Title 적고 (description은 선택) 3. Commit to [Branch name] 클릭 4. 이러면 (로컬에서만) 변경사항이 반영됨
2022.10.13 -
Install OpenCV 4.6.0 & set properties on Visual Studio 2019 in Windows OS
Goal: Windows, Visual Studio 2019 환경에서 OpenCV 4.6.0 사용하기 1. Go to https://opencv.org/releases/ and download OpenCV for Windows 2. Run opencv-4.6.0-vc14_vc15.exe 3. Extract files on the directory 4. After finished extracting, set user/system environment variables 4-1. USER > add OPENCV_DIR = (YOUR_DIRECTORY) \build 4-2. SYSTEM > Path.add( %OPENCV_DIR% \x64\vc15\bin ) 5. Install Visual Studio 2019..
2022.09.12