CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자
- 이 문서는 CMake를 주관적으로 서술합니다
- 이 문서를 통해 CMake를 시작하기엔 적합하지 않습니다
https://cgold.readthedocs.io/en/latest/ 3.1 챕터까지 따라해본 이후 기본사항들을 속성으로 익히는 것을 돕기위한 보조자료로써 작성되었습니다
CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자
#NoTrayIcon | |
; HanEng Mapper for Hangul PS/2 Keyboard(103/106 Keys) | |
Shift & Alt::Send {vk15sc138} ; Shift + Alt to HanEng (Parallels Default) | |
RAlt::Send {vk15sc138} ; Right Alt to HanEng (RemoteDesktop Recommanded) | |
F16::Send {vk15sc138} ; F16 to HanEng (Karabiner Recommanded) |
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |
#include <stdio.h> | |
#include <time.h> | |
#include <Windows.h> | |
#include <tchar.h> | |
DWORD GetCompiltedTime() | |
{ | |
TCHAR szFilename[MAX_PATH]; | |
IMAGE_DOS_HEADER idh; | |
IMAGE_NT_HEADERS inh; |
#pragma once | |
////////////////////////////// | |
// Simple INI Parser | |
// Written by Samuel Lee(pr0ximo, prodeveloper0) | |
// | |
// | |
// Usage: | |
// sample.ini | |
// [Pri] | |
// ; This is my information |
// Cat needs express and more express | |
// Meow! | |
var express = require('express'); | |
var app = express(); | |
var server = app.listen(80, function() { | |
console.log('meow.js has started on port 80'); | |
}); |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
typedef char MSGBUF[64]; | |
int GetCpuBrandString(MSGBUF dst) | |
{ | |
unsigned long ul; | |
unsigned long uls[12] = {0x00}; |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <termios.h> | |
#include <fcntl.h> | |
#include <errno.h> | |
#define USBWD_SYN ((unsigned char)0x80) | |
#define USBWD_ACK ((unsigned char)0x81) |
# at boot: fs0:\efi\ubuntu\grubx64.efi (Enter) | |
sudo mount /dev/sda1 /mnt | |
sudo sh -c "echo '\EFI\ubuntu\grubx64.efi' > /mnt/startup.nsh" | |
sudo umount /mnt |
#include <iostream> | |
#include <vector> | |
#include <assert.h> | |
using namespace std; | |
typedef unsigned short uattr; | |
typedef unsigned char uchar; | |
typedef uchar Vec3b[3]; |