본문 바로가기

기타56

strtotime 1달전 함수문제 https://blog.munilive.com/posts/In-strtotime-1-months-or-1-month-ago-is-not-30-days-old.html strtotime에선 -1 months 또는 1 month ago는 30일 이전이 아니다.PHP 5.x버전의 strtotime 함수에서 한달전의 계산에 오류가 있는 내용에 대한 설명과 그 해결 방법에 관한 글이다.blog.munilive.com샘플정보$date = "2013-03-30"; $time = strtotime($date); $prev_month = strtotime("1 months ago", $time); echo date("Y-m-d", $prev_month); //결과값 : 2013-03-02 ?>---------------.. 2024. 11. 11.
모바일 크롬 구글번역 안뜨게 https://okky.kr/questions/397796 OKKY - 크롬 이 페이지를 번역하시겠습니까? 사전 차단 방법이 있나요?페이지에 영문이나 기타 외국어가 있는 것도 아닌데 자꾸 활성화가 되네요.브라우저 옵션에서 끄면 그만이지만 사용자가 남녀노소 가리지 않고 많기 때문에일일이 대응하기엔 한계가 있어 자okky.kr 메타태그  추가 2024. 9. 10.
웹푸시 WEB PUSH / FCM 요즘 웹푸시쪽을 활용하는 사이트들이 늘어났다 그래서 실제로 사용해보기 위해서 진행 1. FIREBASE 등록 1-1. 파이어베이스 앱에 웹등록 1-2. 클라우드 메시징에서 웹 푸시 인증서 키 등 2. 실제 진행 2-1. 루트폴더에 firebase-messaging-sw.js 파일생성 importScripts('https://www.gstatic.com/firebasejs/9.17.1/firebase-app-compat.js'); importScripts('https://www.gstatic.com/firebasejs/9.17.1/firebase-messaging-compat.js'); // Initialize the Firebase app in the service worker by passing in .. 2023. 2. 27.
cURL error 60: SSL certificate https://stackoverflow.com/questions/29822686/curl-error-60-ssl-certificate-unable-to-get-local-issuer-certificate cURL error 60: SSL certificate: unable to get local issuer certificate I am trying to send an API request using Stripe but get the error message: cURL error 60: SSL certificate problem: unable to get local issuer certificate This is the code I am running: public fun... stackoverflow... 2022. 11. 25.
There is no active transaction https://stackoverflow.com/questions/41392982/php-pdo-there-is-no-active-transaction PHP PDO - There is no active transaction I am having problem with transactions in php script. I would like to make multiply queries and be able to recall them all, if at least one of them fails. Below you can find a simple example of the ... stackoverflow.com 한줄요약 beginTransaction()의 경우 try catch문 밖에 위치해야한다. == T.. 2022. 10. 26.
kobert https://github.com/SKTBrain/KoBERT GitHub - SKTBrain/KoBERT: Korean BERT pre-trained cased (KoBERT) Korean BERT pre-trained cased (KoBERT). Contribute to SKTBrain/KoBERT development by creating an account on GitHub. github.com 윈도우환경에서 설치시 에러나 넘쳐난다. 특히나 numpy 버전쪽에서 넘어가질 않는다. https://github.com/SKTBrain/KoBERT/issues/84 [BUG] windows pycharm 환경에서 kobert 설치 할때 에러가 발생합니다. · Issue #84 · SKTBrain/KoBE.. 2022. 8. 4.
react create-react-app xxx --template particles-typescript yarn add @material-ui/core 2021. 9. 8.
SSL -> 정보가져온곳 가비아 SSL 구축 대상자 보안서버 인증서는 현행법상 개인정보를 수집하는 영리 목적의 사이트에는 반드시 구축해야 하는 의무 조항이며, 위반 시 과태료가 부과되므로 유의하시기 바랍니다. 이 때 ‘개인정보’란 아이디, 비밀번호, 주민등록번호 뿐 아니라 휴대폰 번호, 이메일 주소도 포함합니다. 일반적으로 회원가입과 로그인, 결제 프로세스가 있는 영리 목적의 사이트는 모두 해당된다고 볼 수 있습니다. 주민등록번호만 개인정보로 인식하는 경우가 많은데, 결제/게시판/주문 및 상담 시에 ‘이메일’과 ‘휴대폰 번호’를 취급한다면 SSL 설치 의무화 및 점검 대상이 되므로 반드시 인증서를 설치해야 합니다. SSL의 종류 Single Domain SSL (단일도메인) Wildcard Domain SSL .. 2020. 10. 5.
webrtc WEBRTC https://webrtc.org/ WebRTC가 브라우저에서 실시간 통신 (RTC) 기능을 가능하게하는 웹 오픈 프레임 워크. webrtc.org MDN https://developer.mozilla.org/en-US/docs/Glossary/WebRTC WebRTC WebRTC (Web Real-Time Communication) is an API that can be used by video-chat, voice-calling, and P2P-file-sharing Web apps. developer.mozilla.org 2개 문서를 기준으로 WEBRTC를 구현해본다. https://webrtc.github.io/samples/ WebRTC samples webrtc.github.io .. 2020. 7. 30.