 on keybase. | |
* I have a public key ASCRGAeYT1_tb3srBt-zAoCQFZQpt8QukMoP5KJ26SwM8go | |
To claim this, I am signing this object: |
This file contains 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
/* | |
scalaVersion := "2.12.8" | |
scalacOptions ++= Seq( | |
"-Xfatal-warnings", | |
"-Ypartial-unification" | |
) | |
libraryDependencies += "org.typelevel" %% "cats-core" % "1.0.0" | |
libraryDependencies += "org.typelevel" %% "cats-effect" % "1.3.1" | |
libraryDependencies += "org.typelevel" %% "cats-effect-laws" % "1.3.1" % "test" | |
*/ |
This file contains 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
// run js codes in https://github.com/watching | |
Array.prototype.slice.call( | |
document.querySelectorAll('.clearfix') | |
).map(function (row) { | |
if (row.querySelector('div:first-child').innerText.indexOf('ORGANIZATION_NAME/') >= 0) { | |
row.querySelector('button').click() | |
} | |
}) | |
location.reload() |

This file contains 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
// Test on MSVC 2015 Update 3 | |
#include <exception> | |
#include <typeinfo> | |
template <typename T> | |
class A : T | |
{ | |
}; | |
template <typename T> |
Want to ruin the surprise?
Well, you asked for it!
This file contains 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
<details open> | |
<summary>Want to ruin the surprise?</summary> | |
<br> | |
Well, you asked for it! | |
<details> |
This file contains 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
template <typename T> | |
struct ensure_future | |
{ | |
typedef hpx::future<T> type; | |
static type get(T && t) | |
{ | |
return hpx::make_ready_future(std::move(t)); | |
} |
This file contains 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
// Copyright (c) 2007-2017 Hartmut Kaiser | |
// Copyright (c) 2015 Daniel Bourgeois | |
// Copyright (c) 2017 Taeguk Kwon | |
// | |
// Distributed under the Boost Software License, Version 1.0. (See accompanying | |
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
#if !defined(HPX_PARALLEL_UTIL_SCAN_PARTITIONER_DEC_30_2014_0227PM) | |
#define HPX_PARALLEL_UTIL_SCAN_PARTITIONER_DEC_30_2014_0227PM |
NewerOlder