This file contains 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
cmake_minimum_required( VERSION 3.10.2 ) | |
set(TARGET wasmImgJSBind) | |
project( ${TARGET} ) | |
set(CMAKE_CXX_STANDARD 17) | |
include_directories( | |
${CMAKE_CURRENT_SOURCE_DIR}/ | |
) |
This file contains 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
<!-- 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> | |
--> |
This file contains 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
/* | |
* 2048게임 | |
* 밀었을 경우 그 방향으로 합쳐지는 숫자가 있으면 | |
* 숫자를합침. | |
* @file TwoZero.cpp | |
* @date Wed Sep 13 15:04:58 2017 | |
* @author keea | |
*/ | |
#include <iostream> |
This file contains 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
/* | |
* 개미의 이동경로 | |
* 오른쪽으로만 움직이다가 장애물을 만나면 아래쪽으로 움직임 | |
* 오른쪽으로 길이 있으면 다시 오른쪽 | |
* @file MainFunc.cpp | |
* @date Wed Sep 13 10:20:40 2017 | |
* @author keea | |
*/ | |
#include <iostream> |
This file contains 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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
[CustomEditor(typeof(Map))] | |
public class MapModelCreator : Editor{ | |
public override void OnInspectorGUI() | |
{ | |
DrawDefaultInspector(); |
This file contains 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> | |
//1000보다 작은 자연수 중에서 3 또는 5의 배수를 모두 더한 수 | |
void main() { | |
int startNum = 1; | |
int lastNum = 1000; | |
int sum = 0; | |
while (startNum < lastNum) | |
{ | |
if (startNum % 3 == 0 || startNum % 5 == 0) { |