Niro EV bumper & headlight removal
Note Open the charging door and connector cap before removing the bumper. (Charging connector is attached to chassis, But charging door and cap are attached on the bumper.) Check that all the ...
Note Open the charging door and connector cap before removing the bumper. (Charging connector is attached to chassis, But charging door and cap are attached on the bumper.) Check that all the ...
우분투 기본 실행 프로그램 설정 리눅스에서 파이썬 파일을 더블클릭해서 실행하면 텍스트 에디터로 열려 매번 VScode로 열기를 해 줘야 하는 불편함이 있었다. 설정에 기본 프로그램 설정 탭이 있었으나, 클릭해도 다른 프로그램이 나오지 않아 아무런 도움이 되지 않았다. 해결법은 간단하다. 우클릭 해서 속성을 연다 세가지 메뉴 중 가장 ...
To open the python file on the Linux system, there was inconvenient to open with Vscode because ubuntu basically opened the file with a text editor. There was a default program setting tab, but ...
Step 1. 인텔 리얼센스 제품군 중 얼굴인식에 특화된 RealSenseID(이하 RSID) 캠을 사용해 보게 되었다. 일반적으로 사용되는 Intel realsense SDK는 RSID에서는 사용할 수 없었다. 이 RSID 사용을 위해서는 아래 주소에서 전용의 SDK를 다운받아야 한다. git clone https://github.com/Int...
It seemed that the general ‘Intel realsense SDK’ is not compatible with RealSenseID(after this, referred to as RSID) So we need to use RSID SDK from https://github.com/IntelRealSense/RealSenseID S...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="widt...
<html> <head> <title>WEB!!</title> <meta charset="utf-8"> <style> @import url('https://fonts.googleapis.com/css2?family=Fascinate&display=swap'); h1 ...
<html> <html> <head> <style> div{ border: 5px solid green; } #container{ display: grid; ...
<html> <body> <h1>Datatype</h1> <h2>Number</h2> <script> document.write(1); document.write('<br>'...
<html> <body> <h1>배열 - Array</h1> <script> let number = ['1', '2', '3'] document.write('배열의 첫번째 데이터는 '+number[0]); ...