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
#pragma once | |
#include <algorithm> // std::max | |
namespace SimplePhil { | |
namespace Impl { | |
template<class... Types> | |
struct TypeListNode; |
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
# note: the following environment variables should be set for this script to work correctly: | |
# SDL2_DIR -> SDL2 installation root (cmake) | |
# GLEW_DIR -> GLEW installation root (cmake) | |
# GLM_DIR -> GLM installation root (cmake) | |
# LUA_DIR -> Lua installation root (no cmake) | |
# ENTT | |
# cmake configuration files are required! | |
message(STATUS "[externals] setting up...") | |
message(STATUS "[externals] SDL2 -> ${SDL2_DIR}") |
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
#!/usr/bin/env python2 | |
import jira | |
import datetime | |
class Reporter: | |
JIRA_URL = 'https://jira.somecompany.com' |
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
#pragma once | |
#include <type_traits> | |
#include <string> | |
#include <jansson.h> | |
namespace jsw | |
{ | |
namespace detail | |
{ |
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
/* | |
Implementation of a C++17 feature - `std::apply` - in C++11 standard | |
*/ | |
#ifndef FUTURE_APPLY_HH | |
#define FUTURE_APPLY_HH | |
#include <tuple> | |
#include <utility> | |
#include <type_traits> |
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
const char URL_PARSE_REGEX[] = | |
"(?:([[:alnum:]]{3,}):\\/\\/)?" | |
"(?:((?:[[:alnum:]$_.+!*'(),\\-]|\\%[[:xdigit:]]{2})*)?" | |
":?((?:[[:alnum:]$_.+!*'(),\\-]|\\%[[:xdigit:]]{2})*)?@)?" | |
"((?:[[:alnum:]$_.+!*'(),\\-]|\\%[[:xdigit:]]{2})*)?" | |
"(?::([1-9]\\d{0,4})?)?" | |
"(?:((?:\\/(?:[[:alnum:]$_.+!*'(),\\-]|\\%[[:xdigit:]]{2})+)*)" | |
"(\\?(?:[[:alnum:]$_.+!*'(),\\-]|\\%[[:xdigit:]]{2})+" | |
"(?:=(?:[[:alnum:]$_.+!*'(),\\-]|\\%[[:xdigit:]]{2})*)?" | |
"(?:&(?:[[:alnum:]$_.+!*'(),\\-]|\\%[[:xdigit:]]{2})*" |
NewerOlder