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
package hetester; | |
import org.bukkit.Location; | |
import org.bukkit.Material; | |
import org.bukkit.command.Command; | |
import org.bukkit.command.CommandSender; | |
import org.bukkit.entity.FallingBlock; | |
import org.bukkit.entity.Player; | |
import org.bukkit.plugin.java.JavaPlugin; |
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 <algorithm> | |
#include <iostream> | |
#include <random> | |
const int MIN_SCORE_PER_DAY = 5; | |
const int MAX_SCORE_PER_DAY = 10; | |
int main() | |
{ | |
std::random_device rd; |
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 <fstream> | |
#include <iomanip> | |
#include <iostream> | |
#include <cstdint> | |
#include <vector> | |
#include <intrin.h> | |
const double M_PI = 3.14159265358979323846; |
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 <algorithm> | |
#include <cstdint> | |
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
#include <intrin.h> | |
void ScanFrame(const unsigned char frame[17]) | |
{ |
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
#define WIN32_LEAN_AND_MEAN | |
#include <windows.h> | |
#include <process.h> | |
#include <Psapi.h> | |
#include <cstdint> | |
#include <string> | |
void Log(const std::string& str) { | |
WriteConsoleA(GetStdHandle(STD_OUTPUT_HANDLE), str.c_str(), str.length(), NULL, NULL); |
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 <cstring> | |
#include <iostream> | |
#include <memory> | |
#include <Windows.h> | |
using std::cerr; | |
using std::cin; | |
using std::cout; |
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 <chrono> | |
#include <cstdio> | |
#include <cstring> | |
#include <boost/nowide/args.hpp> | |
#include <boost/nowide/iostream.hpp> | |
#include <boost/nowide/fstream.hpp> | |
#include "DemoFile.hpp" | |
namespace nowide = boost::nowide; |
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 "stdafx.h" | |
#include <algorithm> | |
#include <cmath> | |
#include <cstdint> | |
#include <cstdio> | |
#include <exception> | |
#include <utility> | |
#include "colorspaces.hpp" | |
#include "psnr.hpp" |
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
#define WIN32_LEAN_AND_MEAN | |
#include <Windows.h> | |
#include <process.h> | |
#include <Psapi.h> | |
#include <cstdint> | |
#include <cstring> | |
#include <string> | |
using std::uint8_t; | |
using std::size_t; |
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
#define WIN32_LEAN_AND_MEAN | |
#include <windows.h> | |
#include <process.h> | |
#include <psapi.h> | |
#include <cstddef> | |
#include <cstdint> | |
#include <cstring> | |
#include <type_traits> | |
using std::uint8_t; |
OlderNewer