[ATOM] 에디터 패키지 수동 설치
git 설치 터미널(CMD) 오픈 //경로로 이동 cd ~/.atom/packages/ //git 페이지에서 해당 패키지 주소 복사 후 터미널에 입력 git clone https://github.com/icetee/remote-ftp.git //해당 패키지 경로로 이동 후 npm install cd ./remote-ftp npm…
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…
https://yh-kr.tistory.com/34 https://davi06000.tistory.com/61 https://aeong-dev.tistory.com/6
계정 추가 및 www 폴더 생성 sudo adduser blog cd /home/blog sudo mkdir ./www sudo chmod 755 ./www cd ./www 다운로드 wget -c http://wordpress.org/latest.tar.gz 압축 해제 tar -xzvf latest.tar.gz 권한…
원문 : https://velog.io/@pikamon/Linux-3 1. WSL 활성화 Windows PowerShell을 관리자 권한으로 실행 그리고 아래 2개의 명령어를 차례대로 입력 dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart 2. PC 재부팅 3. WSL2…
<% page_num = Request("page_num") scale = Request("scale") keyword = Request("keyword") p_act = Request("p_act") where = "WHERE 1=1 " If p_act <> "" Then where = where & "AND p_act =…
https://bebhionn.tistory.com/35 https://darksoulstory.tistory.com/489 https://blog.naver.com/PostView.naver?blogId=shackerz&logNo=220450713630&parentCategoryNo=&categoryNo=&viewDate=&isShowPopularPosts=false&from=postView https://always-try.tistory.com/17
http://sysnet.pe.kr/3/1/4780 ASP.NET Web Forms Page Code Modelhttps://msdn.microsoft.com/en-us/library/015103yb.aspx
JSON_2.0.4.asp https://github.com/danielmarcoto/asp2console/blob/master/dependencies/JSON_2.0.4.asp <% ' ' VBS JSON 2.0.3 ' Copyright (c) 2009 Tu�rul Topuz ' Under the MIT (MIT-LICENSE.txt) license. ' 'Permission is hereby granted, free of charge, to any…
<% Sub print_r(var) Dim myPrint Set myPrint = New clsPrint myPrint.print var, 0 End Sub Class clsPrint Public Sub print(var, nIndent) Dim nType, sTypeName 'Response.Write TypeName(var) nType = VarType(var) Select…