분류 전체보기
[nginx] 재부팅 시 자동으로 시작하게끔 서비스 등록하기 nssm 무중단
[nginx] 재부팅 시 자동으로 시작하게끔 서비스 등록하기 nssm 무중단
2020.12.28서버가 재부팅 될 경우 수동으로 다시 nginx 을 가동시켜야 하는 불편함이 생겼다 이럴 경우 nssm 이라는 서비스 매니저를 사용하면 해결된다 다운로드 링크 ↓ nssm 2.24 설치 하고 nssm-2.24 폴더 안에 win64 폴더로 이동한다 그럼 nssm.exe 가 있는데 cmd 로 해당 경로까지 이동 후 nssm install [서비스명] 그러면 아래와 같은 gui 창이 뜨는데 path 에는 exe 선택하면 directory 에는 자동으로 경로가 지정된다 그리고 아래 install service 누르면 끝 그 다음 services.msc 에서 서비스 실행 시키면 진짜 끝
Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default a..
Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default a..
2020.12.23Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports. 컴포넌트 최근에 추가한 것들 다시한번 살펴보자 나같은 경우 import { AppLoading } from 'expo-app-loading' 으로 썼다 expo-app-loading 에는 default export 로 되어있는데..
Something went wrong installing the "sharp" module
Something went wrong installing the "sharp" module
2020.12.23Something went wrong installing the "sharp" module dlopen(/Users/maani/Documents/react native/nexseat/node_modules/sharp/build/Release/sharp.node, 1): Library not loaded: @rpath/libvips-cpp.42.dylib Referenced from: /Users/maani/Documents/react native/nexseat/node_modules/sharp/build/Release/sharp.node Reason: image not found - Remove the "node_modules/sharp" directory, run "npm install" and loo..
[xcode] expo-updates must be configured with a valid update URL or scope key. exception 오류
[xcode] expo-updates must be configured with a valid update URL or scope key. exception 오류
2020.12.18expo-updates must be configured with a valid update URL or scope key. exception expo eject 후 ios 폴더 안에 프로젝트 폴더 안에 보면 Supporting / Expo.plist 열어보면 하나 추가하자 공백에 우클릭 하고 Add Row EXUpdatesURL 에 String Value는 https://example.com
ssl 인증서 pem 파일 만들기 java.security.cert.CertPathValidatorException: Trust anchor for certification path not found
ssl 인증서 pem 파일 만들기 java.security.cert.CertPathValidatorException: Trust anchor for certification path not found
2020.12.04안드로이드 에뮬레이터에서 API 호출 시 java.security.cert.CertPathValidatorException: Trust anchor for certification path not found. 에러가 났는데 해당 도메인은 신뢰할 수 없는 인증서라 그렇다고 한다. 해결방법으로는 1. 소스에서 API 호출하는 웹 서버의 CA 를 강제로 하드코딩해서 신뢰 시켜버리기 2. API 호출 웹 서버의 설정을 변경하기 가 있는데 웹 서버를 내가 만들었기 때문에 2번으로 진행한다. 안드로이드 에뮬레이터가 아닌 실제 디바이스에서는 API 호출 해서 잘 받아오는데 (안드로이드 에뮬이 아닌 실제 사용중인 모바일 디바이스에선 왜 잘 받아오냐 => 아마 이런걸 체인 에러(최신 디바이스 에서는 최신 루트, 최신 인..
논리연산자, null 병합 연산자 ??
논리연산자, null 병합 연산자 ??
2020.11.291. 첫 번째 truthy 를 찾는 OR 연산자 (||) result = value1 || value2 || value3; OR ||연산자는 다음 순서에 따라 연산을 수행합니다. 가장 왼쪽 피연산자부터 시작해 오른쪽으로 나아가며 피연산자를 평가합니다. 각 피연산자를 불린형으로 변환합니다. 변환 후 그 값이 true이면 연산을 멈추고 해당 피연산자의 변환 전 원래 값을 반환합니다. 피연산자 모두를 평가한 경우(모든 피연산자가 false로 평가되는 경우)엔 마지막 피연산자를 반환합니다. 여기서 핵심은 반환 값이 형 변환을 하지 않은 원래 값이라는 것입니다. 정리해 보자면 이렇습니다. OR "||" 연산자를 여러 개 체이닝(chaining) 하면 첫 번째 truthy를 반환합니다. 피연산자에 truthy가 하..
[tedious] node.js MS-SQL DB 한글/이모티콘 저장
[tedious] node.js MS-SQL DB 한글/이모티콘 저장
2020.11.23tedious 를 이용해서 MS-SQL DB로 insert 하려고 하는데 서버까지 값은 잘 받아오는데 넣고나면 한글이 깨져서 들어가는 현상이 발생했다. node js 에서 VarChar 타입으로 MS-SQL 로 전달하기 때문이였다. 이걸 다시 NVarChar 타입으로 받아 전달하니까 한글이 잘 나온다. 당연히 이모지도 잘 들어가고 나오고 👰👰👰 서버쪽 뿐만 아니라 여기도 모두 같이 nvarchar 로 맞춰주자!
[React Native] currentlyFocusedField is deprecated and will be removed in a future release. Use currentlyFocusedInput
[React Native] currentlyFocusedField is deprecated and will be removed in a future release. Use currentlyFocusedInput
2020.11.20currentlyFocusedField is deprecated and will be removed in a future release. Use currentlyFocusedInput - node_modules\react-native\Libraries\LogBox\LogBox.js:148:8 in registerError - node_modules\react-native\Libraries\LogBox\LogBox.js:59:8 in errorImpl - node_modules\react-native\Libraries\LogBox\LogBox.js:33:4 in console.error - node_modules\expo\build\environment\react-native-logs.fx.js:27:4 ..
우체국 무배당 우체국하나로OK보험 41070
우체국 무배당 우체국하나로OK보험 41070
2020.10.20
DB 다이렉트100세건강보험0904(아이러브100세플랜)
DB 다이렉트100세건강보험0904(아이러브100세플랜)
2020.10.20질병통원의료비Ⅰ(갱신형) 질병으로 인하여 병원 또는 의원(한방병원, 한의원 및 치과병원, 치과의원은 제외합니다)등에 통원하여 치료를 받은 경우 5천원을 공제한 금액의 100% 을 이 특별약관의 보험가입금액을 한도(30만원)로 보상해 드립니다. 위 공제금액의 적용은 1일당 입니다. ① 통원제비용 : 진찰료, 검사료, 방사선료, 투약 및 처방료, 주사료, 이학요법(물리치료, 재활치료)료, 정신요법료, 처치료, 재료대, 캐스트료, 지정진료비 ② 통원수술비 : 수술료, 마취료, 수술재료비 또한 병원 또는 의원의 의사의 처방전에 따라 조제되는 약국의 약제비 및 약사조제료도 포함한다. 동일질병 또는 하나의 질병으로 인한 회사의 질병통원의료비 보상한도는 진단확정일로부터 365일을 한도로 통산통원일수 30일까지로 합니..
자바스크립트로 크롬 시계 앱 만들기 [3]
자바스크립트로 크롬 시계 앱 만들기 [3]
2020.10.151. 배경화면 다운로드 unsplash.com/ Beautiful Free Images & Pictures | Unsplash Beautiful, free images and photos that you can download and use for any project. Better than any royalty free or stock photos. unsplash.com 무료 이미지 다운로드 하는 사이트. 한 3개 정도 다운받아보자. 프로젝트 폴더 내에 images 폴더를 만들어서 안에다가 3개의 이미지 파일을 넣어보자 1.jpg, 2.jpg, 3.jpg 로 이름도 바꿔놓고 2. 랜덤 함수 Math.random() * 5
자바스크립트로 크롬 시계 앱 만들기 [2]
자바스크립트로 크롬 시계 앱 만들기 [2]
2020.10.141. to-do 리스트 만들기 이렇게 내용을 집어 넣고 엔터를 칠 때 마다 아래에 한줄 한줄 리스트 형식으로 추가되게 해보자 Write a to do 부분 html 이다. test 원래 위와같이 input text 밑에 목록을 만드는 엄마 태그 아래에 자식 목록 태그들을 하나씩 html에 써줘야 저렇게 표시가 될텐데... 내가 동적으로 엔터 칠때마다 저 html 에 하나씩 추가가 되어야 한다.. 이걸 자바스크립트로 동적으로 추가해보자? 00:00 const toDoForm = document.querySelector(".js-toDoForm"), toDoInput = toDoForm.querySelector("input"), toDoList = document.querySelector(".js-toDoL..