카페검색 본문
카페글 본문
-
[Arduino 실습 24] RS-485통신 ModeBus 프로토클(온습도 data TX) = String READ 2025.05.19해당카페글 미리보기
8]); // Serial.write(rx_data[9]); // Serial.write(rx_data[10]); char *str_buf = strtok(rx_data, ","); while (str_buf != NULL) { Serial.println(str_buf); str_buf = strtok(NULL, ","); } //파싱 if((rx_data[2] & 0x0f) == dev_ID) //device ID...
-
회원정보 화면표시 프로그램 : memberList_GUI.jsp 2026.06.08해당카페글 미리보기
br = new BufferedReader(new FileReader(filePath)); String line; while ((line = br.readLine()) != null) { String[] data = line.split(","); if (data.length == 4) { %> <tr> <td><%= data[0] %></td> <td><%= data[1] %></td> <td><%= data[2...
-
후드티 접는법 개는법 알고 보관하기 2026.04.13해당카페글 미리보기
관련공지보기▶ (function(){'use strict';var a=document.currentScript;let b;const c=(b=a==null?void 0:a.getAttribute("data-payload"))!=null?b:"{}";JSON.parse(c).KEsM4&&document.body.classList.add("sidenav-open-on-init");}).call(this...
-
data _null_; 데이터가 0건일떼 어떻게 처리되죠?? 2008.03.07해당카페글 미리보기
proc sql; create table work.aaa as select * from uesrs; quit; data _null_; set work.aaa; call symput('aaaobs', _n_); run; 그리고 나서 매크로를 돌리다면요 %macro abcd(); %do i=1 %to &aaaobs; . . . . %end; %mend; 이런식으로 작성했을떼 처음...
-
PostgreSQL 한국어 로케일 설정 가이드 2026.05.22해당카페글 미리보기
localedef -i ko_KR -f UTF-8 ko_KR.UTF-8 locale -a | grep ko find / -name "postgresql.conf" 2>/dev/null cd /var/lib/postgresql/data apt-get install -y vim (vi 편집기가 설치되어있지않을겁니다.) vi postgresql.conf vi편집기 들어가면 /lc_time...