목록전체 글 (143)
난 정말 최고야 멋있어
#include #include #define WHITE 1 #define BLACK 2 int omokpan[15][15] = { 0, }; using namespace std; __inline int Player(int& turn) { return (2 - (turn % 2)); } void printOmokpan() { for (size_t i = 0; i 1 && i < 13..
server #include #include using namespace std; int main() { auto memmap = CreateFileMapping(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, 4, L"sharedmemory0"); if (memmap == NULL) { cout
https://github.com/Microsoft/cpprestsdk/issues/619 x64 processes failed to send requests with "WinHttpSendRequest: 12029" error · Issue #619 · microsoft/cpprestsdk I have wrote a simple code as follow and build it for x64 and x86 platforms. #include #include using namespace web::http; using namespace web::http::c... github.com 프록시 문제일 가능성이 높다고 한다 netsh winhttp reset proxy 로 해결 가능
typedef struct _OB_CALLBACK_REGISTRATION { _In_ USHORT Version; _In_ USHORT OperationRegistrationCount; _In_ UNICODE_STRING Altitude; _In_ PVOID RegistrationContext; _In_ OB_OPERATION_REGISTRATION *OperationRegistration; } OB_CALLBACK_REGISTRATION, *POB_CALLBACK_REGISTRATION; 아무리 보아도 2+2+16+8+8 = 36바이트지만 실제로 sizeof(_OB_CALLBACK_REGISTRATION ) 를 하게 되면 결과값으로 40바이트가 나온다 이는 컴파일러가 가장 큰 자료형의 크기인 8바이트에..
sc create type=kernel binpath="" sc start
explicit 키워드 컴파일러의 형변환을 막을 때 쓰임 std::thread(Thread Based) 보다는 std::async(Task Based)를 이용하자 => std::thread 는 리턴값을 받을 수도 예외를 처리할 수도 없다.. + Oversubscription ++모르는거 있을때마다 추가
사전 준비 npm init npm install express -save npm install nodemon -g const express = require('express') const app = express() app.get('/',(req,res)=>{ for (const key in req.query) { console.log(`${key} : ${req.query[key]}`) } res.send("hello") }) app.listen(8080,()=> { console.log('Server is Running...') })
1. C++ 기본 예외 처리 try ~ catch => 윈도우에서 동작시 내부적으로 SEH 이용 어떤 타입이던지 throw 가능 (그래도 웬만하면 std::exception 이용하자) 받을때는 그 타입으로 받으면 된다! 2. SEH (Structured Exception Handling) => __try __except 문 또는 __try __finally문 을 이용해서 구현 가능 __except() 인자로 어떤 필터를 적용하느냐에 따라서 처리를 다르게 할 수 있음 필터값들은 excpt.h 에 정의 되어 있음 // Defined values for the exception filter expression #define EXCEPTION_EXECUTE_HANDLER 1 #define EXCEPTION_CO..