Skip to content

Instantly share code, notes, and snippets.

@keea
keea / CMakeLists.txt
Created May 2, 2024 03:55
위 코드는 C++로 작성된 Emscripten 모듈과 JavaScript를 사용하여 HTML 캔버스에 무작위 이미지를 생성하고 표시하는 방법을 보여줍니다.
cmake_minimum_required( VERSION 3.10.2 )
set(TARGET wasmImgJSBind)
project( ${TARGET} )
set(CMAKE_CXX_STANDARD 17)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}/
)
<!-- Add the following lines to theme's html code right before </head> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script src="https://static.tumblr.com/fpifyru/VCxlv9xwi/writecapture.js"></script>
<script src="https://static.tumblr.com/fpifyru/AKFlv9zdu/embedgist.js"></script>
<!--
Usage: just add <div class="gist">[gist URL]</div>
Example: <div class="gist">https://gist.github.com/1395926</div>
-->
@keea
keea / TwoZero.cpp
Last active September 15, 2017 01:15
/*
* 2048게임
* 밀었을 경우 그 방향으로 합쳐지는 숫자가 있으면
* 숫자를합침.
* @file TwoZero.cpp
* @date Wed Sep 13 15:04:58 2017
* @author keea
*/
#include <iostream>
/*
* 개미의 이동경로
* 오른쪽으로만 움직이다가 장애물을 만나면 아래쪽으로 움직임
* 오른쪽으로 길이 있으면 다시 오른쪽
* @file MainFunc.cpp
* @date Wed Sep 13 10:20:40 2017
* @author keea
*/
#include <iostream>
@keea
keea / MapModelCreator.cs
Last active June 1, 2017 10:48
맵 데이터
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
[CustomEditor(typeof(Map))]
public class MapModelCreator : Editor{
public override void OnInspectorGUI()
{
DrawDefaultInspector();
@keea
keea / problem1.cpp
Created April 19, 2017 19:39
ProjectEule
#include <stdio.h>
//1000보다 작은 자연수 중에서 3 또는 5의 배수를 모두 더한 수
void main() {
int startNum = 1;
int lastNum = 1000;
int sum = 0;
while (startNum < lastNum)
{
if (startNum % 3 == 0 || startNum % 5 == 0) {