Skip to content

Instantly share code, notes, and snippets.

View kmc7468's full-sized avatar
🤔
Hello, world!

static kmc7468

🤔
Hello, world!
View GitHub Profile
@kmc7468
kmc7468 / Air.ino
Last active July 24, 2018 09:22
공기 순환기 모델
/*
* (C) 2018. kmc7468 All rights reserved.
* MIT 라이선스입니다.
* https://gist.github.com/kmc7468/9cb6edc588b451f748dba9f96918309d
*/
#include "DHT.h"
#include <math.h>
//
@kmc7468
kmc7468 / Circle-MonteCarlo.cpp
Last active July 25, 2018 02:28
몬테카를로 방법을 이용한 원주율 계산
/*
* (C) 2018. kmc7468 All rights reserved.
* The MIT License. See also the LICENSE file.
* https://gist.github.com/kmc7468/33bd66ecca40cb5a256ee4bb0700b8eb
*/
#include <chrono>
#include <future>
#include <iostream>
#include <random>
@kmc7468
kmc7468 / LinearEquation.cpp
Last active September 7, 2021 12:57
일차방정식 풀이 프로그램
/*
* MIT License
*
* Copyright (c) 2021 kmc7468
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
@kmc7468
kmc7468 / Vocabulary.py
Created March 25, 2022 16:26
WordReminder 단어장 생성 모듈 for Python
# <호환성 정보>
# WordReminder 단어장은 레거시 호환 영역과 컨테이너 영역으로 구성됩니다.
# 레거시 호환 영역: 단어가 저장되는 영역으로, 각 단어에 등록된 여러 개의 뜻/발음이 1개로 합쳐져 저장됩니다. 모든 버전/플랫폼에서 인식할 수 있습니다.
# 컨테이너 영역: 단어에 대한 부가적인 정보가 저장되는 영역으로, 1개 이상의 컨테이너로 구성됩니다. 버전/플랫폼에 따라 인식할 수 있는 컨테이너의 종류가 다릅니다.
#
# <컨테이너 정보>
# HomonymContainer: 2개 이상의 뜻이 등록된 단어가 존재할 경우 사용됩니다. (PC: 1.4.0-beta.1~ / Android: 모든 버전)
# ExampleContainer: 예문이 등록된 뜻이 존재할 경우 사용됩니다. (PC: 지원 안함 / Android: 모든 버전)
# TagContainer: 단어장에 태그가 존재할 경우 사용됩니다. (PC: 지원 안함 / Android: 1.1.0~)
#