본문 바로가기

전체 글170

코로나 바이러스 면역력 강화로 이겨내자(feat.백신아 빨리 나와) 피톤치드로 코로나를 극복, 방역할 수 있을까? 아내가 스튜디오를 오픈하여 개인 레슨을 하던 중, 2020년 12월부터 직접적으로 타격을 입고 있다. 제대로 된 백신은 언제 나올지 알 수 없고, 언제까지 이 코로나 사태가 지속될지 모르기 때문에 개인 방역과 면역을 높여야 한다. 스튜디오 운영을 조금이라도 더 안정적으로 운영하고자 스튜디오 방역을 알아보다 피톤치드가 많이 검색되는 것을 보고 그 효과에 대해 알아보고자 한다. 피톤치드는 무엇인가? 뜻은 exterminated by the plant, 제거 됐다 몰살됐다, 뭐로? 식물로 인해. 산림욕을 하게 되면 피톤치드를 많이 맞게? 마시게? 되며 이는 우리 몸의 NK cells (Natural killer cells, 자연 세포독성 세포)을 증가하도록 하며 .. 2021. 1. 23.
[leetcode] 20. Valid Parentheses 20. Valid Parentheses Easy 6619269Add to ListShare Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of brackets. Open brackets must be closed in the correct order. Example 1: Input: s = "()" Output: true Example 2: Input: s = "()[]{}" Output: true Exa.. 2021. 1. 22.
[leetcode] 14. Longest Common Prefix 14. Longest Common Prefix Easy 35482083Add to ListShare Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Example 1: Input: strs = ["flower","flow","flight"] Output: "fl" Example 2: Input: strs = ["dog","racecar","car"] Output: "" Explanation: There is no common prefix among the input strings. Constrain.. 2021. 1. 16.
[leetcode] 13. Roman to Integer 13. Roman to Integer Easy 28473880Add to ListShare Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I 1 V 5 X 10 L 50 C 100 D 500 M 1000 For example, 2 is written as II in Roman numeral, just two one's added together. 12 is written as XII, which is simply X + II. The number 27 is written as XXVII, which is XX + V + II. Roman numerals are usually wri.. 2021. 1. 16.
[leetcode] 9. Palindrome Number Given an integer x, return true if x is palindrome integer. An integer is a palindrome when it reads the same backward as forward. For example, 121 is palindrome while 123 is not. Example 1: Input: x = 121 Output: true Example 2: Input: x = -121 Output: false Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome. Example 3: Input: x.. 2021. 1. 15.
[leetcode] 7. Reverse Integer Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-231, 231 - 1], then return 0. Assume the environment does not allow you to store 64-bit integers (signed or unsigned). Example 1: Input: x = 123 Output: 321 Example 2: Input: x = -123 Output: -321 Example 3: Input: x = 120 Output: 21 Example 4: Input.. 2021. 1. 15.
Home Assistant HACS에 SmartIR로 냉난방기 리모컨 등록하기 모든 준비가 다 되었다. 난 Broadlink RM Pro라는 제품으로 우선 IR 리모컨 신호를 쏠 것이다. TV, 에어컨 등 대부분 리모컨이 IR 리모컨, Infra Red, 적외선 리모컨이다. RM Pro의 장점은 RF, Radio Frequency 도 쏠 수 있다. 443 MHz가 주였던 것 같다. 434였나? anyway, 난 broadlink 어플에 rm pro를 등록한 상태이다. SmartIR 관련해서 여기서 확인할 수 있다. github.com/smartHomeHub/SmartIR smartHomeHub/SmartIR Integration for Home Assistant to control climate, TV and fan devices via IR/RF controllers (Broad.. 2020. 12. 5.
Home Assistant HACS 설치방법 1. 사전 준비 내용. 할 줄 모르겠거든 하지 말라고 안내하고 있다. 2. 최신 HACS 파일 다운로드하기 github.com/hacs/integration/releases/tag/1.6.2 3. 압축을 풀면 아래와 같다. 4. Home assistant가 설치되어 있는 곳에 가서 configuration.yaml이 있는 곳에 custom_components 폴더를 만들자. 5. 압축 풀었던 hacs 폴더를 custom_components 안에 복사한다. 6. 그리고 home assistant를 재부팅한다. 7. Configuration 설정을 해야 하는데 우선 아래 링크에 가서 Github에서 Personal Access Token을 발급받자. [홈오토메이션] GitHub Personal Access .. 2020. 12. 4.
반응형