본문 바로가기

분류 전체보기473

플레이리스트.음악.정리.목록. 기존순번 제목 등록일 재생수 278 이승철-그런사람또없습니다이승철 2009.06.15 0 277 더원 - 사랑아더원 2009.05.24 0 276 beautifulwoman-bohe15김연우 2009.05.22 0 N 275 포지션 - Desperado김지훈 2009.03.21 0 274 이은미 - 내하나의 사람은 가고~ 2009.03.20 1 273 02 내일로 내일로 - 김건모김건모 2009.03.08 0 272 그리움도 사랑 같아서서영은 2008.10.10 0 271 가만히 눈을감고정재욱 2008.09.19 0 270 들리나요태연 2008.09.19 0 269 lucky(럭키)왁스(WAX) 2008.09.19 0 268 신승훈 베스트앨범신승훈 2008.09.17 0 267 임재범베스트(Memorie.. 2022. 11. 27.
react url .htaccess apache #### # .htaccess ```sh checkURL On ServerEncoding EUC-KR ClientEncoding UTF-8 Options -MultiViews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.html [QSA,L] ``` 2022. 11. 21.
세무 상식 정리중. #### # 건강보험공단 - 2024년부터는 해촉증명서 효력이 상실 될 수 있음. - 해촉증명으로 소득을 상쇄해 지역가입자 전환을 하지 않도록 하지만, - 내년에 소득이 발생하면, 이전에 유예해주었던 보험료를 내야한다고 함. #### # 임대사업자 등록 - 국세청 - 임대사업자 등록은 임대차 계약 후 20일 이내에 해야함. - 상가의 경우 임대사업자등록을 하지 않으면 부가세 법상 가산세 발생함. - 임대사업자 간이과세자 : 4800미만 - 부과세신고는 해야하고, 부과세는 안내도 된다. - 부가세 포함해서 받을 필요 없음. ( 10% 추가 아님 ) - 세금계산서를 발급할 수 없다. - 내소유의 상가를 내가쓰면 임대사업자 등록을 안해도 된다. - 임차인이 사업자 등록 신청시 임대차 계약서를 제출함 - 임대료.. 2022. 10. 6.
Axios in Typescript 원본 : https://bobbyhadz.com/blog/typescript-http-request-axios 2022. 9. 4.
Fetch in TypeScript 원본 : https://www.delftstack.com/howto/typescript/typescript-fetch/ Fetch in TypeScript The fetch is a globally available native browser function that can be used to fetch resource over an HTTP connection. In TypeScript, we can use the fetch function to consume typed response data. www.delftstack.com // Todo type interface interface Todo { userId: number; id: number; title: string; completed: boo.. 2022. 9. 4.
화면 활성화 비활성화 active deactive , visibilitychange document.addEventListener('visibilitychange', function() { if (document.hidden) { if ( handleInterval > 0 ) clearInterval(handleInterval); } else { if ( handleInterval > 0 ) clearInterval(handleInterval); console.log("============== ACTIVE ============="); handleInterval = setInterval(()=>{ },intervalTime); } }, false); 2022. 8. 19.