https://github.com/nkatre/Free-DevOps-Books-1 nkatre/Free-DevOps-Books-1 A curated collection of free DevOps related eBooks - nkatre/Free-DevOps-Books-1 github.com 데브옵스(devops) 관련 무료 책들 모음이다. 영문 원서 이지만 시간 될때 한번씩 참고해서 보면 좋을 거 같다.
추운 겨울에도 아이와 함께 갈 수 있는 곳을 찾는 다면 실내에서 모두 해결 할 수 있는 곳을 추천합니다. 예약은 홈페이지 전용으로 [stay at paradise] 를 예약하고 이번엔 가장 작은 객실인 디럭스를 예약했습니다. 호텔에서 막상 체크인을 할때 처음이라 그런지 남아서 그런지 한단계 객실을 업해주셨습니다. # 예약은 이곳에서 https://www.p-city.com/front/reservation 파라다이스시티에 오신 것을 환영합니다. www.p-city.com 아래와 같이 다양하게 선택할 수 있습니다^^ 베스트가 아무래도 많이들 선택하시는 거겠죠^^ # 호텔에 1박 하실 경우 다양한 시설을 이용할 수 있습니다. # 그밖에... - 아기랑 같이 갈 경우 미리 신청하시면 아기 물품을 구비해 주시는데..
https://github.com/kafkakru/meetup kafkakru/meetup Kafka 한국 사용자 모임에서 운영하는 meetup repository. Contribute to kafkakru/meetup development by creating an account on GitHub. github.com
파이썬 재단 - 공식 홈페이지 https://www.python.org/ Welcome to Python.org The official home of the Python Programming Language www.python.org 비주얼스튜디오 커뮤니티 에디션 - 파이썬 에디터 https://www.visualstudio.com/ko-kr/products/visual-studio-community-vs.aspx Visual Studio 2022 Community Edition – Download Latest Free Version Try our free, fully-featured, and extensible IDE for creating modern developer apps for Windows,..
오픽의 유형 - 자가진단 4단계1번 자기소개 / 1 2 3 / 1 2 3 / 1 3 4 / 6 7 4 / 1 5 5개 콤보가 나오는데 이것은 5개의 주제가 나오는 것! 이중 2개는 돌발 유형이다!! 오픽의 7가지 출제 유형1번유형 - 현재시제/장소나 종류 그리고 이유설명 2번유형 - 현재시제/활동, 루틴, 단계 묘사 3번유형 - 첫/최근 경험 설명 (시제와 육하원칙!! 기억) 4번유형 - 인상적인 경험 설명 (시제와 육하원칙!! 기억) 5번유형 - 롤플레이/단순질문하기 6번유형 - 롤플레이/정보요청 7번유형 - 롤플레이/문제해결 오픽 300 문장 공부! step1. 체화 시작 단계 - 의미와 발음 - 읽는거 따로 의미 파악 따로 않는다. - 정확한 의미와 발음을 체크 하는데 아래와 같이 나누어서 체크하면..
Amazon API Gateway: 어떤 규모든 API를 손쉽게 생성, 게시, 유지 관리, 모니터링, 보안 기능을 할수 있게 도와주는 완전 관리형 서비스 AWS Application Discovery Service: On-premise 데이터 센터에서 실행 중인 어플리케이션과 연결된 종속성 및 성능 프로파일을 자동으로 파악하는 서비스 Amazon AppStream: 데스크탑 어플리테이션을 다시 작성하지 않고도 기타 디바이스에게 어플리케이션을 스트리밍 하는 웹서비스 Auto Scaling: 사용자 정의 정책, 스케쥴 및 상태에 기반을 둬 인스턴스를 자동으로 시작/종료하는 웹서비스 AWS Artifact: AWS의 보안 및 규정 준수 보고서에 대한 온디맨드 방식의 액세스 제공, Service Organiza..
import java.util.Scanner; public class _KMP알고리즘_ { static int[] preprocessing(String p) { int m = p.length(); int[] pi = new int[m]; pi[0] = 0; int j = 0; for (int i = 1; i 0 && p.charAt(i) != p.charAt(j)) { j = pi[j - 1]; } if (p.charAt(i) == p.charAt(j)) { pi[i] = j + 1; j += 1; } else { pi[i] = 0; } } return pi; } public static void main(String args[]) { Scanner sc = ne..
import java.util.ArrayList; import java.util.LinkedList; import java.util.Queue; class Node2 { int valid; int[] children; int pi; ArrayList indexes; Node2() { valid = -1; children = new int[26]; for (int i = 0; i < 26; i++) { children[i] = -1; } pi = -1; indexes = new ArrayList(); } } public class _Aho_corasick_ { static ArrayList trie = new ArrayList(); static int init() { Node2 x = new Node2()..
import java.util.Scanner; public class _문자열매칭_ { static int match(String s, String p) { int n = s.length(); int m = p.length(); for (int i = 0; i
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class _9465_스티커_DP { public static void main(String args[]) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.valueOf(br.readLine()); while (t-- > 0) { int n = Integer.valueOf(br.readLine()); long[][] a = new long[n + 1][2]; { String[] l..
[입력]첫 번째 줄에는 지도의 크기 N(정사각형이므로 가로와 세로의 크기는 같으며 5≤N≤25)이 입력되고, 그 다음 N줄에는 각각 N개의 자료(0혹은 1)가 입력된다.70110100011010111101010000111010000001111100111000 [출력]첫 번째 줄에는 총 단지수를 출력하시오. 그리고 각 단지 내 집의 수를 오름차순으로 정렬하여 한 줄에 하나씩 출력하시오.3789 public class Main_단지번호붙이기 {static int N;static final int[] dr = new int[]{1,-1,0,0};static final int[] dc = new int[]{0,0,-1,1};public static void main(String[] args) throws Exc..
public class CM_순열조합 {public static void main(String[] args) {int[] a = new int[]{1,2,3,4};soon(a, 0, 3, 3);System.out.println();johab(new int[3], 0, 4, 3, 0);} public static void soon(int[] data, int index, int totalDataCnt, int choiceDataCnt){int temp;if(index == choiceDataCnt){int[] dd = new int[choiceDataCnt];for(int i=0; i< dd.length; i++){dd[i] = data[i];}System.out.println(Arrays.toString..
iis + tomcat 연동하기 1. conneect.zip 파일 실서버에 옮겨놓기2. iis 죽이기 (로컬컴퓨터 마우스 오른쪽 버튼 연결끊기), tomcat 죽이기3. tomcat이 설치 된 곳에 jakarta, redirect_file 폴더 생성(꼭 이렇게 해야하는건 아님) jakarta 폴더 : isapi_redirect.dll 파일 넣기 redirect_file 폴더 : iis_redirect.reg, uriworkermap.properties, workers.properties.minimal 파일 넣기4. iis_redirect.reg 파일 편집하기(edit plus 로 아래와 같이 주의 사항에 주의 하여 편집) (주의 사항 - 경로 부분에서 \\두개쓰이는 부분, 파일명 주의) =========..
euc-kr 페이지 폼에서 utf-8로된 폼으로 데이터를 보낼때 var encode= encodeURI (resultSearchForm.searchValue.value); var classify = resultSearchForm.searchClassify.value; jf_openWindow("?mode=resultSearchForm&searchClassify="+classify+"&searchTitleContent=" + encode, "searchWin", 1, 1, 950, 700, 1, 1, 1); 결론은 : encodeURI() 함수 쓰면 됨