Skip to content

Instantly share code, notes, and snippets.

View kyunghoj's full-sized avatar
🙃
vibe coding

Kyungho Jeon kyunghoj

🙃
vibe coding
View GitHub Profile
@kyunghoj
kyunghoj / renewable.md
Created August 21, 2022 23:45
Renewable Energy and High Performance Computing

title: "Renewable Energy and High Performance Computing" date: 2022-08-22T08:42:00+09:00 categories:

  • engineering tags:
  • renewable
  • hpc keywords:
  • hpc
@kyunghoj
kyunghoj / python-virtual-env.md
Last active November 21, 2024 23:41
Python 가상 환경 만들기 - venv

title: "Python 가상 환경 만들기 - venv" date: 2022-07-30T08:37:00+09:00 categories:

  • engineering tags:
  • python
  • venv keywords:
  • python
@kyunghoj
kyunghoj / required_api.md
Last active July 26, 2022 10:53
Predict Protocol - Version 2

Predict Protocol - Version 2

This document proposes a predict/inference API independent of any specific ML/DL framework and model server. The proposed APIs are able to supprt both easy-to-use and high-performance use cases. By implementing this protocol both inference clients and servers will increase their utility and portability by being able to operate seamlessly on platforms that have standardized around this API. This protocol is endorsed by NVIDIA Triton Inference Server, TensorFlow Serving, and ONNX Runtime Server.

이 문서는 특정 ML/DL 프레임워크나 모델 서버와 독립적인 예측/추론 API 를 제안합니다. 제안하는 API는 사용하기 쉽고 고성능의 사용 예를 모두 지원할 수 있습니다. 이 규약을 구현함으로써, 추론 클라이언트와 서버는 이 API 기반으로 표준화된 어떤 플랫폼에든 이식될 수 있고 활용될

@kyunghoj
kyunghoj / cassandra-c-driver.markdown
Created January 14, 2018 02:04
Cassandra C/C++ Driver 설치

Cassandra C/C++ Driver 설치 및 설정

참고자료: http://datastax.github.io/cpp-driver/topics/building/

설치

공식 사이트에서 deb 패키지가 제공되지만, 제가 해 보니 잘 안 되므로 (Ubuntu 16.04 기준) 소스코드를 받아서 빌드해서 설치해 봅시다. Ubuntu Linux에 설치한다고 가정합니다.

필요한 라이브러리 (Dependencies) 설치

@kyunghoj
kyunghoj / Solution.cpp
Created September 22, 2016 13:33
[codelab] Given a binary tree, find its maximum depth.
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
@kyunghoj
kyunghoj / Find.java
Last active July 8, 2016 16:07
Find the element that appears once in a sorted array
// Divide-and-conquer
public class Find {
public static void main(String [] args) {
// int [] arr = {1, 1, 3, 3, 4, 5, 5, 7, 7, 8, 8};
int [] arr = {1, 1, 3, 3, 4, 4, 5, 5, 7, 7, 8};
int low = 0;
int high = arr.length;
@kyunghoj
kyunghoj / StockN.java
Last active June 27, 2016 18:23
Coding challenge #10
import java.io.*;
import java.util.*;
public class StockN
{
// Input format:
// n
// numbers (daily prices)
private static void stockBuySell(int price[], int n)
{
@kyunghoj
kyunghoj / SmallestSubarrayWithGCD.java
Last active July 7, 2016 15:06
Coding challenge #13
import java.io.*;
import java.util.*;
public class SmallestSubarrayWithGCD {
// Input format:
// n
// K
// numbers
@kyunghoj
kyunghoj / Stack.java
Last active June 8, 2016 03:39
Summer Coding Challenge, Week #1
import java.io.*;
import java.util.*;
public class Stack
{
private int[] stack;
private int N = 0;
private int min;
public int getMin() throws EmptyStackException
@kyunghoj
kyunghoj / proposal_guide.markdown
Last active March 17, 2024 20:29
Doctoral dissertation proposal