'2018/09/13'에 해당되는 글 5건

  1. 2018.09.13 raspbian stretch - node.js
  2. 2018.09.13 라즈베리 3B stretch 한글 설정
  3. 2018.09.13 uas - USB Attached SCSI
  4. 2018.09.13 mariadb 캐릭터 셋
  5. 2018.09.13 node.js mysql 모듈
embeded/raspberry pi2018. 9. 13. 23:14

$ node --version

v8.11.1


아주 최신은 아니지만 jessie의 v0.10 에 비하면 천국인듯?



+

2018.09.14

LTS로 8.12.0 쓰고 있는데

그래놓고는 정작 10.10.0 최신버전을 기억하고 있었던 대참사.. -_-


stretch에 들은 버전은 신버전이니 걱정없이 써도 될 듯

'embeded > raspberry pi' 카테고리의 다른 글

라즈베리 파이 3 - 블루투스 / wifi  (2) 2018.09.15
라즈베리 파이 3B 블투/무선랜  (2) 2018.09.14
라즈베리 3B stretch 한글 설정  (0) 2018.09.13
라즈비안 업데이트  (0) 2018.09.11
node.js on rpi  (0) 2018.09.11
Posted by 구차니
embeded/raspberry pi2018. 9. 13. 23:08

jessie에서는 아래로 설치했는데

$ sudo apt-get install ttf-unfonts-core



stretch에서는 아래로 변경되었다.

$ sudo apt-get install  fonts-unfonts-core


[링크 : https://blog.naver.com/specialist0/221241859486]

'embeded > raspberry pi' 카테고리의 다른 글

라즈베리 파이 3B 블투/무선랜  (2) 2018.09.14
raspbian stretch - node.js  (0) 2018.09.13
라즈비안 업데이트  (0) 2018.09.11
node.js on rpi  (0) 2018.09.11
라즈베리 파이 USB 사운드 카드로 녹음 및 재생하기  (4) 2018.09.10
Posted by 구차니

odroid XU4 검색하다 나온 키워드

XU4에서 USB 하드로 연결시 느리거나 안되는 경우 이거 설정을 끄라는데

BOT가 어쩌구 하면서 나와서 검색


결론(?)만 말하자면 USB 3.0에서 추가된 SATA 하드 연결방식인데

연관성은 찾지 못했지만 SAS(Serial Attached SCSI) 의 USB 버전인가 싶기도 하고..


[링크 : http://awesometic.tistory.com/50]

[링크 : https://en.wikipedia.org/wiki/USB_Attached_SCSI]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

btrfs qnap  (0) 2019.01.16
데이터베이스 join  (0) 2018.09.14
db 정규화  (0) 2018.09.12
YOLO(영상처리)  (0) 2018.09.11
MTD - Moving Target Defense  (0) 2018.09.08
Posted by 구차니

centos 7에 mariadb 깔았는데

심하게 뜬금없에 latin1_swedish_ci로 설정이 되어있다.

아무튼 일일이 하나씩 변경을 해야하나..?


In MariaDB, the default character set is latin1, and the default collation is latin1_swedish_ci (however this may differ in some distros, see for example Differences in MariaDB in Debian). 

[링크 : https://mariadb.com/kb/en/library/setting-character-sets-and-collations/]

[링크 : https://slobell.com/blogs/38]

Posted by 구차니
Programming/node.js2018. 9. 13. 17:01

귀찮으면, results 필드만 쓰면 될 듯?

connection.query('SELECT * FROM `books` WHERE `author` = "David"', function (error, results, fields) {
  // error will be an Error if one occurred during the query
  // results will contain the results of the query
  // fields will contain information about the returned results fields (if any)

}); 

[링크 : https://www.npmjs.com/package/mysql]

[링크 : https://poiemaweb.com/nodejs-mysql]

[링크 : https://www.w3schools.com/nodejs/nodejs_mysql.asp]


[링크 : http://bcho.tistory.com/892]

'Programming > node.js' 카테고리의 다른 글

node.js 동기와 비동기 그리고 promise  (0) 2018.09.18
node.js readline 자동완성(autocompletion)  (0) 2018.09.14
node.js 콘솔 입력 받기  (0) 2018.09.12
node.js JSON.parse()  (0) 2018.09.12
node-rtsp-stream 사용  (2) 2018.09.12
Posted by 구차니