- join.html.php : join.html 파일이랑 동일
- result.php : join.html 의 결과 페이지
- header.php : join.html, result.php 의 상단 부분
- footer.html : join.html, result.php 의 하단 부분
- layout.css : 두 페이지에 사용한 스타일 시트
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Created by Cheolbak on 2016. 5. 4.. | |
| // | |
| #include <iostream> | |
| #include "ExpTree.h" | |
| // 관리의 편의성을 위해 namespace ExpTree 선언 | |
| namespace ExpTree { | |
| // 특수한 수식 트리를 만들기 위한 함수 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| void not_duplicate_rand(int data[], int size); | |
| void insert_sort(int data[], int size); | |
| void delay(clock_t n); | |
| enum { | |
| MAX = 45, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| while [ 1 ] | |
| do | |
| echo "Input command[ 1,2,3,q ]...." | |
| echo "1 ----- Create Group" | |
| echo "2 ----- Create User" | |
| echo "3 ----- Backup User Directory" | |
| echo "4 ----- Auto-backup User Directory everyday at 12:00PM" | |
| echo "q ----- Quit" | |
| read answer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # CHANGE THESE | |
| auth_email="user@example.com" | |
| auth_key="" # found in cloudflare account settings | |
| zone_name="example.com" | |
| record_name="www.example.com" | |
| # MAYBE CHANGE THESE | |
| ip=$(curl -s https://api.myip.com | jq -r '.ip') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>io.github.cheolbak.maven.archetype</groupId> | |
| <artifactId>springmvc-quickstart</artifactId> | |
| <name>springmvc-quickstart</name> | |
| <packaging>war</packaging> | |
| <version>1.0.0-BUILD-SNAPSHOT</version> | |
| <properties> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <settings> | |
| <mirrors> | |
| <mirror> | |
| <id>nexus</id> | |
| <name>local</name> | |
| <url>http://172.18.7.154:8081/repository/maven-central/</url> | |
| <mirrorOf>*</mirrorOf> | |
| </mirror> | |
| </mirrors> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public int get_hoga_unit_price(int i_price, string i_jongmok_cd, int i_hoga_unit_jump) | |
| { | |
| int l_market_type = 0; | |
| try | |
| { | |
| l_market_type = int.Parse(axKHOpenAPI1.GetMarketType(i_jongmok_cd).ToString()); | |
| } | |
| catch (Exception e) | |
| { |
I hereby claim:
- I am cheolbak on github.
- I am cheolbak (https://keybase.io/cheolbak) on keybase.
- I have a public key ASDJLwSrOI4EQZxPnmZ9oh_oWBhxQJGyyl2cTZEOFcjA7Qo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package local.mike.simpleboard.configure; | |
| import lombok.extern.slf4j.Slf4j; | |
| import org.apache.http.client.HttpClient; | |
| import org.apache.http.client.config.RequestConfig; | |
| import org.apache.http.conn.HttpClientConnectionManager; | |
| import org.apache.http.impl.client.HttpClients; | |
| import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; | |
| import org.springframework.beans.factory.annotation.Value; | |
| import org.springframework.boot.web.client.RestTemplateBuilder; |