https://developer.github.com/v3/repos/
https://api.github.com/users/yumetodo/repos
https://api.github.com/orgs/miraiken/repos
#include "DxGraphicHandle.h" | |
#include "DxLib.h" | |
#ifdef DxHANDLE_WRAP_USE_EXCEPTION | |
#include "DxHandleException.h" | |
#endif | |
DxGHandle::DxGHandle(const std::string & FileName) DxHANDLE_NOEXCEPT { | |
this->GrHandle = LoadGraph(FileName.c_str()); | |
#ifdef DxHANDLE_WRAP_USE_EXCEPTION | |
if (-1 == this->GrHandle) throw DxGHandle_runtime_error("画像の読み込みに失敗しました"); | |
#endif |
cmake_minimum_required(VERSION 2.8.4) | |
project(buffers) | |
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_HOME_DIRECTORY}/bin") | |
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_HOME_DIRECTORY}/bin") | |
set(Boost_USE_STATIC_LIBS ON) | |
set(Boost_USE_MULTITHREADED ON) | |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
#include <Windows.h> | |
#include <shlwapi.h> | |
#pragma comment(lib, "shlwapi.lib") | |
#include "auo.h" | |
#include "auo_version.h" | |
#include "auo_util.h" | |
#include "auo_conf.h" | |
#include "auo_settings.h" | |
#include "auo_system.h" |
#include <cstdint> | |
#include <iostream> | |
#include <exception> | |
#include <stdexcept> | |
#include <type_traits> | |
#include <limits> | |
#include <algorithm> | |
#include <climits> | |
#include <random> | |
#include <cstdlib> |
#include <iostream> | |
#include <stdexcept> | |
#include <cstdint> | |
#define CONSTEXPR_FUNCTION constexpr | |
void foo() noexcept(false) { | |
throw std::runtime_error("error test"); | |
} | |
namespace detail { |
https://developer.github.com/v3/repos/
https://api.github.com/users/yumetodo/repos
https://api.github.com/orgs/miraiken/repos
#include <array> | |
#include <functional> | |
template <typename... T> | |
using common_type_t = typename std::common_type<T...>::type; | |
template <typename T> | |
using remove_cv_t = typename std::remove_cv<T>::type; | |
template <bool, typename T, typename... U> |
std::vector<std::string> split(const std::string &str, char delim) { | |
std::vector<std::string> res; | |
std::size_t current = 0, found; | |
while ((found = str.find_first_of(delim, current)) != std::string::npos) { | |
res.emplace_back(str, current, found - current); | |
current = found + 1; | |
} | |
res.emplace_back(str, current, str.size() - current); | |
return res; | |
} |
'Boost Software License 1.0 (BSL1.0) | |
'copyright (c) 2015-2016 yumetodo | |
Dim WshShell | |
Dim WshFS | |
Dim url | |
Dim html | |
Dim cmd1 | |
Dim path | |
Set WshShell = CreateObject("WScript.Shell") | |
Set WshFS = CreateObject("Scripting.FileSystemObject") |
#include <iostream> | |
#include <fstream> | |
#include <string> | |
#include <algorithm> | |
#include <cctype> | |
#include <unordered_map> | |
#include <vector> | |
#include <chrono> | |
namespace detail { | |
struct string_include { |