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
src=$(wildcard *.tex) | |
target=$(patsubst %.tex,%.pdf,$(src)) | |
middles=$(shell pwd)/build | |
.PHONY:mkdir all clean deepclean | |
%.pdf: %.tex mkdir | |
pdflatex -no-shell-escape -output-directory="$(middles)" $< | |
pdflatex -no-shell-escape -output-directory="$(middles)" $< | |
all: $(target) |
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 "type_traits.hpp" | |
template <typename T, typename U> | |
struct is_addable | |
{ | |
static const bool | |
value = | |
is_arithmetic<T>::value && is_arithmetic<U>::value; | |
}; |
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
import subprocess | |
import re | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from scipy import stats | |
import json | |
import datetime | |
import os | |
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 <memory> | |
#include <vector> | |
#include <string> | |
#include <stdexcept> | |
#include <stack> | |
#include <chrono> | |
// Resource pool for data locality | |
constexpr auto file_max_number = 20'000'000; |
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
#ifndef SCC_NOTHROW_ALLOCATOR | |
#define SCC_NOTHROW_ALLOCATOR | |
#pragma once | |
#include <memory> | |
#include <limits> | |
#include <new> | |
namespace scc { |
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
[ | |
{ | |
"CN": "ACS-Aggregate-Token-Rate-Per-User", | |
"Ldap-Display-Name": "aCSAggregateTokenRatePerUser", | |
"Size": 8, | |
"Update Privilege": "", | |
"Update Frequency": "", | |
"Attribute-Id": "1.2.840.113556.1.4.760", | |
"System-Id-Guid": "7f56127d-5301-11d1-a9c5-0000f80367c1", | |
"Syntax": "**Interval**", |