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
openapi: 3.0.3 | |
info: | |
title: Porkbun.com OpenAPI Description | |
description: | | |
An unofficial Porkbun.com OpenAPI description for the Porkbun API, see <https://porkbun.com/api/json/v3/documentation>. | |
Among other things, it can be used | |
- as a foundation to implement a dynamic DNS service, | |
- for managing DNS records, | |
- keeping track on domain pricing, or |
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
-- Based on: http://augustss.blogspot.com/2007/10/simpler-easier-in-recent-paper-simply.html | |
import Data.List (delete, union) | |
{- HLINT ignore "Eta reduce" -} | |
-- File mnemonics: | |
-- env = typing environment | |
-- vid = variable identifier in Bind or Var | |
-- br = binder variant (Lambda or Pi) | |
-- xyzTyp = type of xyz | |
-- body = body of Lambda or Pi abstraction |
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
boost::timer::cpu_timer bcput; | |
boost::timer::nanosecond_type bcput_diff; | |
// std::vector<boost::timer::nanosecond_type> times_int_length, times_strlen; | |
boost::timer::nanosecond_type times_strlen_sum = 0, times_strlen_sum_full = 0, times_int_length_sum = 0; | |
std::cout << "Starting manual profiling " << std::endl; | |
std::string int_str; | |
for(ullong i = INT_MAX; i < UINT_MAX; i+=1024) | |
{ |