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 checklist works with Xcheklist 1.21+ plugin by Sparker and uglyDwarf | |
# Link to plugin page: http://forums.x-plane.org/index.php?/files/file/20785-xchecklist-linwinmac3264/ | |
# Copy the checklist to the root folder of Zibo's B737X and rename it to "clist.txt" | |
# For example: c:\X-Plane 11\Aircraft\Extra Aircraft\B737-800X\clist.txt | |
# | |
sw_checklist:INTRODUCTION:INTRODUCTION | |
sw_itemvoid:BOEING 737-800X-Zibo XP11 NORMAL CHECKLIST v1.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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> /* for rdtscp and clflush */ | |
#pragma optimize("gt",on) | |
#else | |
#include <x86intrin.h> /* for rdtscp and clflush */ | |
#endif |
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
use rand::seq::SliceRandom; | |
use rand::thread_rng; | |
use std::collections::HashMap; | |
#[derive(Debug, Copy, Clone)] | |
struct A { | |
last: u32, | |
time: u32, | |
} |