Memo

Calendar – Gregorian

1. 그레고리력 달력 1752년 9월 그레고리력 채택으로 인해 11일이 삭제됨.   2. cal man page on Linux Assume the switch from Julian to Gregorian Calendar at the date associ‐ ated with the country_code.  If not specified, ncal tries to guess the  switch date from the local environment or falls back to September 2,  1752.  This […]

Continue Reading
C

fgets

1. Why to use fget? gets has Buffer overflow vulnerability. Therefore we must use fgets   2. How to Use? char buf[100] = {0}; char *p; printf(“input : “); fgets(buf, sizeof(buf)-1, stdin); // char 배열, SIZE, 입력 if((p = strchr(buf, ‘\n’)) != NULL) *p = ‘\0’; printf(“output : %s\n”,buf);  

Continue Reading
C

String 함수

1. Include Header file #include<string.h>   2. Function 2.1. 문자열 복사 char *strncpy(char *dest, const char *src, size_t n); strcpy 함수 보완한 함수 char *strcpy(char *dest, const char *src); 2.2. 문자열 연결 char* strcat(char *dest, const char *src); char* strncat(char *dest, const char *src, size_t n); 2.3. 문자열 비교 int strcmp(const char *s1, const char […]

Continue Reading
JSP

Mapping Servlet

Plan 1. Modify web.xml <servlet-name> ; Can set any name <servlet-class> ; servlet path <url-pattern> ; url path <?xml version=”1.0″ encoding=”UTF-8″?> <web-app xmlns=”http://xmlns.jcp.org/xml/ns/javaee” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd” version=”4.0″> <servlet> <servlet-name>HelloServlet</servlet-name> <servlet-class>com.waterhouse.sample.HelloServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>HelloServlet</servlet-name> <url-pattern>/testPath</url-pattern> </servlet-mapping> </web-app>   Plan 2. Write in Servlet(java file) @WebServlet(name = “HelloServlet”, urlPatterns = {“/testPath”, “path2”}) name ; Servlet name urlPattenrs […]

Continue Reading
JSP

How to make Servlet on IntelliJ

1. How to make Servlet? 1.1. Make Project on IntelliJ “Java Enterprise” – “Wep Application” – Next – Done 1.2. Make package Project – src – Right Click – New – Package 1.3. Make Servlet Project – src – ‘package(you make 1.2.)’ – Right Click – Servlet Set Name – ‘OK’ 1.4. Set urlPatterns The […]

Continue Reading
JSP

Setup tomcat server on IntelliJ

1. Get Tomcat http://tomcat.apache.org/   2. Set Tomcat on IntelliJ 2.1. New Project – Java Enterprise – Web Application Application Server : Set path to Tomcat Directory 2.2. Setup detail Tomcat Server When complete make new Project [Run] – Edit Configurations… You can modify HTTP Port, etc environment. 2.3. Run Tomcat Run – Run ‘Tomcat’ […]

Continue Reading
ProPresenter

자막 작업 Rules

1. 목적 자막 파일은 많은 사람들이 참여할 수 있습니다. 그리고 템플릿 버튼 하나로 레이아웃 및 스타일을 일괄 변경할 수 있습니다. 이것이 ProPresenter의 강점입니다. 그렇지만 ProPresenter 프로그램에 있는 자잘한 오류들로 인해 수정하지 못하는 부분들이 있습니다. 그래서 기본적인 자막 작업(파일 작성) 규칙을 나름대로 만들어보았습니다.   2. 자막 작업 Rules (2018.06.15.) 파일명         : 가사 첫 […]

Continue Reading
ProPresenter

ProPresenter 하드웨어 요구사항

1. Official System Requirement (2018.08.29.) Reference URL : https://renewedvision.com/propresenter/system-requirements/   2. Recommand System Requirement (Windows) OS Windows10 x64 프로그램 자체는 32-bit로 실행되지만 RAM 때문에 64-bit를 추천합니다. CPU i7 or Xeon RAM 8G 이상 평균 300MB 정도 사용하고, 배경 영상 같은 영상효과를 실행하면 500MB는 바로 넘어갑니다. Windows 자체 2G 점유 고려했을때 4G보다는 여유있게 8G를 추천합니다. Graphic 외장 […]

Continue Reading
ProPresenter

What is ProPresenter?

1. ProPresenter란 무엇인가? ProPresenter는 RenewedVision에서 만든 교회 영상 자막 프로그램입니다. Mac과 Windows에서 모두 작동하며 이 프로그램 하나로 다양한 영상 효과를 사용할 수 있습니다. Official Site : https://renewedvision.com/   2. 왜 그리고 언제 이 프로그램을 사용하는가? 1번의 설명처럼 교회에서 예배나 행사때 영상 프로그램으로 사용할 수 있습니다. 국내외의 유명한 자막 프로그램도 있는데 이 프로그램을 써야하는 이유가 무엇인가?라고 묻는다면 […]

Continue Reading
Back To Top