Skip to content

Instantly share code, notes, and snippets.

View prodeveloper0's full-sized avatar
๐Ÿฑ
Meow

Samuel Lee prodeveloper0

๐Ÿฑ
Meow
  • Sounth Korea
View GitHub Profile
@prodeveloper0
prodeveloper0 / meow.js
Created October 1, 2018 13:25
Catdrip.Net Redirector for DevDogdripper
// 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');
});
@prodeveloper0
prodeveloper0 / Config.hpp
Created December 5, 2018 14:58
Simple INI Parser for C++11
#pragma once
//////////////////////////////
// Simple INI Parser
// Written by Samuel Lee(pr0ximo, prodeveloper0)
//
//
// Usage:
// sample.ini
// [Pri]
// ; This is my information
@prodeveloper0
prodeveloper0 / GetCompiledTime.cpp
Last active February 7, 2019 08:20
Get compiled time and date from current EXE program for Win32
#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;
@prodeveloper0
prodeveloper0 / git-clearHistory
Created February 22, 2019 12:17 — forked from stephenhardy/git-clearHistory
Steps to clear out the history of a git/github repository
-- 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 git@github.com:<YOUR ACCOUNT>/<YOUR REPOS>.git
@prodeveloper0
prodeveloper0 / ParallelsHanEng.ahk
Created April 23, 2019 14:35
AutoHotkey Korean Key Remmaper for Parallels
#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)
@prodeveloper0
prodeveloper0 / cmake-tutorial.md
Created March 13, 2020 07:40 — forked from luncliff/cmake-tutorial.md
CMake ํ• ๋•Œ ์ชผ์˜ค์˜ค๊ธˆ ๋„์›€์ด ๋˜๋Š” ๋ฌธ์„œ

CMake๋ฅผ ์™œ ์“ฐ๋Š”๊ฑฐ์ฃ ?
์ข‹์€ ํˆด์€ Visual Studio ๋ฟ์ž…๋‹ˆ๋‹ค. ๊ทธ ์ด์™ธ์—๋Š” ์ „๋ถ€ ์‚ฌ๋„(้‚ช้“)์ž…๋‹ˆ๋‹ค ์‚ฌ๋„! - ์ž‘์„ฑ์ž

์ฃผ์˜

  • ์ด ๋ฌธ์„œ๋Š” CMake๋ฅผ ์ฃผ๊ด€์ ์œผ๋กœ ์„œ์ˆ ํ•ฉ๋‹ˆ๋‹ค
  • ์ด ๋ฌธ์„œ๋ฅผ ํ†ตํ•ด CMake๋ฅผ ์‹œ์ž‘ํ•˜๊ธฐ์—” ์ ํ•ฉํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค
    https://cgold.readthedocs.io/en/latest/ 3.1 ์ฑ•ํ„ฐ๊นŒ์ง€ ๋”ฐ๋ผํ•ด๋ณธ ์ดํ›„ ๊ธฐ๋ณธ์‚ฌํ•ญ๋“ค์„ ์†์„ฑ์œผ๋กœ ์ตํžˆ๋Š” ๊ฒƒ์„ ๋•๊ธฐ์œ„ํ•œ ๋ณด์กฐ์ž๋ฃŒ๋กœ์จ ์ž‘์„ฑ๋˜์—ˆ์Šต๋‹ˆ๋‹ค