Skip to content

Instantly share code, notes, and snippets.

View KhoraLee's full-sized avatar
🏫
Back to school

Seungyun Lee KhoraLee

🏫
Back to school
  • Konkuk University
  • South Korea
  • 13:20 (UTC +09:00)
View GitHub Profile
@KhoraLee
KhoraLee / .gitignore
Created October 20, 2018 12:29 — forked from RadixSeven/.gitignore
Record Twitch Streams Automatically in Python
defaults.json
@luncliff
luncliff / cmake-tutorial.md
Last active July 16, 2024 13:09
CMake 할때 쪼오오금 도움이 되는 문서

CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자

주의

  • 이 문서는 CMake를 주관적으로 서술합니다
  • 이 문서를 통해 CMake를 시작하기엔 적합하지 않습니다
    https://cgold.readthedocs.io/en/latest/ 3.1 챕터까지 따라해본 이후 기본사항들을 속성으로 익히는 것을 돕기위한 보조자료로써 작성되었습니다
@Jimbly
Jimbly / discord_rich_presence_test.c
Last active July 6, 2022 16:26
Testing discord SDK rich presence
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdint.h>
#include <stdio.h>
#include <assert.h>
#include "discord_game_sdk.h"
#ifdef _WIN32
#include <Windows.h>
#else
#include <unistd.h>
#include <string.h>
import SwiftUI
class AppDelegate: NSObject, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
/// your push notification code goes here
return true
}
}