Linux2019. 8. 5. 18:20

smart tool에서 보다 보니 

current temperature와

drive trip temperature 두개가 나오는데

이것이 무엇이다 라고 명확하게 정의된건 못 찾았지만..

 

구글 북스를 통해서 보면..

아마도 하드웨어 적으로 정해진 최대온도인 것으로 보인다.

 

[링크 : https://serverfault.com/questions/614717/]

[링크 : https://www.backblaze.com/blog/hard-drive-temperature-does-it-matter/ ]

[링크 : https://books.google.co.kr/books?id=aBPTCQAAQBAJ&pg=PA687&lpg=PA687&dq=Drive+Trip+Temperature&source=bl&ots=WLBN-kCXKh&sig=ACfU3U1p0EMPdPxUppgkAnIzv1piEY4pUg&hl=ko&sa=X&ved=2ahUKEwjNnJfLwevjAhWMIqYKHZ0DBBw4ChDoATAEegQICRAB#v=onepage&q=Drive%20Trip%20Temperature&f=false]


모르겠다 먼지..

'Linux' 카테고리의 다른 글

jq - json in linux command line  (0) 2019.08.16
awk NR, NF  (0) 2019.08.12
uniq  (0) 2019.07.30
musl / uclibc  (0) 2019.07.15
hostnamectl  (0) 2019.07.10
Posted by 구차니

포켓몬 고를 시작했는데 거기서 나온 딱 맞는 몬스터 이름 ㅋㅋ

딸래미 별명으로 아주 딱인 듯

 

[링크 : https://pokemon.gameinfo.io/ko/pokemon/453-croagunk]

Posted by 구차니

우리동네 롯데마트 하루 30건 배송으로 제한한다고..

 

우리집 같이 차 없는 사람은 오지 말란건가?

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

세탁망 구매  (4) 2019.08.06
삐딱구리 딸래미들  (2) 2019.08.04
딸래미와 포켓몬 고 시작  (0) 2019.07.21
잠에서 헤어나질 못함..  (0) 2019.07.20
밥솥 고장 =_=  (0) 2019.06.27
Posted by 구차니

지인이 dlc에 혹해서 사고 본게임 줌 ㅋ

 

Posted by 구차니

그래서 쓸게 없네

아아.. 먼가 안써도 된다고 마음 먹어 놓고는 그게 안되는건 왜일까 ㅠㅠ

Posted by 구차니
Programming/xml2019. 8. 1. 15:03

node.js 에서 원하는 갯수를 확인하려면

.length를 통해 array의 갯수를 확인하면 되긴한다.

 

MeasureSet 의 갯수를 확인하고

> var result_ele = xpath.select("/ClinVarSet/ReferenceClinVarAssertion/GenotypeSet/MeasureSet", doc);
undefined
result_ele.length
2

 

MeasureSet의 인덱스로 접근해서 몇개씩을 가지는지 확인하면 될 듯

> var result_ele = xpath.select("/ClinVarSet/ReferenceClinVarAssertion/GenotypeSet/MeasureSet[1]/Measure/AttributeSet/Attribute", doc);
undefined
result_ele.length
9
> var result_ele = xpath.select("/ClinVarSet/ReferenceClinVarAssertion/GenotypeSet/MeasureSet[2]/Measure/AttributeSet/Attribute", doc);
undefined
result_ele.length
7

 

[링크 : https://stackoverflow.com/questions/2407781/get-nth-child-of-a-node-using-xpath]

'Programming > xml' 카테고리의 다른 글

xpath concat  (0) 2019.08.08
xpath syntax - attribute 검색 및 특정값 얻기  (0) 2019.08.08
xmllint string()  (0) 2019.07.25
libxml2 - xmlNodeDump()  (0) 2019.07.09
libxml2  (0) 2019.07.04
Posted by 구차니