This file contains hidden or 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 <iostream> | |
#include <thread> | |
#include <vector> | |
#include <map> | |
#include <functional> | |
#include <concurrent_queue.h> | |
#include <concurrent_unordered_map.h> | |
#include <shared_mutex> | |
#include <condition_variable> | |
#include <atomic> |
This file contains hidden or 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
# common | |
**/.vscode/* | |
**/!.vscode/settings.json | |
**/!.vscode/tasks.json | |
**/!.vscode/launch.json | |
**/!.vscode/extensions.json | |
**/*.code-workspace | |
**/.vscode-test | |
# output |
This file contains hidden or 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
{"lastUpload":"2021-06-23T02:38:54.903Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
#!/bin/sh | |
SL=/etc/apt/sources.list | |
PARAM="r:hm:dna" | |
KAKAO=mirror.kakao.com | |
NEOWIZ=ftp.neowiz.com | |
HARU=ftp.harukasan.org |
This file contains hidden or 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
USE [TestDB] | |
GO | |
CREATE PROCEDURE [dbo].[test_sp] | |
@data1 nvarchar(max), | |
@data2 nvarchar(max), | |
@data3 nvarchar(max) | |
AS | |
BEGIN |
This file contains hidden or 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 <hiredis\hiredis.h> | |
#include "json\json.h" | |
#include <vector> | |
#pragma comment(lib, "hiredis.lib") | |
#pragma comment(lib, "Win32_Interop.lib") | |
#pragma comment(lib, "lua.lib") | |
#pragma comment(lib, "json_vc71_libmtd.lib") | |
int _tmain(int argc, _TCHAR* argv[]) |
This file contains hidden or 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 <hiredis\hiredis.h> | |
#include <stdio.h> | |
#pragma comment(lib, "hiredis.lib") | |
#pragma comment(lib, "Win32_Interop.lib") | |
#pragma comment(lib, "lua.lib") | |
int _tmain(int argc, _TCHAR* argv[]) | |
{ | |
timeval tv; |
This file contains hidden or 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; | |
namespace MersenneTwister | |
{ | |
// Implementation porting from C version of mt19937-64 | |
// coded by Makoto Matsumoto and Takuji Nishimura | |
// | |
// Copyright (C) 2004, Makoto Matsumoto and Takuji Nishimura, | |
// All rights reserved. | |
// |