윈도우 11 home에서 pro로 변경하기
cmd 관리자 권한으로 실행 slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GXslmgr /skms kms.digiboy.irslmgr /ato 출처 : https://jab-guyver.co.kr/1958
cmd 관리자 권한으로 실행 slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GXslmgr /skms kms.digiboy.irslmgr /ato 출처 : https://jab-guyver.co.kr/1958
https://minholee93.tistory.com/entry/Nginx-Basic-Auth https://sangchul.kr/entry/%EB%A6%AC%EB%88%85%EC%8A%A4-nginx-ip-%EC%A0%9C%ED%95%9C%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95 https://www.kyrandia.net/2012/03/nginx-htaccess.html https://mail.bada-ie.com/board/view/?page=3&uid=1313&category_code=jvYw%7C%7CJCpJ%7C%7C&code=all&key=&keyfield= 우분투에서 htpasswd 사용하기 위해 설치 apt-get install apache2-utils
DB.Errors.clear DB.BeginTrans '트랜잭션 시작 DB.Execute (SQL) 'Execute if DB.Errors.count>0 Then DB.RollbackTrans '에러가 발생한다면 트랜잭션 롤백시킨다. Set objError = Server.CreateObject("ADODB.Error") for each objError in DB.Errors Msg (objerror.Description) '에러문 출력 Next objError.close…
abs() '절대값구하기' array(배열) '배열을 반환' asc() '문자의 ANSI문자값을 반환' atn() '아크 탄젠트로 반환' cbool() 'boolean형식으로 반환' cbyte() 'byte형식으로 반환' ccur() 'currency형식으로 반환' cdate() 'date형식으로 반환' cdbl() 'double형식으로 반환' chr() 'asc()함수의…
<% Response.Expires = 0 Response.Buffer = True Response.Clear dir = request("dir") filename = request("filename") filepath = Server.MapPath("\webfs\") & "\Common\etcFiles\"&dir&"\" & filename set objFS = Server.CreateObject("Scripting.FileSystemObject") If objFS.FileExists(filepath) Then Response.ContentType =…
ASP.NET에서는 try catch 구문이 있지만 asp에는 존재하지 않는다. 대신 사용할 수 있는 구문이 On Error 구문이다. <% on error resume next Insert 시도.. if err.number<>0 then Response.Write "insert Error" else…
/* 키보드로 버튼에 포커스 시 */ a.menu-link:focus-visible { outline: 3px solid #000; } /* 마우스, 터치로 버튼에 포커스 시 */ a.menu-link:focus:not(:focus-visible) { outline: none; box-shadow: 1px 1px 5px rgba(1, 1,…
git 설치 터미널(CMD) 오픈 //경로로 이동 cd ~/.atom/packages/ //git 페이지에서 해당 패키지 주소 복사 후 터미널에 입력 git clone https://github.com/icetee/remote-ftp.git //해당 패키지 경로로 이동 후 npm install cd ./remote-ftp npm…
원문 : https://syudal.tistory.com/entry/Ubuntu-Nginx-Lets-Encrypt%EB%A1%9C-https-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0 1. CertBot 다운로드 Certbot의 Repo를 등록, 해당 패키지를 다운로드 $ sudo add-apt-repository ppa:certbot/certbot $ sudo apt-get install python3-certbot-nginx 2. SSL 인증서를 적용하여 https 적용하기 $ sudo certbot…