git clone https://gist.github.com/ishu3101/6fb35afd237e42ef25f9
mv 6fb35afd237e42ef25f9 ConvertTo-Markdown
cd ConvertTo-Markdown
| /** | |
| SparseSet.h | |
| Implements a class template of a sparse | |
| set of unsigned integers. | |
| @author Sam Griffiths | |
| www.computist.xyz | |
| */ | |
| #pragma once |
| # This guide will show you how to configure ddclient to dynamically update your DNS at Cloudflare. | |
| # This cookbook makes use of a number of online guides - all of which I will reference at the end. | |
| # Cloudflare requires ddclient to be version 3.8.2 or you will get a 'cloudflare protocol didn't exist'. | |
| # Unfortunately, the package manager at this time makes use of 3.8.1 | |
| # My suggestion is to follow the semi-autonomous process, by downloading the out of date package | |
| # and then manually update a few files. If you prefer, you can go down the fully manual route manual route. | |
| # Installation - Manual (Not Tested: https://www.cloudflare.com/technical-resources/#ddclient) | |
| # Installation - Semi-Autonomous (Recommended, follow below) |
| // This is free and unencumbered software released into the public domain. | |
| // | |
| // Anyone is free to copy, modify, publish, use, compile, sell, or | |
| // distribute this software, either in source code form or as a compiled | |
| // binary, for any purpose, commercial or non-commercial, and by any | |
| // means. | |
| // | |
| // In jurisdictions that recognize copyright laws, the author or authors | |
| // of this software dedicate any and all copyright interest in the | |
| // software to the public domain. We make this dedication for the benefit |
| /* | |
| * Random-Number Utilities (randutil) | |
| * Addresses common issues with C++11 random number generation. | |
| * Makes good seeding easier, and makes using RNGs easy while retaining | |
| * all the power. | |
| * | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2015-2022 Melissa E. O'Neill | |
| * |