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
| @echo off | |
| fltmc >nul 2>&1 || ( | |
| echo This batch script requires administrator privileges. Right-click on | |
| echo the script and select "Run as administrator". | |
| goto :die | |
| ) | |
| rem Change this path if you are using Community or Professional editions | |
| set "VS_INSTALL_DIR=%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise" |
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
| /* | |
| Do not modify this version of the file. It will be copied over when any of the project's targets are built. | |
| If you wish to modify mraid.js, modify the version located at mopub-sdk-common/mraid/mraid.js. | |
| */ | |
| (function() { | |
| var isIOS = (/iphone|ipad|ipod/i).test(window.navigator.userAgent.toLowerCase()); | |
| if (isIOS) { | |
| console = {}; | |
| console.log = function(log) { | |
| var iframe = document.createElement('iframe'); |
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 <cstdio> | |
| #include <nvml.h> | |
| #pragma comment(lib, "nvml") | |
| int main(int argc, char* argv[]) | |
| { | |
| nvmlReturn_t result; | |
| unsigned int device_count; |
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 <utility> | |
| #include <boost/fusion/container/map.hpp> | |
| #include <boost/fusion/sequence/intrinsic/at_key.hpp> | |
| #include <boost/fusion/sequence/intrinsic/value_at_key.hpp> | |
| #include <boost/optional.hpp> | |
| #include <boost/signals2.hpp> | |
| #include <boost/utility/in_place_factory.hpp> |