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:
| 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; |
I hereby claim:
To claim this, I am signing this object:
| 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) | |
| { |
| <?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> |
| <?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> |
| #!/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') |
| #!/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 |
| #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, |
| // | |
| // Created by Cheolbak on 2016. 5. 4.. | |
| // | |
| #include <iostream> | |
| #include "ExpTree.h" | |
| // 관리의 편의성을 위해 namespace ExpTree 선언 | |
| namespace ExpTree { | |
| // 특수한 수식 트리를 만들기 위한 함수 |