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
/* | |
* NOTE 1: This works on VC++ but might need a little extra syntax to work on GCC. | |
* NOTE 2: It breaks when calling set_interval on the minimum key (std::numeric_limits<K>::lowest()) and maybe on the maximum key too. | |
* | |
* OPERATIONS: | |
* | |
* N = number of unique intervals. (Neighboring intervals with the same value are joined.) | |
* Iterators run in key-sorted order. (Or reverse, if you like - they're bidirectional.) | |
* | |
* get_min(): O(1) |
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
# - Find Boost | |
# | |
# Copyright (c) 2016 Thiago Barroso Perrotta | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy of | |
# this software and associated documentation files (the "Software"), to deal in | |
# the Software without restriction, including without limitation the rights to | |
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
# the Software, and to permit persons to whom the Software is furnished to do so, | |
# subject to the following conditions: |
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
Attempting to decompile older versions of Minecraft using | |
[ModCoderPack](https://minecraft.gamepedia.com/Programs_and_editors/Mod_Coder_Pack) | |
results in the following error: | |
Traceback (most recent call last): | |
File "C:/<the path>/mcp44/main.py", line 4, in <module> | |
decompile.main2() | |
File "C:\<the path>\mcp44\runtime\decompile.py", line 118, in main2 | |
main(options.config, options.force_jad) | |
File "C:\<the path>\mcp44\runtime\decompile.py", line 16, in main |
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
#version 450 core | |
// get color from geometry shader | |
in vec4 gs_color; | |
// output color | |
out vec4 color; | |
void main(void) | |
{ |
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
// Image-read library | |
// https://github.com/nothings/stb/blob/master/stb_image.h | |
#define STB_IMAGE_IMPLEMENTATION | |
#define STBI_ONLY_PNG | |
#include "stb_image.h" | |
// Image-write-library | |
// https://github.com/nothings/stb/blob/master/stb_image_write.h | |
#define STB_IMAGE_WRITE_IMPLEMENTATION | |
#include "stb_image_write.h" |
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
/* Grr, Amazon's documentation sucks! | |
* Their own documentation: https://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-handler.html | |
* says that you're allowed to return strings, but that always results in "Internal Server Error"! | |
* In reality, your result has to be structured like the one you see below. | |
*/ | |
exports.handler = async (event, context) => { | |
return { | |
statusCode: 200, | |
headers: { |
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
#include <stdio.h> | |
// Iterations for exp(x) approximation. Higher = more accurate, but higher likelihood of running into inf. | |
#define EXP_ITERATIONS 100 | |
// Iterations for ln(x) approximation. Higher = more accurate, but slower. | |
#define LN_ITERATIONS 10000 | |
// Returned if invalid input entered. | |
#define ERROR_RESULT -999999999 |
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
// This file was initially generated by Windows Terminal 1.4.3243.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", |
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
// Similar to std::equal_to but dereferences pointers `derefs` times before comparing | |
template<class T, const int derefs> | |
struct deref_equal_to | |
{ | |
constexpr bool operator()(const T& lhs, const T& rhs) const | |
{ | |
static_assert(derefs >= 0); | |
if constexpr (derefs >= 1) | |
{ | |
static_assert(std::is_pointer_v<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
#include <future> | |
#include <iostream> | |
#include <string> | |
#include "zmq.hpp" | |
void PublisherThread(zmq::context_t* ctx) | |
{ | |
// Prepare publisher | |
zmq::socket_t publisher(*ctx, zmq::socket_type::pub); |
OlderNewer